diff --git a/parse/train/HkzZBi0cFQ/HkzZBi0cFQ.md b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ.md new file mode 100644 index 0000000000000000000000000000000000000000..98877a7e5f5dccd27217a88978248ca8b378d7d1 --- /dev/null +++ b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ.md @@ -0,0 +1,164 @@ +# QUANTIZATION FOR RAPID DEPLOYMENT OF DEEP NEURAL NETWORKS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +This paper aims at rapid deployment of the state-of-the-art deep neural networks (DNNs) to energy efficient accelerators without time-consuming fine tuning or the availability of the full datasets. Converting DNNs in full precision to limited precision is essential in taking advantage of the accelerators with reduced memory footprint and computation power. However, such a task is not trivial since it often requires the full training and validation datasets for profiling the network statistics and fine tuning the networks to recover the accuracy lost after quantization. To address these issues, we propose a simple method recognizing channel-level distribution to reduce the quantization-induced accuracy loss and minimize the required image samples for profiling. We evaluated our method on eleven networks trained on the ImageNet classification benchmark and a network trained on the Pascal VOC object detection benchmark. The results prove that the networks can be quantized into 8-bit integer precision without fine tuning. + +# 1 INTRODUCTION + +Deploying state-of-the-art deep neural networks (DNNs) to embedded systems is a challenging task due to the inherent nature of huge number of computations and large memory requirements. These impediments are partly caused by the considerable amount of the redundancies found in the network parameters intended for ease of training. Thus, the parameters encompasses abundant opportunities for trimming strategies, namely pruning and quantizing to low precision (Choi et al., 2017; Courbariaux et al., 2015b; Han et al., 2015). However, running DNN inference on accelerators equipped with fixed-point arithmetic units in an energy efficient manner also requires limiting the precision of the feature maps (Lin & Annapureddy, 2016; Migacz, 2017; Mishra et al., 2017). + +Previous works (Courbariaux et al., 2015b; Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017) have exhibited converting pretrained DNNs to 8-bit precision does not induce any accuracy loss. The feature maps and the network parameters were quantized at the granularity of layers to accommodate for large diversities in the dynamic range across the layers. Even though they showed good results for a few popular DNNs like AlexNet, VGG-Net, or GoogLeNet, it is not clear whether it would still work for many other recent DNNs with compact architectures. + +From our experiments, we were able to observe that this was not the case for some of the recent stateof-the-art DNNs. For example, applying 8-bit quantization to the individual layers of the MobileNet series as done in the previous works showed large accuracy degradations. The excessive accuracy loss could be mitigated by fine tuning the quantized networks (Gysel, 2016; Lin & Annapureddy, 2016). However, in order to reach a competitive level of accuracy for each network with fine tuning, full-size training and validation datasets were needed to be incorporated along with painstakingly long periods of optimization. As many DNN developers only provide the pretrained networks in full precision without the training or the validation datasets from reasons such as privacy or the outright massiveness of the data size, such obstacles hinder rapid and easy deployment of DNNs in full precision to embedded accelerators designed for low precision. + +Instead of converting a full precision pretrained network to lower precision suitable for embedded accelerators, it is also possible to train one from scratch by constraining the weights and the activations (Hubara et al., 2016; Mishra et al., 2017; Zhou et al., 2016; Zhuang et al., 2017). However, achieving state-of-the-art accuracy on large benchmarks such as ImageNet classification, increase in the network size in terms of connections (Mishra et al., 2017) or integrating complicated training process (Zhuang et al., 2017) is required. Nevertheless, these methods have not been proven for various types of network architectures. Considering the fact that GPUs are the most popular devices for training, it is more practical to convert DNNs into lower precision after utilizing the GPUs’ full precision data path for training. + +In this paper, we introduce a novel technique in which fine tuning is not necessary for 8-bit linear quantization which quantizes the feature maps and the parameters for individual channels instead of layers to accommodate for the inter-channel variations in the dynamic range. We propose manipulating the kernel weights prior to inference for HW-friendly implementation of channel-wise quantization. Our method significantly reduces the accuracy loss caused by quantizing to lower precision without increasing the inference computation cost. The results show that various state-of-the-art DNNs trained on the ImageNet dataset can readily be converted for 8-bit fixed-point accelerators without fine tuning by using a few training samples for profiling. + +# 2 LOW PRECISION QUANTIZATION + +It is common practice to quantize the activations and the network parameters for each layer to account for the differences in the dynamic range across the layers (Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017). Previous implementations such as Ristretto(Gysel, 2016), a fixed-point quantization simulator based on Caffe, reserves three placeholders for the fractional lengths (defined as the number of required bits for the fractional part of a fixed-point number) per layer, one each for the input and output feature maps (IFM and OFM respectively) and for the layer parameters (weights and biases). At every layer, IFM, OFM, and the weights are polled separately for max values and the fractional lengths are calculated accordingly. During run-time, the MSBs and LSBs of the parameters and the activations of each layer are clipped to be containable within the given bit-width and the fractional lengths in order to emulate a generic fixed-point H/W implementation. We will use the term layer-wise quantization hereafter to describe this scheme in contrast with channel-wise quantization proposed in this paper. + +A major down-side of the layer-wise quantization is that the inter-channel variations of the feature maps and the weights are not fully accounted for. Since the fractional length is usually selected to cover the maximum value in a layer, the layer-wise quantization tends to cause excessive information loss in channels with a smaller dynamic range. Therefore, accuracy may be degraded significantly and sometimes never recovered even after exhaustive retraining. + +# 2.1 CHANNEL-WISE QUANTIZATION + +In the channel-wise quantization, the fractional lengths for the feature maps and the weights can be customized for each channel to minimize the impact of low-precision rounding. Each channel of the IFMs and the OFMs has an independent fractional length based on its expected dynamic range while each channel of the kernels has a fractional length which tightly fits its known values. + +Figure 1 demonstrates how the IFMs and the kernels from different channels having different fractional lengths in the channel-wise quantization scheme are computed through a convolution layer compared to the layer-wise scheme. In this example, the input and the output of the convolution layer and weights are all bound to 8 bits while the partial sums are allowed to be accumulated in 32 bits as to avoid data loss. The traversal in the layer-wise scheme is straight-forward as there aren’t any discrepancies while adding up the partial sums. On the other hand, the channel-wise method must cope with adding partial sums of varying fractional lengths. A naive solution would be to place a shifter in front of the partial sum adder to adjust all the partial sums to have the same fractional length. However, this scheme is not practical since too many shift operations are required. We resolve this complication by pre-coordinating the fractional lengths of the weights. + +The fractional length of a partial sum is determined by adding those of the IFM and the kernel being multiplied together. As the partial sums resulting from different input channels will have different fractional lengths, the smallest fractional length across all partial sums is selected as the reference. The red box in Figure 1 depicts this step. Then, the fractional lengths of the kernels in all the other channels are adjusted during the pre-processing stage to produce this reference fractional length when multiplied with their corresponding IFMs. Limitation was set on the amount adjusted so that the minimum value of the modified fractional lengths of the kernels would not be smaller than the layer-wise quantization. The overall procedure to determining the channel-wise fractional length is summarized in Algorithm 1. + +![](images/a24a4dbf4d2d8b14edde7d555977a425eb6715861096bfb923a265f86e32fd6c.jpg) +Figure 1: Comparison between layer-wise and channel-wise quantization in a simple convolution layer with 2 IFM channels and 1 OFM channel. $\mathbf { Q } n . m$ represents a fixed point integer format with $n$ bits for integer part, $m$ bits for fractional part, and 1 bit for the sign. Total bit-width is equal to $( n + m + 1 )$ bits. min fl(A, B) returns a format with the minimum fractional length. For layer-wise quantization in (a), all the channels of both the inputs and the kernels are forced to share the biggest integer part length across all channels in order to retain the most significant bits. Thus, the number of bits for fractional parts are identical for all paths at the partial sum stage. Channel-wise quantization methods in (b) and (c) could spare more bits for fractional part in accumulator and adder due to channel level granularity, thereby reducing the low precision rounding error during summation. However, the naive approach shown in (b) is not practical since it requires large number of extra bit shifters in front of the partial sum adder to adjust the format of its inputs before adding them. On the contrary, the proposed channel-wise quantization method in (c) does not require such HW cost by considering the bit shifts in the kernel weights in advance. + +The channel-wise quantization can be applied to a fully-connected (FC) layer by considering each unit as a channel. However, for simplicity, we use the layer-wise quantization for the activations of fully-connected (FC) layers. Notwithstanding, the weights of FC layers still needs to be adapted to the preceding layer. Figure 2 shows three such scenarios where we fallback to the layer-wise quantization. In scenario (b) and (d), the activations quantized channel-wise from the previous convolution layer are multiplied with the channel-wise quantized weights of an FC layer which are pre-adjusted to yield the activations having an identical fractional length, hence, the layer-wise quantization for the activations. For scenario (c) where two FCs are stacked consecutively, the layer-wise quantization is utilized throughout the path. + +# 2.2 FRACTIONAL LENGTH DETERMINATION + +Determining the fractional length (placing the dot in between the integer and fractional part within the given bit-width) is easier said than done. Previous works (Gysel, 2016; Migacz, 2017) profiled the target dataset to look for the max value which became the max representable value in the dynamic range. Profiling, running a network in forward path and collecting statistics, provides either an estimation of the dynamic range when executed during pre-processing stage on a subset of the training dataset or an exact fit when performed during run-time on the actual data being processed. + +
Algorithm1 HW-friendly channel-wise quantization. Profiling dataset is a subset of training data set. fl stands for fractional length (flker: kernel fl, kernel and one input, flgdder: adder fl, flbias: bias fl, shiftj: layer output bit-wise shift amount).
Require: network architecture, network parameters,profiling dataset Ensure: flker,flbias, flifm, flofm,shift,quantized network parameters
1. Profile weights and activations Calculate statistics of weights and activations of each channel on profiling dataset 2.Calculate channel-wise fractional lengths
For each layer,
calculate fiker from statistics for each channel of kernels calculate flifm,flofm from statistics of activations for each channel
flpSum 'ji fiadder := min ( (frpsum) for each j
flbias := flgdder
fier←flger (fpsum-fbias) shiftj := flbias f1ofm 3. Quantize network parameters with flker, flbias
+ +![](images/945490064c65a80f2a49e942569b7efce801cbd01761c17afdda7c421cf77446.jpg) +Figure 2: Quantization policy varies with network configurations. $a$ and $w$ represent activation and weights, respectively. (cw: channel-wise quantization, $l w$ : layer-wise quantization) + +![](images/735e4ddb664408b8796860238b6c6cb067e076dfc9a01d8f059ab801eac17dc3.jpg) +Figure 3: Superpositioned PDFs of pre-activation values of each channel (GoogLeNet w/ ImageNet dataset). Every distribution is normalized to have unit variance. Y-axis is in log scale. Mean dist. represents the averaged PDF of all channels. + +The obvious side effect is that selecting just the right size of the dataset to profile is not trivial. A large dataset will increase the chance of electing an outlier as the max value which will overestimate the dynamic range. This will consequently penalize the fractional part of the fixed-point representation. On the other extreme where insufficient size of the profiling dataset is used, the values overflowing the determined fixed-point notation during inference will cause severe performance degradation. + +Lin proposed to use the $n$ -th moments of the distribution instead of the max value to identify the optimal fixed-point bit-width and the fractional length (Lin & Annapureddy, 2016). The dynamic range of the activation is determined so that the signal-to-quantization-noise-ratio (SQNR) caused by quantization would be minimized. In this case, two factors contribute to the quantization noise. The first is the quantization error found within the dynamic range and the latter is the overload error where the values beyond the range are clipped to either the upper or the lower bound. When the number of the quantization levels is fixed, there exists an optimum interval between the levels which makes these two errors balanced. This method is much less sensitive to the size of the profiling dataset since the $n$ -th moments of a distribution are more stable measures than the max value. A positive side effect is that optimum interval can be found even with a small dataset as shown in Section 3.1. + +Figure 3 illustrates the superpositioned probability density functions (PDFs) of the pre-activation values of the individual OFM channels measured on GoogLeNet(Szegedy et al., 2014) trained with the ImageNet dataset. All PDFs were normalized and shifted to have an unit variance and a mean of zero prior to compositing the functions. As can be seen from the graph, there is a large variation in the distribution of the pre-activation values. In Lin & Annapureddy (2016), normal distribution was used to approximate them. However, the mean distribution over all the channels, shown in Figure 3, suggests Laplace distribution rather than normal distribution. We also found that the fractional length obtained by either normal or Laplace distribution tends to underestimate the dynamic range due to the heavy tails of the actual distribution in many channels. In those cases, truncated super Cauchy distribution, defined as follows, provides smaller quantization-induced noise by appropriately considering the tails. + +$$ +f ( x ) = { \left\{ \begin{array} { l l } { { \frac { \sqrt { 2 } } { \pi { \gamma } \left[ 1 + \left( { \frac { x - x _ { 0 } } { \gamma } } \right) ^ { 4 } \right] } } , } & { { \mathrm { i f } } - 1 5 < x - x _ { 0 } < 1 5 } \\ { 0 , \quad { \mathrm { o t h e r w i s e } } } \end{array} \right. } +$$ + +Here, $x _ { 0 }$ is the location parameter and $\gamma$ is the scale parameter. + +# 2.3 EXPLOITING CHANNEL-WISE PDF + +Large variations in distributions across the OFM channels naturally led us to search for the optimal PDF for each channel in determining the fractional length. For this purpose, we constructed a dataset consisting of the best-fit PDFs producing the highest SQNR for the individual OFM channels in GoogLeNet, Inception-v3(Szegedy et al., 2015), and MobileNet(Howard et al., 2017). A simple classifier was trained to select the best-fit PDF during quantization by taking a vector of n-th moments of activation values in each channel. The classifier was trained to choose from truncated super Cauchy or Laplace distribution. We obtained $83 \%$ classification accuracy by using the k-nearest neighbors classifier with $k = 1 2$ (Samworth, 2013). + +# 3 BENCHMARK RESULTS + +# 3.1 IMAGENET CLASSIFICATION TASK + +The proposed quantization method was evaluated on various state-of-the-art deep networks trained on the ImageNet dataset containing 1.2M training and 50k validation examples. Pretrained networks were quantized into 8-bit fixed point format by using the profiling dataset sampled from the training set and evaluated on the whole validation dataset (50k examples). Uniform linear quantization was used for all the cases. Batch normalization(Ioffe & Szegedy, 2015) layers were fused into convolution layers before the quantization process. Unsigned integer format was employed for the activation values with the ReLU nonlinearity. + +A comparison against the layer-wise quantization is summarized in Table 1. Conventional method with the layer-wise quantization based on the max value provided good quantization results for GoogLeNet, VGG16(Simonyan & Zisserman, 2014), and Inception-v3 which were the most popular networks in the previous quantization and pruning papers. With more recent networks such as MobileNet, MobileNet2(Sandler et al., 2018), ResNet(He et al., 2015), Inception-v4(Szegedy et al., 2016), and Xception(Chollet, 2016), severe accuracy loss was observed. We figured out that the outliers were the major source of accuracy degradation after layer-wise quantization. For example, using the max value of a parameter could significantly overestimate its dynamic range when there are outliers with extraordinarily large values which cannot be seen in the validation set or when deployed. Carefully removing those outliers will significantly improve the quality of quantization even if layer-wise max-based method is used. Thus, there are previous papers showing better results than our baseline layer-wise quantization. However, we did not consider such improvement in the baseline because it requires extra effort and the process itself might taint the dataset since there’s no explicitly clear boundary of the outliers. + +We evaluated the channel-wise quantization in four modes depending on the method to determine the fractional lengths: MAX, Laplace, S.Cauchy, and PDF-aware. In MAX mode, the max values of the activation tensors were used to decide the factional lengths of the feature maps. As for the Laplace or S.Cauchy modes, the optimal fractional lengths were estimated from the $n$ -th moments of the activations by assuming PDF as either Laplace or truncated super Cauchy distribution. + +Regardless of the modes, the channel-wise quantization exhibited significantly improved accuracy losses for all the mentioned networks. In the MAX mode, we still observed a large accuracy degradation in the Inception-v4 network. We discovered that there were extremely large outliers in the activations of a few layers causing significant overestimation of their dynamic ranges. This problem can be resolved by applying other modes (Laplace, S.Cauchy, or PDF-aware). The Laplace and S.Cauchy modes showed similar performance overall but different behavior depending on the network. The best result came with the PDF-aware mode which selects the best-fit PDF for each channel. + +Figure 4 illustrates the required size of the profiling dataset for the MAX and the OPT methods when measured on Inception-v3. Fractional lengths were calculated based on randomly selected images from the ImageNet training dataset. The MAX method required a large number of samples $( \romannumeral 1 0 0 )$ to reach a stable accuracy, whereas a few samples were enough to stabilize the accuracy for the OPT method. Since most of the published networks are trained in full precision while accelerators mandate low-precision representation, being able to readily port a network with just a few training samples is a huge advantage for easy deployment of pretrained full-precision DNNs. Accordingly, the proposed quantization method is able to reach a competitive accuracy without the need for profiling a large number of samples or fine tuning. + +Table 1: Top-1 accuracy loss after 8-bit quantization in various large scale networks trained on the ImageNet dataset. No retraining is performed. Reference (Float32) lists baseline accuracies while all other figures are accuracy losses. Modes for determining the fractional length: MAX (reserve integer length to include at least the max value), Laplace (optimal fraction length based on Laplace distribution), S.Cauchy (optimal fraction length based on truncated super Cauchy distribution), $P D F$ - aware (optimal fractional length based on optimum PDF for each channel). Accuracy losses above $1 . 0 \%$ point are in bold face. + +
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
GoogLeNet [1]68.93%0.23%0.23%0.13%0.15%0.08%0.05%
SqueezeNet [2]58.39%2.02%0.68%0.22%0.23%0.43%0.27%
MobileNet [3]69.50%5.48%4.02%1.17%0.66%0.66%0.73%
MobileNet2 [4]71.23%71.13%71.13%1.73%1.81%3.09%1.68 %
VGG16 [5]68.34%0.29%0.19%-0.01%-0.04%0.01%-0.06%
ResNet101-v2 [6]78.04%9.52%5.17%1.01%0.74%1.58%0.83%
ResNeXt50-32x4d [7]76.84%1.13%0.65%0.51%0.65%0.78%0.32%
Inception-v3 [8]77.97%0.99%0.66%0.23%0.09%0.18%0.24%
Inception-v4 [9]79.90%74.65%0.61%26.07%-0.06%0.07%0.13%
Incep.-ResNet-v2 [10]80.19%1.45%0.71%0.18%1.11%0.64%0.36%
Xception [11]78.72%54.72%0.57%1.11%0.60%0.48%0.33%
+ +[1] Szegedy et al. (2014), [2] Iandola et al. (2016), [3] Howard et al. (2017), [4] Sandler et al. (2018), [5] Simonyan & Zisserman (2014), [6] He et al. (2015), [7] Xie et al. (2016), [8] Szegedy et al. (2015), [9] Szegedy et al. (2016), [10] Szegedy et al. (2016), [11] Chollet (2016) + +![](images/d58db48be461b76b32bf54c3ebba5af4e8eaddf17b292ada409938090dc83777.jpg) +Figure 4: Effect of profiling dataset size on accuracy with quantization for Inception-v3. MAX method requires large number of samples for profiling to reach a stable accuracy. Laplace method stabilizes quickly with a few samples. + +# 3.2 OBJECT DETECTION + +We performed network quantization on YOLO-v2(Redmon & Farhadi, 2016), a state-of-the-art object detection network. The network was trained and tested on the Pascal VOC dataset (Everingham et al., 2015). + +Table 2 shows the loss in mean AP after quantization using our method in comparison with the layer-wise quantization. The layer-wise quantization caused $2 . 5 \%$ point drop in mean AP after + +Table 2: Loss in mean AP after 8-bit quantization in YOLO-v2 (Redmon & Farhadi, 2016). No retraining performed. ’Reference (Float32)’ lists baseline accuracy while all other figures are accuracy losses. Loss above $1 . 0 \%$ point is in bold face. + +
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
Y0L0-v272.64%2.50%2.25%0.14%0.22%0.70%0.38%
+ +quantization. However, our method did not suffer from such a problem by selecting the fractional lengths adapted to the individual channels. + +# 4 RELATED WORKS + +Han quantized the network parameters after pruning for compression in Han et al. (2015). Kim proposed on using Hessian-weighted clustering to achieve a better compression ratio in quantization (Choi et al., 2017). However, in those works, only the network parameters were quantized to save storage space leaving the feature maps in full-precision. Both the activations and the network parameters were quantized layer-wise to accommodate the large variations in the dynamic range across the layers in Courbariaux et al. (2015b); Gysel (2016). The max values found in activations were used to decide on the fractional lengths, and intensive fine tuning were required to recover accuracies degraded by quantization in some networks. Lin used SQNR instead of the max value to minimize the bit-width for each layer and optimized DNNs for fixed-point operation (Lin & Annapureddy, 2016). Migacz achieved linear quantization for 8-bit integer operation without fine tuning by minimizing the information loss with Kullback-Leibler (KL) divergence (Migacz, 2017). Unfortunately, collection of the activation histograms were required from a large number of samples. All in all, these methods used the layer-wise quantization scheme. + +Aggressively lowering the precision to be under 4 bits for both the weights and the activations have been actively explored (Courbariaux et al., 2015a; Rastegariy et al., 2016; Hubara et al., 2016; Li et al., 2016; Zhou et al., 2016; Leng et al., 2017; Lin et al., 2017). Although they revealed impressive results on small benchmarks, there is still a huge gap in accuracy on large benchmarks such as the ImageNet classification using state-of-the-art networks trained in full precision. Recent progress shows that it is possible to reduce the precision of DNNs to 4 bits without sacrificing accuracy by increasing the network size (Mishra et al., 2017) or training the networks in multiple stages with guided training (Zhuang et al., 2017). These work focus on training DNNs for low-precision inference from scratch rather than quantizing pretrained full-precision networks. + +# 5 CONCLUSION + +In this paper, we proposed a set of methods for rapid deployment of DNNs trained in full precision to fixed point accelerators with limited precision computation units. The channel-wise quantization recognizes the inter-channel diversities in the dynamic range of the feature maps. HW cost for implementation is minimized by adjusting the fractional lengths of the kernel parameters. We evaluated our method on eleven state-of-the-art DNNs trained on the ImageNet dataset and an object detection network trained on Pascal VOC dataset. In comparison to the previous method (i.e the layer-wise quantization), the channel-wise quantization can reduce the accuracy loss caused by quantization substantially. + +We also showed that quantization requires just a few image samples if we utilize the $n$ -th moments of the activations instead of the maximum value. In this way, deployment is possible even when just a few training samples are available for the trained network model. We further improved our method by considering the variations in distribution across the channels. A simple classifier was used for selecting the best-fit PDF for each channel from the statistical features. We were able to accomplish negligible accuracy loss (less than $1 \%$ point in eleven networks out of twelve) after quantization without fine tuning. + +# REFERENCES + +Yoojin Choi, Mostafa El-Khamy, and Jungwon Lee. Towards the limit of network quantization. arXiv preprint arXiv:1612.01543v2, 2017. + +Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. CoRR, abs/1610.02357, 2016. + +Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural networks with binary weights during propagations. Advances in Neural Information Processing Systems (NIPS), pp. 3123–3131, 2015a. + +Matthieu Courbariaux, Jean-Pierre David, and Yoshua Bengio. Training deep neural networks with low precision multiplications. arXiv preprint arXiv:1412.7024v4, 2015b. + +M. Everingham, S. M. A. Eslami, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The pascal visual object classes challenge: A retrospective. International Journal of Computer Vision, 111(1):98–136, January 2015. + +Philipp Gysel. Ristretto: Hardware-oriented approximation of convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016. + +Song Han, Huizi Mao, and William J. Dally. Deep compression: Compressing deep neural networks with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. CoRR, abs/1512.03385, 2015. + +Andrew G. Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. CoRR, abs/1704.04861, 2017. + +Itay Hubara, Matthieu Courbariaux, Daniel Soudry, Ran El-Yaniv, and Yoshua Bengio. Quantized neural networks: Training neural networks with low precision weights and activations. arXiv preprint arXiv:609.07061, 2016. + +Forrest N. Iandola, Matthew W. Moskewicz, Khalid Ashraf, Song Han, William J. Dally, and Kurt Keutzer. Squeezenet: Alexnet-level accuracy with 50x fewer parameters and ${ < } 0 . 5 \mathrm { m b }$ model size. CoRR, abs/1602.07360, 2016. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. + +Cong Leng, Hao Li, Shenghuo Zhu, and Rong Jin. Extremely low bit neural network: Squeeze the last bit out with admm. arXiv preprint arXiv:1707.09870, 2017. + +Fengfu Li, Bo Zhang, and Bin Liu. Ternary weight networks. arXiv preprint arXiv:1605.04711, 2016. + +Sachin Lin, Darryl smf Talathi and Sreekanth Annapureddy. Fixed point quantization of deep convolutional networks. International Conference on Machine Learning (ICML), pp. 344–352, 2016. + +Xiaofan Lin, Cong Zhao, and Wei Pan. Towards accurate binary convolutional neural network. Advances in Neural Information Processing Systems (NIPS), pp. 344–352, 2017. + +Szymon Migacz. 8-bit inference with tensorrt. In NVIDIA GPU Technology Conference (GTC), 2017. + +Asit Mishra, Eriko Nurvitadhi, J Jeffrey Cook, and Debbie Marr. Wrpn: Wide reduced-precision networks. arXiv preprint arXiv:170901134, 2017. + +Mohammad Rastegariy, Vicente Ordonezy, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet classification using binary convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016. + +Joseph Redmon and Ali Farhadi. Yolo9000: Better, faster, stronger. arXiv preprint arXiv:1612.08242, 2016. +Richard J. Samworth. Optimal weighted nearest neighbour classifiers. arXiv preprint arXiv:11015783v3, 2013. +Mark Sandler, Andrew G. Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. CoRR, abs/1801.04381, 2018. +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. CoRR, abs/1409.1556, 2014. +Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott E. Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. CoRR, abs/1409.4842, 2014. +Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. CoRR, abs/1512.00567, 2015. +Christian Szegedy, Sergey Ioffe, and Vincent Vanhoucke. Inception-v4, inception-resnet and the impact of residual connections on learning. CoRR, abs/1602.07261, 2016. +Saining Xie, Ross B. Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual ´ transformations for deep neural networks. CoRR, abs/1611.05431, 2016. +Shuchang Zhou, Yuxin Wu, Zekun Ni, Xinyu Zhou, He Wen, and Yuheng Zou. Dorefa-net: Training low bitwidth convolutional neural networks with low bitwidth gradients. arXiv preprint arXiv:1605.06402, 2016. +Bohan Zhuang, Chunhua Shen, Mingkui Tan, Lingqiao Liu, and Ian Reid. Towards effective lowbitwidth convolutional neural networks. arXiv preprint arXiv:1711.00205, 2017. \ No newline at end of file diff --git a/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_content_list.json b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..6dffe0f8d0784001148b1c3be3285781ba8a684b --- /dev/null +++ b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_content_list.json @@ -0,0 +1,873 @@ +[ + { + "type": "text", + "text": "QUANTIZATION FOR RAPID DEPLOYMENT OF DEEP NEURAL NETWORKS ", + "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": "This paper aims at rapid deployment of the state-of-the-art deep neural networks (DNNs) to energy efficient accelerators without time-consuming fine tuning or the availability of the full datasets. Converting DNNs in full precision to limited precision is essential in taking advantage of the accelerators with reduced memory footprint and computation power. However, such a task is not trivial since it often requires the full training and validation datasets for profiling the network statistics and fine tuning the networks to recover the accuracy lost after quantization. To address these issues, we propose a simple method recognizing channel-level distribution to reduce the quantization-induced accuracy loss and minimize the required image samples for profiling. We evaluated our method on eleven networks trained on the ImageNet classification benchmark and a network trained on the Pascal VOC object detection benchmark. The results prove that the networks can be quantized into 8-bit integer precision without fine tuning. ", + "bbox": [ + 233, + 265, + 766, + 444 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 468, + 336, + 484 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deploying state-of-the-art deep neural networks (DNNs) to embedded systems is a challenging task due to the inherent nature of huge number of computations and large memory requirements. These impediments are partly caused by the considerable amount of the redundancies found in the network parameters intended for ease of training. Thus, the parameters encompasses abundant opportunities for trimming strategies, namely pruning and quantizing to low precision (Choi et al., 2017; Courbariaux et al., 2015b; Han et al., 2015). However, running DNN inference on accelerators equipped with fixed-point arithmetic units in an energy efficient manner also requires limiting the precision of the feature maps (Lin & Annapureddy, 2016; Migacz, 2017; Mishra et al., 2017). ", + "bbox": [ + 174, + 498, + 825, + 611 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Previous works (Courbariaux et al., 2015b; Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017) have exhibited converting pretrained DNNs to 8-bit precision does not induce any accuracy loss. The feature maps and the network parameters were quantized at the granularity of layers to accommodate for large diversities in the dynamic range across the layers. Even though they showed good results for a few popular DNNs like AlexNet, VGG-Net, or GoogLeNet, it is not clear whether it would still work for many other recent DNNs with compact architectures. ", + "bbox": [ + 174, + 617, + 825, + 700 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "From our experiments, we were able to observe that this was not the case for some of the recent stateof-the-art DNNs. For example, applying 8-bit quantization to the individual layers of the MobileNet series as done in the previous works showed large accuracy degradations. The excessive accuracy loss could be mitigated by fine tuning the quantized networks (Gysel, 2016; Lin & Annapureddy, 2016). However, in order to reach a competitive level of accuracy for each network with fine tuning, full-size training and validation datasets were needed to be incorporated along with painstakingly long periods of optimization. As many DNN developers only provide the pretrained networks in full precision without the training or the validation datasets from reasons such as privacy or the outright massiveness of the data size, such obstacles hinder rapid and easy deployment of DNNs in full precision to embedded accelerators designed for low precision. ", + "bbox": [ + 174, + 708, + 825, + 847 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Instead of converting a full precision pretrained network to lower precision suitable for embedded accelerators, it is also possible to train one from scratch by constraining the weights and the activations (Hubara et al., 2016; Mishra et al., 2017; Zhou et al., 2016; Zhuang et al., 2017). However, achieving state-of-the-art accuracy on large benchmarks such as ImageNet classification, increase in the network size in terms of connections (Mishra et al., 2017) or integrating complicated training process (Zhuang et al., 2017) is required. Nevertheless, these methods have not been proven for various types of network architectures. Considering the fact that GPUs are the most popular devices for training, it is more practical to convert DNNs into lower precision after utilizing the GPUs’ full precision data path for training. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we introduce a novel technique in which fine tuning is not necessary for 8-bit linear quantization which quantizes the feature maps and the parameters for individual channels instead of layers to accommodate for the inter-channel variations in the dynamic range. We propose manipulating the kernel weights prior to inference for HW-friendly implementation of channel-wise quantization. Our method significantly reduces the accuracy loss caused by quantizing to lower precision without increasing the inference computation cost. The results show that various state-of-the-art DNNs trained on the ImageNet dataset can readily be converted for 8-bit fixed-point accelerators without fine tuning by using a few training samples for profiling. ", + "bbox": [ + 174, + 166, + 825, + 279 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 LOW PRECISION QUANTIZATION ", + "text_level": 1, + "bbox": [ + 176, + 299, + 472, + 314 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "It is common practice to quantize the activations and the network parameters for each layer to account for the differences in the dynamic range across the layers (Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017). Previous implementations such as Ristretto(Gysel, 2016), a fixed-point quantization simulator based on Caffe, reserves three placeholders for the fractional lengths (defined as the number of required bits for the fractional part of a fixed-point number) per layer, one each for the input and output feature maps (IFM and OFM respectively) and for the layer parameters (weights and biases). At every layer, IFM, OFM, and the weights are polled separately for max values and the fractional lengths are calculated accordingly. During run-time, the MSBs and LSBs of the parameters and the activations of each layer are clipped to be containable within the given bit-width and the fractional lengths in order to emulate a generic fixed-point H/W implementation. We will use the term layer-wise quantization hereafter to describe this scheme in contrast with channel-wise quantization proposed in this paper. ", + "bbox": [ + 174, + 330, + 825, + 497 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A major down-side of the layer-wise quantization is that the inter-channel variations of the feature maps and the weights are not fully accounted for. Since the fractional length is usually selected to cover the maximum value in a layer, the layer-wise quantization tends to cause excessive information loss in channels with a smaller dynamic range. Therefore, accuracy may be degraded significantly and sometimes never recovered even after exhaustive retraining. ", + "bbox": [ + 174, + 503, + 825, + 574 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 CHANNEL-WISE QUANTIZATION ", + "text_level": 1, + "bbox": [ + 176, + 592, + 436, + 606 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the channel-wise quantization, the fractional lengths for the feature maps and the weights can be customized for each channel to minimize the impact of low-precision rounding. Each channel of the IFMs and the OFMs has an independent fractional length based on its expected dynamic range while each channel of the kernels has a fractional length which tightly fits its known values. ", + "bbox": [ + 174, + 617, + 823, + 672 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Figure 1 demonstrates how the IFMs and the kernels from different channels having different fractional lengths in the channel-wise quantization scheme are computed through a convolution layer compared to the layer-wise scheme. In this example, the input and the output of the convolution layer and weights are all bound to 8 bits while the partial sums are allowed to be accumulated in 32 bits as to avoid data loss. The traversal in the layer-wise scheme is straight-forward as there aren’t any discrepancies while adding up the partial sums. On the other hand, the channel-wise method must cope with adding partial sums of varying fractional lengths. A naive solution would be to place a shifter in front of the partial sum adder to adjust all the partial sums to have the same fractional length. However, this scheme is not practical since too many shift operations are required. We resolve this complication by pre-coordinating the fractional lengths of the weights. ", + "bbox": [ + 174, + 680, + 825, + 819 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The fractional length of a partial sum is determined by adding those of the IFM and the kernel being multiplied together. As the partial sums resulting from different input channels will have different fractional lengths, the smallest fractional length across all partial sums is selected as the reference. The red box in Figure 1 depicts this step. Then, the fractional lengths of the kernels in all the other channels are adjusted during the pre-processing stage to produce this reference fractional length when multiplied with their corresponding IFMs. Limitation was set on the amount adjusted so that the minimum value of the modified fractional lengths of the kernels would not be smaller than the layer-wise quantization. The overall procedure to determining the channel-wise fractional length is summarized in Algorithm 1. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/a24a4dbf4d2d8b14edde7d555977a425eb6715861096bfb923a265f86e32fd6c.jpg", + "image_caption": [ + "Figure 1: Comparison between layer-wise and channel-wise quantization in a simple convolution layer with 2 IFM channels and 1 OFM channel. $\\mathbf { Q } n . m$ represents a fixed point integer format with $n$ bits for integer part, $m$ bits for fractional part, and 1 bit for the sign. Total bit-width is equal to $( n + m + 1 )$ bits. min fl(A, B) returns a format with the minimum fractional length. For layer-wise quantization in (a), all the channels of both the inputs and the kernels are forced to share the biggest integer part length across all channels in order to retain the most significant bits. Thus, the number of bits for fractional parts are identical for all paths at the partial sum stage. Channel-wise quantization methods in (b) and (c) could spare more bits for fractional part in accumulator and adder due to channel level granularity, thereby reducing the low precision rounding error during summation. However, the naive approach shown in (b) is not practical since it requires large number of extra bit shifters in front of the partial sum adder to adjust the format of its inputs before adding them. On the contrary, the proposed channel-wise quantization method in (c) does not require such HW cost by considering the bit shifts in the kernel weights in advance. " + ], + "image_footnote": [], + "bbox": [ + 222, + 104, + 777, + 405 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 631, + 823, + 659 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The channel-wise quantization can be applied to a fully-connected (FC) layer by considering each unit as a channel. However, for simplicity, we use the layer-wise quantization for the activations of fully-connected (FC) layers. Notwithstanding, the weights of FC layers still needs to be adapted to the preceding layer. Figure 2 shows three such scenarios where we fallback to the layer-wise quantization. In scenario (b) and (d), the activations quantized channel-wise from the previous convolution layer are multiplied with the channel-wise quantized weights of an FC layer which are pre-adjusted to yield the activations having an identical fractional length, hence, the layer-wise quantization for the activations. For scenario (c) where two FCs are stacked consecutively, the layer-wise quantization is utilized throughout the path. ", + "bbox": [ + 174, + 666, + 825, + 791 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 FRACTIONAL LENGTH DETERMINATION ", + "text_level": 1, + "bbox": [ + 176, + 813, + 486, + 827 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Determining the fractional length (placing the dot in between the integer and fractional part within the given bit-width) is easier said than done. Previous works (Gysel, 2016; Migacz, 2017) profiled the target dataset to look for the max value which became the max representable value in the dynamic range. Profiling, running a network in forward path and collecting statistics, provides either an estimation of the dynamic range when executed during pre-processing stage on a subset of the training dataset or an exact fit when performed during run-time on the actual data being processed. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/71687d5431735510340d94c090022d96d69329a88f0368d6b551cf9799c81c98.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm1 HW-friendly channel-wise quantization. Profiling dataset is a subset of training data set. fl stands for fractional length (flker: kernel fl, kernel and one input, flgdder: adder fl, flbias: bias fl, shiftj: layer output bit-wise shift amount).
Require: network architecture, network parameters,profiling dataset Ensure: flker,flbias, flifm, flofm,shift,quantized network parameters
1. Profile weights and activations Calculate statistics of weights and activations of each channel on profiling dataset 2.Calculate channel-wise fractional lengths
For each layer,
calculate fiker from statistics for each channel of kernels calculate flifm,flofm from statistics of activations for each channel
flpSum 'ji fiadder := min ( (frpsum) for each j
flbias := flgdder
fier←flger (fpsum-fbias) shiftj := flbias f1ofm 3. Quantize network parameters with flker, flbias
", + "bbox": [ + 174, + 179, + 839, + 478 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/945490064c65a80f2a49e942569b7efce801cbd01761c17afdda7c421cf77446.jpg", + "image_caption": [ + "Figure 2: Quantization policy varies with network configurations. $a$ and $w$ represent activation and weights, respectively. (cw: channel-wise quantization, $l w$ : layer-wise quantization) " + ], + "image_footnote": [], + "bbox": [ + 199, + 646, + 799, + 799 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/735e4ddb664408b8796860238b6c6cb067e076dfc9a01d8f059ab801eac17dc3.jpg", + "image_caption": [ + "Figure 3: Superpositioned PDFs of pre-activation values of each channel (GoogLeNet w/ ImageNet dataset). Every distribution is normalized to have unit variance. Y-axis is in log scale. Mean dist. represents the averaged PDF of all channels. " + ], + "image_footnote": [], + "bbox": [ + 295, + 102, + 704, + 332 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The obvious side effect is that selecting just the right size of the dataset to profile is not trivial. A large dataset will increase the chance of electing an outlier as the max value which will overestimate the dynamic range. This will consequently penalize the fractional part of the fixed-point representation. On the other extreme where insufficient size of the profiling dataset is used, the values overflowing the determined fixed-point notation during inference will cause severe performance degradation. ", + "bbox": [ + 173, + 426, + 825, + 497 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lin proposed to use the $n$ -th moments of the distribution instead of the max value to identify the optimal fixed-point bit-width and the fractional length (Lin & Annapureddy, 2016). The dynamic range of the activation is determined so that the signal-to-quantization-noise-ratio (SQNR) caused by quantization would be minimized. In this case, two factors contribute to the quantization noise. The first is the quantization error found within the dynamic range and the latter is the overload error where the values beyond the range are clipped to either the upper or the lower bound. When the number of the quantization levels is fixed, there exists an optimum interval between the levels which makes these two errors balanced. This method is much less sensitive to the size of the profiling dataset since the $n$ -th moments of a distribution are more stable measures than the max value. A positive side effect is that optimum interval can be found even with a small dataset as shown in Section 3.1. ", + "bbox": [ + 173, + 503, + 825, + 643 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Figure 3 illustrates the superpositioned probability density functions (PDFs) of the pre-activation values of the individual OFM channels measured on GoogLeNet(Szegedy et al., 2014) trained with the ImageNet dataset. All PDFs were normalized and shifted to have an unit variance and a mean of zero prior to compositing the functions. As can be seen from the graph, there is a large variation in the distribution of the pre-activation values. In Lin & Annapureddy (2016), normal distribution was used to approximate them. However, the mean distribution over all the channels, shown in Figure 3, suggests Laplace distribution rather than normal distribution. We also found that the fractional length obtained by either normal or Laplace distribution tends to underestimate the dynamic range due to the heavy tails of the actual distribution in many channels. In those cases, truncated super Cauchy distribution, defined as follows, provides smaller quantization-induced noise by appropriately considering the tails. ", + "bbox": [ + 173, + 648, + 825, + 803 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/63d6301afb68999d79e7c4f536c1038a6f145254b80859fe11f8039b6a034831.jpg", + "text": "$$\nf ( x ) = { \\left\\{ \\begin{array} { l l } { { \\frac { \\sqrt { 2 } } { \\pi { \\gamma } \\left[ 1 + \\left( { \\frac { x - x _ { 0 } } { \\gamma } } \\right) ^ { 4 } \\right] } } , } & { { \\mathrm { i f } } - 1 5 < x - x _ { 0 } < 1 5 } \\\\ { 0 , \\quad { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 315, + 834, + 665, + 885 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here, $x _ { 0 }$ is the location parameter and $\\gamma$ is the scale parameter. ", + "bbox": [ + 173, + 909, + 586, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2.3 EXPLOITING CHANNEL-WISE PDF ", + "text_level": 1, + "bbox": [ + 176, + 103, + 450, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Large variations in distributions across the OFM channels naturally led us to search for the optimal PDF for each channel in determining the fractional length. For this purpose, we constructed a dataset consisting of the best-fit PDFs producing the highest SQNR for the individual OFM channels in GoogLeNet, Inception-v3(Szegedy et al., 2015), and MobileNet(Howard et al., 2017). A simple classifier was trained to select the best-fit PDF during quantization by taking a vector of n-th moments of activation values in each channel. The classifier was trained to choose from truncated super Cauchy or Laplace distribution. We obtained $83 \\%$ classification accuracy by using the k-nearest neighbors classifier with $k = 1 2$ (Samworth, 2013). ", + "bbox": [ + 173, + 131, + 825, + 242 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3 BENCHMARK RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 265, + 395, + 281 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.1 IMAGENET CLASSIFICATION TASK ", + "text_level": 1, + "bbox": [ + 176, + 299, + 450, + 313 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The proposed quantization method was evaluated on various state-of-the-art deep networks trained on the ImageNet dataset containing 1.2M training and 50k validation examples. Pretrained networks were quantized into 8-bit fixed point format by using the profiling dataset sampled from the training set and evaluated on the whole validation dataset (50k examples). Uniform linear quantization was used for all the cases. Batch normalization(Ioffe & Szegedy, 2015) layers were fused into convolution layers before the quantization process. Unsigned integer format was employed for the activation values with the ReLU nonlinearity. ", + "bbox": [ + 174, + 325, + 825, + 422 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A comparison against the layer-wise quantization is summarized in Table 1. Conventional method with the layer-wise quantization based on the max value provided good quantization results for GoogLeNet, VGG16(Simonyan & Zisserman, 2014), and Inception-v3 which were the most popular networks in the previous quantization and pruning papers. With more recent networks such as MobileNet, MobileNet2(Sandler et al., 2018), ResNet(He et al., 2015), Inception-v4(Szegedy et al., 2016), and Xception(Chollet, 2016), severe accuracy loss was observed. We figured out that the outliers were the major source of accuracy degradation after layer-wise quantization. For example, using the max value of a parameter could significantly overestimate its dynamic range when there are outliers with extraordinarily large values which cannot be seen in the validation set or when deployed. Carefully removing those outliers will significantly improve the quality of quantization even if layer-wise max-based method is used. Thus, there are previous papers showing better results than our baseline layer-wise quantization. However, we did not consider such improvement in the baseline because it requires extra effort and the process itself might taint the dataset since there’s no explicitly clear boundary of the outliers. ", + "bbox": [ + 174, + 430, + 825, + 625 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We evaluated the channel-wise quantization in four modes depending on the method to determine the fractional lengths: MAX, Laplace, S.Cauchy, and PDF-aware. In MAX mode, the max values of the activation tensors were used to decide the factional lengths of the feature maps. As for the Laplace or S.Cauchy modes, the optimal fractional lengths were estimated from the $n$ -th moments of the activations by assuming PDF as either Laplace or truncated super Cauchy distribution. ", + "bbox": [ + 174, + 631, + 825, + 702 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Regardless of the modes, the channel-wise quantization exhibited significantly improved accuracy losses for all the mentioned networks. In the MAX mode, we still observed a large accuracy degradation in the Inception-v4 network. We discovered that there were extremely large outliers in the activations of a few layers causing significant overestimation of their dynamic ranges. This problem can be resolved by applying other modes (Laplace, S.Cauchy, or PDF-aware). The Laplace and S.Cauchy modes showed similar performance overall but different behavior depending on the network. The best result came with the PDF-aware mode which selects the best-fit PDF for each channel. ", + "bbox": [ + 174, + 708, + 823, + 819 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figure 4 illustrates the required size of the profiling dataset for the MAX and the OPT methods when measured on Inception-v3. Fractional lengths were calculated based on randomly selected images from the ImageNet training dataset. The MAX method required a large number of samples $( \\romannumeral 1 0 0 )$ to reach a stable accuracy, whereas a few samples were enough to stabilize the accuracy for the OPT method. Since most of the published networks are trained in full precision while accelerators mandate low-precision representation, being able to readily port a network with just a few training samples is a huge advantage for easy deployment of pretrained full-precision DNNs. Accordingly, the proposed quantization method is able to reach a competitive accuracy without the need for profiling a large number of samples or fine tuning. ", + "bbox": [ + 174, + 825, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/1c4c66c9af43150f522a5c595ce0a3dbbffd0285354a003268aa6fc60ce5e959.jpg", + "table_caption": [ + "Table 1: Top-1 accuracy loss after 8-bit quantization in various large scale networks trained on the ImageNet dataset. No retraining is performed. Reference (Float32) lists baseline accuracies while all other figures are accuracy losses. Modes for determining the fractional length: MAX (reserve integer length to include at least the max value), Laplace (optimal fraction length based on Laplace distribution), S.Cauchy (optimal fraction length based on truncated super Cauchy distribution), $P D F$ - aware (optimal fractional length based on optimum PDF for each channel). Accuracy losses above $1 . 0 \\%$ point are in bold face. " + ], + "table_footnote": [ + "[1] Szegedy et al. (2014), [2] Iandola et al. (2016), [3] Howard et al. (2017), [4] Sandler et al. (2018), [5] Simonyan & Zisserman (2014), [6] He et al. (2015), [7] Xie et al. (2016), [8] Szegedy et al. (2015), [9] Szegedy et al. (2016), [10] Szegedy et al. (2016), [11] Chollet (2016) " + ], + "table_body": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
GoogLeNet [1]68.93%0.23%0.23%0.13%0.15%0.08%0.05%
SqueezeNet [2]58.39%2.02%0.68%0.22%0.23%0.43%0.27%
MobileNet [3]69.50%5.48%4.02%1.17%0.66%0.66%0.73%
MobileNet2 [4]71.23%71.13%71.13%1.73%1.81%3.09%1.68 %
VGG16 [5]68.34%0.29%0.19%-0.01%-0.04%0.01%-0.06%
ResNet101-v2 [6]78.04%9.52%5.17%1.01%0.74%1.58%0.83%
ResNeXt50-32x4d [7]76.84%1.13%0.65%0.51%0.65%0.78%0.32%
Inception-v3 [8]77.97%0.99%0.66%0.23%0.09%0.18%0.24%
Inception-v4 [9]79.90%74.65%0.61%26.07%-0.06%0.07%0.13%
Incep.-ResNet-v2 [10]80.19%1.45%0.71%0.18%1.11%0.64%0.36%
Xception [11]78.72%54.72%0.57%1.11%0.60%0.48%0.33%
", + "bbox": [ + 173, + 209, + 883, + 409 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/d58db48be461b76b32bf54c3ebba5af4e8eaddf17b292ada409938090dc83777.jpg", + "image_caption": [ + "Figure 4: Effect of profiling dataset size on accuracy with quantization for Inception-v3. MAX method requires large number of samples for profiling to reach a stable accuracy. Laplace method stabilizes quickly with a few samples. " + ], + "image_footnote": [], + "bbox": [ + 245, + 449, + 753, + 683 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 768, + 821, + 799 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.2 OBJECT DETECTION ", + "text_level": 1, + "bbox": [ + 176, + 819, + 354, + 833 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We performed network quantization on YOLO-v2(Redmon & Farhadi, 2016), a state-of-the-art object detection network. The network was trained and tested on the Pascal VOC dataset (Everingham et al., 2015). ", + "bbox": [ + 174, + 845, + 825, + 888 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2 shows the loss in mean AP after quantization using our method in comparison with the layer-wise quantization. The layer-wise quantization caused $2 . 5 \\%$ point drop in mean AP after ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/a92f185814d2dcf2c70805de777d6d1584c04eced5fa62fcfa50a2e6b3e01202.jpg", + "table_caption": [ + "Table 2: Loss in mean AP after 8-bit quantization in YOLO-v2 (Redmon & Farhadi, 2016). No retraining performed. ’Reference (Float32)’ lists baseline accuracy while all other figures are accuracy losses. Loss above $1 . 0 \\%$ point is in bold face. " + ], + "table_footnote": [], + "table_body": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
Y0L0-v272.64%2.50%2.25%0.14%0.22%0.70%0.38%
", + "bbox": [ + 186, + 155, + 812, + 218 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "quantization. However, our method did not suffer from such a problem by selecting the fractional lengths adapted to the individual channels. ", + "bbox": [ + 176, + 247, + 825, + 275 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4 RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 301, + 351, + 316 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Han quantized the network parameters after pruning for compression in Han et al. (2015). Kim proposed on using Hessian-weighted clustering to achieve a better compression ratio in quantization (Choi et al., 2017). However, in those works, only the network parameters were quantized to save storage space leaving the feature maps in full-precision. Both the activations and the network parameters were quantized layer-wise to accommodate the large variations in the dynamic range across the layers in Courbariaux et al. (2015b); Gysel (2016). The max values found in activations were used to decide on the fractional lengths, and intensive fine tuning were required to recover accuracies degraded by quantization in some networks. Lin used SQNR instead of the max value to minimize the bit-width for each layer and optimized DNNs for fixed-point operation (Lin & Annapureddy, 2016). Migacz achieved linear quantization for 8-bit integer operation without fine tuning by minimizing the information loss with Kullback-Leibler (KL) divergence (Migacz, 2017). Unfortunately, collection of the activation histograms were required from a large number of samples. All in all, these methods used the layer-wise quantization scheme. ", + "bbox": [ + 173, + 335, + 825, + 516 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Aggressively lowering the precision to be under 4 bits for both the weights and the activations have been actively explored (Courbariaux et al., 2015a; Rastegariy et al., 2016; Hubara et al., 2016; Li et al., 2016; Zhou et al., 2016; Leng et al., 2017; Lin et al., 2017). Although they revealed impressive results on small benchmarks, there is still a huge gap in accuracy on large benchmarks such as the ImageNet classification using state-of-the-art networks trained in full precision. Recent progress shows that it is possible to reduce the precision of DNNs to 4 bits without sacrificing accuracy by increasing the network size (Mishra et al., 2017) or training the networks in multiple stages with guided training (Zhuang et al., 2017). These work focus on training DNNs for low-precision inference from scratch rather than quantizing pretrained full-precision networks. ", + "bbox": [ + 173, + 522, + 825, + 648 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 672, + 318, + 689 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this paper, we proposed a set of methods for rapid deployment of DNNs trained in full precision to fixed point accelerators with limited precision computation units. The channel-wise quantization recognizes the inter-channel diversities in the dynamic range of the feature maps. HW cost for implementation is minimized by adjusting the fractional lengths of the kernel parameters. We evaluated our method on eleven state-of-the-art DNNs trained on the ImageNet dataset and an object detection network trained on Pascal VOC dataset. In comparison to the previous method (i.e the layer-wise quantization), the channel-wise quantization can reduce the accuracy loss caused by quantization substantially. ", + "bbox": [ + 174, + 708, + 825, + 819 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also showed that quantization requires just a few image samples if we utilize the $n$ -th moments of the activations instead of the maximum value. In this way, deployment is possible even when just a few training samples are available for the trained network model. We further improved our method by considering the variations in distribution across the channels. A simple classifier was used for selecting the best-fit PDF for each channel from the statistical features. We were able to accomplish negligible accuracy loss (less than $1 \\%$ point in eleven networks out of twelve) after quantization without fine tuning. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 118 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yoojin Choi, Mostafa El-Khamy, and Jungwon Lee. Towards the limit of network quantization. arXiv preprint arXiv:1612.01543v2, 2017. ", + "bbox": [ + 173, + 126, + 825, + 155 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. CoRR, abs/1610.02357, 2016. ", + "bbox": [ + 169, + 165, + 825, + 194 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural networks with binary weights during propagations. Advances in Neural Information Processing Systems (NIPS), pp. 3123–3131, 2015a. ", + "bbox": [ + 174, + 203, + 823, + 247 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Matthieu Courbariaux, Jean-Pierre David, and Yoshua Bengio. Training deep neural networks with low precision multiplications. arXiv preprint arXiv:1412.7024v4, 2015b. ", + "bbox": [ + 171, + 256, + 821, + 286 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "M. Everingham, S. M. A. Eslami, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The pascal visual object classes challenge: A retrospective. International Journal of Computer Vision, 111(1):98–136, January 2015. ", + "bbox": [ + 171, + 295, + 825, + 338 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Philipp Gysel. Ristretto: Hardware-oriented approximation of convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016. ", + "bbox": [ + 173, + 348, + 823, + 377 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Song Han, Huizi Mao, and William J. Dally. Deep compression: Compressing deep neural networks with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015. ", + "bbox": [ + 173, + 386, + 823, + 416 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. CoRR, abs/1512.03385, 2015. ", + "bbox": [ + 171, + 425, + 825, + 455 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Andrew G. Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. CoRR, abs/1704.04861, 2017. ", + "bbox": [ + 173, + 464, + 825, + 507 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Itay Hubara, Matthieu Courbariaux, Daniel Soudry, Ran El-Yaniv, and Yoshua Bengio. Quantized neural networks: Training neural networks with low precision weights and activations. arXiv preprint arXiv:609.07061, 2016. ", + "bbox": [ + 174, + 517, + 825, + 560 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Forrest N. Iandola, Matthew W. Moskewicz, Khalid Ashraf, Song Han, William J. Dally, and Kurt Keutzer. Squeezenet: Alexnet-level accuracy with 50x fewer parameters and ${ < } 0 . 5 \\mathrm { m b }$ model size. CoRR, abs/1602.07360, 2016. ", + "bbox": [ + 173, + 569, + 826, + 613 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. ", + "bbox": [ + 174, + 622, + 823, + 652 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Cong Leng, Hao Li, Shenghuo Zhu, and Rong Jin. Extremely low bit neural network: Squeeze the last bit out with admm. arXiv preprint arXiv:1707.09870, 2017. ", + "bbox": [ + 174, + 661, + 823, + 690 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Fengfu Li, Bo Zhang, and Bin Liu. Ternary weight networks. arXiv preprint arXiv:1605.04711, 2016. ", + "bbox": [ + 173, + 700, + 825, + 729 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sachin Lin, Darryl smf Talathi and Sreekanth Annapureddy. Fixed point quantization of deep convolutional networks. International Conference on Machine Learning (ICML), pp. 344–352, 2016. ", + "bbox": [ + 176, + 739, + 825, + 782 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Xiaofan Lin, Cong Zhao, and Wei Pan. Towards accurate binary convolutional neural network. Advances in Neural Information Processing Systems (NIPS), pp. 344–352, 2017. ", + "bbox": [ + 171, + 791, + 825, + 821 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Szymon Migacz. 8-bit inference with tensorrt. In NVIDIA GPU Technology Conference (GTC), 2017. ", + "bbox": [ + 173, + 830, + 825, + 847 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Asit Mishra, Eriko Nurvitadhi, J Jeffrey Cook, and Debbie Marr. Wrpn: Wide reduced-precision networks. arXiv preprint arXiv:170901134, 2017. ", + "bbox": [ + 171, + 856, + 825, + 886 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mohammad Rastegariy, Vicente Ordonezy, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet classification using binary convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Joseph Redmon and Ali Farhadi. Yolo9000: Better, faster, stronger. arXiv preprint arXiv:1612.08242, 2016. \nRichard J. Samworth. Optimal weighted nearest neighbour classifiers. arXiv preprint arXiv:11015783v3, 2013. \nMark Sandler, Andrew G. Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. CoRR, abs/1801.04381, 2018. \nKaren Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. CoRR, abs/1409.1556, 2014. \nChristian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott E. Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. CoRR, abs/1409.4842, 2014. \nChristian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. CoRR, abs/1512.00567, 2015. \nChristian Szegedy, Sergey Ioffe, and Vincent Vanhoucke. Inception-v4, inception-resnet and the impact of residual connections on learning. CoRR, abs/1602.07261, 2016. \nSaining Xie, Ross B. Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual ´ transformations for deep neural networks. CoRR, abs/1611.05431, 2016. \nShuchang Zhou, Yuxin Wu, Zekun Ni, Xinyu Zhou, He Wen, and Yuheng Zou. Dorefa-net: Training low bitwidth convolutional neural networks with low bitwidth gradients. arXiv preprint arXiv:1605.06402, 2016. \nBohan Zhuang, Chunhua Shen, Mingkui Tan, Lingqiao Liu, and Ian Reid. Towards effective lowbitwidth convolutional neural networks. arXiv preprint arXiv:1711.00205, 2017. ", + "bbox": [ + 171, + 103, + 828, + 506 + ], + "page_idx": 9 + } +] \ No newline at end of file diff --git a/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_middle.json b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..c64bc25cdb5ea48c447ec26a3328fd59bbdc74d5 --- /dev/null +++ b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_middle.json @@ -0,0 +1,20234 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 98 + ], + "score": 1.0, + "content": "QUANTIZATION FOR RAPID DEPLOYMENT OF DEEP", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 263, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 263, + 118 + ], + "score": 1.0, + "content": "NEURAL NETWORKS", + "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, + 210, + 469, + 352 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 469, + 223 + ], + "score": 1.0, + "content": "This paper aims at rapid deployment of the state-of-the-art deep neural networks", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "score": 1.0, + "content": "(DNNs) to energy efficient accelerators without time-consuming fine tuning or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "the availability of the full datasets. Converting DNNs in full precision to limited", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 469, + 256 + ], + "score": 1.0, + "content": "precision is essential in taking advantage of the accelerators with reduced memory", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 471, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 471, + 267 + ], + "score": 1.0, + "content": "footprint and computation power. However, such a task is not trivial since it", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "score": 1.0, + "content": "often requires the full training and validation datasets for profiling the network", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "score": 1.0, + "content": "statistics and fine tuning the networks to recover the accuracy lost after quantization.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "score": 1.0, + "content": "To address these issues, we propose a simple method recognizing channel-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 297, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 297, + 470, + 310 + ], + "score": 1.0, + "content": "distribution to reduce the quantization-induced accuracy loss and minimize the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 469, + 320 + ], + "score": 1.0, + "content": "required image samples for profiling. We evaluated our method on eleven networks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 469, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 469, + 331 + ], + "score": 1.0, + "content": "trained on the ImageNet classification benchmark and a network trained on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 469, + 343 + ], + "score": 1.0, + "content": "Pascal VOC object detection benchmark. The results prove that the networks can", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 384, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 384, + 355 + ], + "score": 1.0, + "content": "be quantized into 8-bit integer precision without fine tuning.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 206, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 208, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 208, + 387 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "score": 1.0, + "content": "Deploying state-of-the-art deep neural networks (DNNs) to embedded systems is a challenging", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "task due to the inherent nature of huge number of computations and large memory requirements.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "These impediments are partly caused by the considerable amount of the redundancies found in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "the network parameters intended for ease of training. Thus, the parameters encompasses abundant", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 439, + 507, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 507, + 453 + ], + "score": 1.0, + "content": "opportunities for trimming strategies, namely pruning and quantizing to low precision (Choi et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "2017; Courbariaux et al., 2015b; Han et al., 2015). However, running DNN inference on accelerators", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "equipped with fixed-point arithmetic units in an energy efficient manner also requires limiting the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 482, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 482, + 484 + ], + "score": 1.0, + "content": "precision of the feature maps (Lin & Annapureddy, 2016; Migacz, 2017; Mishra et al., 2017).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Previous works (Courbariaux et al., 2015b; Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "have exhibited converting pretrained DNNs to 8-bit precision does not induce any accuracy loss. The", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "feature maps and the network parameters were quantized at the granularity of layers to accommodate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "for large diversities in the dynamic range across the layers. Even though they showed good results for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "a few popular DNNs like AlexNet, VGG-Net, or GoogLeNet, it is not clear whether it would still", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 545, + 358, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 358, + 556 + ], + "score": 1.0, + "content": "work for many other recent DNNs with compact architectures.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 573 + ], + "score": 1.0, + "content": "From our experiments, we were able to observe that this was not the case for some of the recent state-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "of-the-art DNNs. For example, applying 8-bit quantization to the individual layers of the MobileNet", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "series as done in the previous works showed large accuracy degradations. The excessive accuracy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "loss could be mitigated by fine tuning the quantized networks (Gysel, 2016; Lin & Annapureddy,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "score": 1.0, + "content": "2016). However, in order to reach a competitive level of accuracy for each network with fine tuning,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "full-size training and validation datasets were needed to be incorporated along with painstakingly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "long periods of optimization. As many DNN developers only provide the pretrained networks in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "full precision without the training or the validation datasets from reasons such as privacy or the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "outright massiveness of the data size, such obstacles hinder rapid and easy deployment of DNNs in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 375, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 375, + 672 + ], + "score": 1.0, + "content": "full precision to embedded accelerators designed for low precision.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Instead of converting a full precision pretrained network to lower precision suitable for embedded", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "accelerators, it is also possible to train one from scratch by constraining the weights and the activations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "(Hubara et al., 2016; Mishra et al., 2017; Zhou et al., 2016; Zhuang et al., 2017). However, achieving", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "state-of-the-art accuracy on large benchmarks such as ImageNet classification, increase in the network", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "size in terms of connections (Mishra et al., 2017) or integrating complicated training process (Zhuang", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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, + 79, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 98 + ], + "score": 1.0, + "content": "QUANTIZATION FOR RAPID DEPLOYMENT OF DEEP", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 263, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 263, + 118 + ], + "score": 1.0, + "content": "NEURAL NETWORKS", + "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, + 210, + 469, + 352 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 469, + 223 + ], + "score": 1.0, + "content": "This paper aims at rapid deployment of the state-of-the-art deep neural networks", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "score": 1.0, + "content": "(DNNs) to energy efficient accelerators without time-consuming fine tuning or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "the availability of the full datasets. Converting DNNs in full precision to limited", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 469, + 256 + ], + "score": 1.0, + "content": "precision is essential in taking advantage of the accelerators with reduced memory", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 471, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 471, + 267 + ], + "score": 1.0, + "content": "footprint and computation power. However, such a task is not trivial since it", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 142, + 265, + 470, + 277 + ], + "score": 1.0, + "content": "often requires the full training and validation datasets for profiling the network", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "score": 1.0, + "content": "statistics and fine tuning the networks to recover the accuracy lost after quantization.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "score": 1.0, + "content": "To address these issues, we propose a simple method recognizing channel-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 297, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 297, + 470, + 310 + ], + "score": 1.0, + "content": "distribution to reduce the quantization-induced accuracy loss and minimize the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 469, + 320 + ], + "score": 1.0, + "content": "required image samples for profiling. We evaluated our method on eleven networks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 469, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 469, + 331 + ], + "score": 1.0, + "content": "trained on the ImageNet classification benchmark and a network trained on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 469, + 343 + ], + "score": 1.0, + "content": "Pascal VOC object detection benchmark. The results prove that the networks can", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 384, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 384, + 355 + ], + "score": 1.0, + "content": "be quantized into 8-bit integer precision without fine tuning.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11, + "bbox_fs": [ + 141, + 210, + 471, + 355 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 206, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 208, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 208, + 387 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 409 + ], + "score": 1.0, + "content": "Deploying state-of-the-art deep neural networks (DNNs) to embedded systems is a challenging", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "task due to the inherent nature of huge number of computations and large memory requirements.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "These impediments are partly caused by the considerable amount of the redundancies found in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "the network parameters intended for ease of training. Thus, the parameters encompasses abundant", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 439, + 507, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 507, + 453 + ], + "score": 1.0, + "content": "opportunities for trimming strategies, namely pruning and quantizing to low precision (Choi et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "2017; Courbariaux et al., 2015b; Han et al., 2015). However, running DNN inference on accelerators", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "equipped with fixed-point arithmetic units in an energy efficient manner also requires limiting the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 482, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 482, + 484 + ], + "score": 1.0, + "content": "precision of the feature maps (Lin & Annapureddy, 2016; Migacz, 2017; Mishra et al., 2017).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 394, + 507, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Previous works (Courbariaux et al., 2015b; Gysel, 2016; Lin & Annapureddy, 2016; Migacz, 2017)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "have exhibited converting pretrained DNNs to 8-bit precision does not induce any accuracy loss. The", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "feature maps and the network parameters were quantized at the granularity of layers to accommodate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "for large diversities in the dynamic range across the layers. Even though they showed good results for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "a few popular DNNs like AlexNet, VGG-Net, or GoogLeNet, it is not clear whether it would still", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 545, + 358, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 358, + 556 + ], + "score": 1.0, + "content": "work for many other recent DNNs with compact architectures.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 489, + 505, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 573 + ], + "score": 1.0, + "content": "From our experiments, we were able to observe that this was not the case for some of the recent state-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "of-the-art DNNs. For example, applying 8-bit quantization to the individual layers of the MobileNet", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "series as done in the previous works showed large accuracy degradations. The excessive accuracy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "loss could be mitigated by fine tuning the quantized networks (Gysel, 2016; Lin & Annapureddy,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "score": 1.0, + "content": "2016). However, in order to reach a competitive level of accuracy for each network with fine tuning,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "full-size training and validation datasets were needed to be incorporated along with painstakingly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "long periods of optimization. As many DNN developers only provide the pretrained networks in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "full precision without the training or the validation datasets from reasons such as privacy or the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "outright massiveness of the data size, such obstacles hinder rapid and easy deployment of DNNs in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 375, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 375, + 672 + ], + "score": 1.0, + "content": "full precision to embedded accelerators designed for low precision.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 562, + 507, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Instead of converting a full precision pretrained network to lower precision suitable for embedded", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "accelerators, it is also possible to train one from scratch by constraining the weights and the activations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "(Hubara et al., 2016; Mishra et al., 2017; Zhou et al., 2016; Zhuang et al., 2017). However, achieving", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "state-of-the-art accuracy on large benchmarks such as ImageNet classification, increase in the network", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "size in terms of connections (Mishra et al., 2017) or integrating complicated training process (Zhuang", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "et al., 2017) is required. Nevertheless, these methods have not been proven for various types of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "network architectures. Considering the fact that GPUs are the most popular devices for training, it is", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "more practical to convert DNNs into lower precision after utilizing the GPUs’ full precision data path", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 114, + 157, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 157, + 129 + ], + "score": 1.0, + "content": "for training.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "et al., 2017) is required. Nevertheless, these methods have not been proven for various types of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "network architectures. Considering the fact that GPUs are the most popular devices for training, it is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "more practical to convert DNNs into lower precision after utilizing the GPUs’ full precision data path", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 114, + 157, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 157, + 129 + ], + "score": 1.0, + "content": "for training.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "In this paper, we introduce a novel technique in which fine tuning is not necessary for 8-bit linear", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 155 + ], + "score": 1.0, + "content": "quantization which quantizes the feature maps and the parameters for individual channels instead", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "of layers to accommodate for the inter-channel variations in the dynamic range. We propose ma-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "nipulating the kernel weights prior to inference for HW-friendly implementation of channel-wise", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "quantization. Our method significantly reduces the accuracy loss caused by quantizing to lower preci-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "sion without increasing the inference computation cost. The results show that various state-of-the-art", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "DNNs trained on the ImageNet dataset can readily be converted for 8-bit fixed-point accelerators", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 367, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 367, + 223 + ], + "score": 1.0, + "content": "without fine tuning by using a few training samples for profiling.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 237, + 289, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 291, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 291, + 253 + ], + "score": 1.0, + "content": "2 LOW PRECISION QUANTIZATION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "It is common practice to quantize the activations and the network parameters for each layer to account", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "for the differences in the dynamic range across the layers (Gysel, 2016; Lin & Annapureddy, 2016;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "Migacz, 2017). Previous implementations such as Ristretto(Gysel, 2016), a fixed-point quantization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "simulator based on Caffe, reserves three placeholders for the fractional lengths (defined as the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "number of required bits for the fractional part of a fixed-point number) per layer, one each for the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "input and output feature maps (IFM and OFM respectively) and for the layer parameters (weights", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 341 + ], + "score": 1.0, + "content": "and biases). At every layer, IFM, OFM, and the weights are polled separately for max values and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "the fractional lengths are calculated accordingly. During run-time, the MSBs and LSBs of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "parameters and the activations of each layer are clipped to be containable within the given bit-width", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 504, + 373 + ], + "score": 1.0, + "content": "and the fractional lengths in order to emulate a generic fixed-point H/W implementation. We will use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "the term layer-wise quantization hereafter to describe this scheme in contrast with channel-wise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 382, + 255, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 255, + 396 + ], + "score": 1.0, + "content": "quantization proposed in this paper.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "A major down-side of the layer-wise quantization is that the inter-channel variations of the feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "maps and the weights are not fully accounted for. Since the fractional length is usually selected to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "cover the maximum value in a layer, the layer-wise quantization tends to cause excessive information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "loss in channels with a smaller dynamic range. Therefore, accuracy may be degraded significantly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 364, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 364, + 457 + ], + "score": 1.0, + "content": "and sometimes never recovered even after exhaustive retraining.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 267, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 268, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 268, + 482 + ], + "score": 1.0, + "content": "2.1 CHANNEL-WISE QUANTIZATION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "In the channel-wise quantization, the fractional lengths for the feature maps and the weights can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "customized for each channel to minimize the impact of low-precision rounding. Each channel of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "IFMs and the OFMs has an independent fractional length based on its expected dynamic range while", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 523, + 449, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 449, + 534 + ], + "score": 1.0, + "content": "each channel of the kernels has a fractional length which tightly fits its known values.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Figure 1 demonstrates how the IFMs and the kernels from different channels having different", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "fractional lengths in the channel-wise quantization scheme are computed through a convolution layer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "compared to the layer-wise scheme. In this example, the input and the output of the convolution layer", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "and weights are all bound to 8 bits while the partial sums are allowed to be accumulated in 32 bits", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "as to avoid data loss. The traversal in the layer-wise scheme is straight-forward as there aren’t any", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "score": 1.0, + "content": "discrepancies while adding up the partial sums. On the other hand, the channel-wise method must", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "cope with adding partial sums of varying fractional lengths. A naive solution would be to place a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "shifter in front of the partial sum adder to adjust all the partial sums to have the same fractional length.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "However, this scheme is not practical since too many shift operations are required. We resolve this", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 638, + 390, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 390, + 651 + ], + "score": 1.0, + "content": "complication by pre-coordinating the fractional lengths of the weights.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "The fractional length of a partial sum is determined by adding those of the IFM and the kernel being", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "multiplied together. As the partial sums resulting from different input channels will have different", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "fractional lengths, the smallest fractional length across all partial sums is selected as the reference.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "The red box in Figure 1 depicts this step. Then, the fractional lengths of the kernels in all the other", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "channels are adjusted during the pre-processing stage to produce this reference fractional length", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "when multiplied with their corresponding IFMs. Limitation was set on the amount adjusted so that", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "the minimum value of the modified fractional lengths of the kernels would not be smaller than the", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 104, + 82, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "In this paper, we introduce a novel technique in which fine tuning is not necessary for 8-bit linear", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 155 + ], + "score": 1.0, + "content": "quantization which quantizes the feature maps and the parameters for individual channels instead", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "of layers to accommodate for the inter-channel variations in the dynamic range. We propose ma-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "nipulating the kernel weights prior to inference for HW-friendly implementation of channel-wise", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "quantization. Our method significantly reduces the accuracy loss caused by quantizing to lower preci-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "sion without increasing the inference computation cost. The results show that various state-of-the-art", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "DNNs trained on the ImageNet dataset can readily be converted for 8-bit fixed-point accelerators", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 367, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 367, + 223 + ], + "score": 1.0, + "content": "without fine tuning by using a few training samples for profiling.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 132, + 506, + 223 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 237, + 289, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 291, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 291, + 253 + ], + "score": 1.0, + "content": "2 LOW PRECISION QUANTIZATION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "It is common practice to quantize the activations and the network parameters for each layer to account", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "for the differences in the dynamic range across the layers (Gysel, 2016; Lin & Annapureddy, 2016;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "Migacz, 2017). Previous implementations such as Ristretto(Gysel, 2016), a fixed-point quantization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "simulator based on Caffe, reserves three placeholders for the fractional lengths (defined as the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "number of required bits for the fractional part of a fixed-point number) per layer, one each for the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "input and output feature maps (IFM and OFM respectively) and for the layer parameters (weights", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 341 + ], + "score": 1.0, + "content": "and biases). At every layer, IFM, OFM, and the weights are polled separately for max values and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "the fractional lengths are calculated accordingly. During run-time, the MSBs and LSBs of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "parameters and the activations of each layer are clipped to be containable within the given bit-width", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 504, + 373 + ], + "score": 1.0, + "content": "and the fractional lengths in order to emulate a generic fixed-point H/W implementation. We will use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "the term layer-wise quantization hereafter to describe this scheme in contrast with channel-wise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 382, + 255, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 255, + 396 + ], + "score": 1.0, + "content": "quantization proposed in this paper.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 262, + 506, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "A major down-side of the layer-wise quantization is that the inter-channel variations of the feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "maps and the weights are not fully accounted for. Since the fractional length is usually selected to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "cover the maximum value in a layer, the layer-wise quantization tends to cause excessive information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "loss in channels with a smaller dynamic range. Therefore, accuracy may be degraded significantly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 364, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 364, + 457 + ], + "score": 1.0, + "content": "and sometimes never recovered even after exhaustive retraining.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 400, + 505, + 457 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 267, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 268, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 268, + 482 + ], + "score": 1.0, + "content": "2.1 CHANNEL-WISE QUANTIZATION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "In the channel-wise quantization, the fractional lengths for the feature maps and the weights can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "customized for each channel to minimize the impact of low-precision rounding. Each channel of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "IFMs and the OFMs has an independent fractional length based on its expected dynamic range while", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 523, + 449, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 449, + 534 + ], + "score": 1.0, + "content": "each channel of the kernels has a fractional length which tightly fits its known values.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 489, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Figure 1 demonstrates how the IFMs and the kernels from different channels having different", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "fractional lengths in the channel-wise quantization scheme are computed through a convolution layer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "compared to the layer-wise scheme. In this example, the input and the output of the convolution layer", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "and weights are all bound to 8 bits while the partial sums are allowed to be accumulated in 32 bits", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "as to avoid data loss. The traversal in the layer-wise scheme is straight-forward as there aren’t any", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "score": 1.0, + "content": "discrepancies while adding up the partial sums. On the other hand, the channel-wise method must", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "cope with adding partial sums of varying fractional lengths. A naive solution would be to place a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "shifter in front of the partial sum adder to adjust all the partial sums to have the same fractional length.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "However, this scheme is not practical since too many shift operations are required. We resolve this", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 638, + 390, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 390, + 651 + ], + "score": 1.0, + "content": "complication by pre-coordinating the fractional lengths of the weights.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 539, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "The fractional length of a partial sum is determined by adding those of the IFM and the kernel being", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "multiplied together. As the partial sums resulting from different input channels will have different", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "fractional lengths, the smallest fractional length across all partial sums is selected as the reference.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "The red box in Figure 1 depicts this step. Then, the fractional lengths of the kernels in all the other", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "channels are adjusted during the pre-processing stage to produce this reference fractional length", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "when multiplied with their corresponding IFMs. Limitation was set on the amount adjusted so that", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "the minimum value of the modified fractional lengths of the kernels would not be smaller than the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "layer-wise quantization. The overall procedure to determining the channel-wise fractional length is", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 512, + 222, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 222, + 523 + ], + "score": 1.0, + "content": "summarized in Algorithm 1.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 654, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 136, + 83, + 476, + 321 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 83, + 476, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 83, + 476, + 321 + ], + "spans": [ + { + "bbox": [ + 136, + 83, + 476, + 321 + ], + "score": 0.969, + "type": "image", + "image_path": "a24a4dbf4d2d8b14edde7d555977a425eb6715861096bfb923a265f86e32fd6c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 83, + 476, + 162.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 162.33333333333331, + 476, + 241.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 241.66666666666663, + 476, + 320.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 334, + 505, + 477 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "Figure 1: Comparison between layer-wise and channel-wise quantization in a simple convolution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 301, + 358 + ], + "score": 1.0, + "content": "layer with 2 IFM channels and 1 OFM channel.", + "type": "text" + }, + { + "bbox": [ + 301, + 346, + 327, + 357 + ], + "score": 0.42, + "content": "\\mathbf { Q } n . m", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "represents a fixed point integer format with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 114, + 366 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 356, + 199, + 368 + ], + "score": 1.0, + "content": "bits for integer part,", + "type": "text" + }, + { + "bbox": [ + 199, + 358, + 209, + 366 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "bits for fractional part, and 1 bit for the sign. Total bit-width is equal to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 107, + 367, + 158, + 379 + ], + "score": 0.88, + "content": "( n + m + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "bits. min fl(A, B) returns a format with the minimum fractional length. For layer-wise", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "quantization in (a), all the channels of both the inputs and the kernels are forced to share the biggest", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "integer part length across all channels in order to retain the most significant bits. Thus, the number of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "bits for fractional parts are identical for all paths at the partial sum stage. Channel-wise quantization", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "methods in (b) and (c) could spare more bits for fractional part in accumulator and adder due to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "channel level granularity, thereby reducing the low precision rounding error during summation.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "score": 1.0, + "content": "However, the naive approach shown in (b) is not practical since it requires large number of extra bit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "shifters in front of the partial sum adder to adjust the format of its inputs before adding them. On the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "score": 1.0, + "content": "contrary, the proposed channel-wise quantization method in (c) does not require such HW cost by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 465, + 340, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 340, + 479 + ], + "score": 1.0, + "content": "considering the bit shifts in the kernel weights in advance.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "layer-wise quantization. The overall procedure to determining the channel-wise fractional length is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 512, + 222, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 222, + 523 + ], + "score": 1.0, + "content": "summarized in Algorithm 1.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "The channel-wise quantization can be applied to a fully-connected (FC) layer by considering each", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "unit as a channel. However, for simplicity, we use the layer-wise quantization for the activations of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "fully-connected (FC) layers. Notwithstanding, the weights of FC layers still needs to be adapted to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "preceding layer. Figure 2 shows three such scenarios where we fallback to the layer-wise quantization.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "In scenario (b) and (d), the activations quantized channel-wise from the previous convolution layer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "are multiplied with the channel-wise quantized weights of an FC layer which are pre-adjusted to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "yield the activations having an identical fractional length, hence, the layer-wise quantization for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "activations. For scenario (c) where two FCs are stacked consecutively, the layer-wise quantization is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 616, + 222, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 222, + 629 + ], + "score": 1.0, + "content": "utilized throughout the path.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 298, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 299, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 299, + 657 + ], + "score": 1.0, + "content": "2.2 FRACTIONAL LENGTH DETERMINATION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Determining the fractional length (placing the dot in between the integer and fractional part within", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "the given bit-width) is easier said than done. Previous works (Gysel, 2016; Migacz, 2017) profiled", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the target dataset to look for the max value which became the max representable value in the dynamic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "score": 1.0, + "content": "range. Profiling, running a network in forward path and collecting statistics, provides either an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "estimation of the dynamic range when executed during pre-processing stage on a subset of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 721, + 502, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 502, + 733 + ], + "score": 1.0, + "content": "training dataset or an exact fit when performed during run-time on the actual data being processed.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 136, + 83, + 476, + 321 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 136, + 83, + 476, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 83, + 476, + 321 + ], + "spans": [ + { + "bbox": [ + 136, + 83, + 476, + 321 + ], + "score": 0.969, + "type": "image", + "image_path": "a24a4dbf4d2d8b14edde7d555977a425eb6715861096bfb923a265f86e32fd6c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 83, + 476, + 162.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 162.33333333333331, + 476, + 241.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 241.66666666666663, + 476, + 320.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 334, + 505, + 477 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "Figure 1: Comparison between layer-wise and channel-wise quantization in a simple convolution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 301, + 358 + ], + "score": 1.0, + "content": "layer with 2 IFM channels and 1 OFM channel.", + "type": "text" + }, + { + "bbox": [ + 301, + 346, + 327, + 357 + ], + "score": 0.42, + "content": "\\mathbf { Q } n . m", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "represents a fixed point integer format with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 114, + 366 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 356, + 199, + 368 + ], + "score": 1.0, + "content": "bits for integer part,", + "type": "text" + }, + { + "bbox": [ + 199, + 358, + 209, + 366 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "bits for fractional part, and 1 bit for the sign. Total bit-width is equal to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 107, + 367, + 158, + 379 + ], + "score": 0.88, + "content": "( n + m + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "bits. min fl(A, B) returns a format with the minimum fractional length. For layer-wise", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "quantization in (a), all the channels of both the inputs and the kernels are forced to share the biggest", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "integer part length across all channels in order to retain the most significant bits. Thus, the number of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "bits for fractional parts are identical for all paths at the partial sum stage. Channel-wise quantization", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "methods in (b) and (c) could spare more bits for fractional part in accumulator and adder due to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "channel level granularity, thereby reducing the low precision rounding error during summation.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "score": 1.0, + "content": "However, the naive approach shown in (b) is not practical since it requires large number of extra bit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "shifters in front of the partial sum adder to adjust the format of its inputs before adding them. On the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "score": 1.0, + "content": "contrary, the proposed channel-wise quantization method in (c) does not require such HW cost by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 465, + 340, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 340, + 479 + ], + "score": 1.0, + "content": "considering the bit shifts in the kernel weights in advance.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 522 + ], + "lines": [], + "index": 16.5, + "bbox_fs": [ + 105, + 500, + 505, + 523 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "The channel-wise quantization can be applied to a fully-connected (FC) layer by considering each", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "unit as a channel. However, for simplicity, we use the layer-wise quantization for the activations of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "fully-connected (FC) layers. Notwithstanding, the weights of FC layers still needs to be adapted to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "preceding layer. Figure 2 shows three such scenarios where we fallback to the layer-wise quantization.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "In scenario (b) and (d), the activations quantized channel-wise from the previous convolution layer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "are multiplied with the channel-wise quantized weights of an FC layer which are pre-adjusted to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "yield the activations having an identical fractional length, hence, the layer-wise quantization for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "activations. For scenario (c) where two FCs are stacked consecutively, the layer-wise quantization is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 616, + 222, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 222, + 629 + ], + "score": 1.0, + "content": "utilized throughout the path.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 528, + 506, + 629 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 298, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 299, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 299, + 657 + ], + "score": 1.0, + "content": "2.2 FRACTIONAL LENGTH DETERMINATION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Determining the fractional length (placing the dot in between the integer and fractional part within", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "the given bit-width) is easier said than done. Previous works (Gysel, 2016; Migacz, 2017) profiled", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the target dataset to look for the max value which became the max representable value in the dynamic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "score": 1.0, + "content": "range. Profiling, running a network in forward path and collecting statistics, provides either an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "estimation of the dynamic range when executed during pre-processing stage on a subset of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 721, + 502, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 502, + 733 + ], + "score": 1.0, + "content": "training dataset or an exact fit when performed during run-time on the actual data being processed.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 665, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 142, + 514, + 379 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 142, + 514, + 379 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 142, + 514, + 379 + ], + "spans": [ + { + "bbox": [ + 107, + 142, + 514, + 379 + ], + "score": 0.494, + "html": "
Algorithm1 HW-friendly channel-wise quantization. Profiling dataset is a subset of training data set. fl stands for fractional length (flker: kernel fl, kernel and one input, flgdder: adder fl, flbias: bias fl, shiftj: layer output bit-wise shift amount).
Require: network architecture, network parameters,profiling dataset Ensure: flker,flbias, flifm, flofm,shift,quantized network parameters
1. Profile weights and activations Calculate statistics of weights and activations of each channel on profiling dataset 2.Calculate channel-wise fractional lengths
For each layer,
calculate fiker from statistics for each channel of kernels calculate flifm,flofm from statistics of activations for each channel
flpSum 'ji fiadder := min ( (frpsum) for each j
flbias := flgdder
fier←flger (fpsum-fbias) shiftj := flbias f1ofm 3. Quantize network parameters with flker, flbias
", + "type": "table", + "image_path": "71687d5431735510340d94c090022d96d69329a88f0368d6b551cf9799c81c98.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 142, + 514, + 221.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 221.0, + 514, + 300.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 300.0, + 514, + 379.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 122, + 512, + 489, + 633 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 512, + 489, + 633 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 512, + 489, + 633 + ], + "spans": [ + { + "bbox": [ + 122, + 512, + 489, + 633 + ], + "score": 0.965, + "type": "image", + "image_path": "945490064c65a80f2a49e942569b7efce801cbd01761c17afdda7c421cf77446.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 122, + 512, + 489, + 552.3333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 552.3333333333334, + 489, + 592.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 592.6666666666667, + 489, + 633.0000000000001 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 646, + 505, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 372, + 659 + ], + "score": 1.0, + "content": "Figure 2: Quantization policy varies with network configurations.", + "type": "text" + }, + { + "bbox": [ + 372, + 649, + 379, + 657 + ], + "score": 0.54, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 646, + 397, + 659 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 649, + 406, + 657 + ], + "score": 0.65, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "represent activation and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 657, + 440, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 325, + 670 + ], + "score": 1.0, + "content": "weights, respectively. (cw: channel-wise quantization,", + "type": "text" + }, + { + "bbox": [ + 325, + 658, + 337, + 668 + ], + "score": 0.68, + "content": "l w", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 657, + 440, + 670 + ], + "score": 1.0, + "content": ": layer-wise quantization)", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + } + ], + "index": 5.25 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": "table", + "bbox": [ + 107, + 142, + 514, + 379 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 142, + 514, + 379 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 142, + 514, + 379 + ], + "spans": [ + { + "bbox": [ + 107, + 142, + 514, + 379 + ], + "score": 0.494, + "html": "
Algorithm1 HW-friendly channel-wise quantization. Profiling dataset is a subset of training data set. fl stands for fractional length (flker: kernel fl, kernel and one input, flgdder: adder fl, flbias: bias fl, shiftj: layer output bit-wise shift amount).
Require: network architecture, network parameters,profiling dataset Ensure: flker,flbias, flifm, flofm,shift,quantized network parameters
1. Profile weights and activations Calculate statistics of weights and activations of each channel on profiling dataset 2.Calculate channel-wise fractional lengths
For each layer,
calculate fiker from statistics for each channel of kernels calculate flifm,flofm from statistics of activations for each channel
flpSum 'ji fiadder := min ( (frpsum) for each j
flbias := flgdder
fier←flger (fpsum-fbias) shiftj := flbias f1ofm 3. Quantize network parameters with flker, flbias
", + "type": "table", + "image_path": "71687d5431735510340d94c090022d96d69329a88f0368d6b551cf9799c81c98.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 142, + 514, + 221.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 221.0, + 514, + 300.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 300.0, + 514, + 379.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 122, + 512, + 489, + 633 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 512, + 489, + 633 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 512, + 489, + 633 + ], + "spans": [ + { + "bbox": [ + 122, + 512, + 489, + 633 + ], + "score": 0.965, + "type": "image", + "image_path": "945490064c65a80f2a49e942569b7efce801cbd01761c17afdda7c421cf77446.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 122, + 512, + 489, + 552.3333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 552.3333333333334, + 489, + 592.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 592.6666666666667, + 489, + 633.0000000000001 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 646, + 505, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 372, + 659 + ], + "score": 1.0, + "content": "Figure 2: Quantization policy varies with network configurations.", + "type": "text" + }, + { + "bbox": [ + 372, + 649, + 379, + 657 + ], + "score": 0.54, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 646, + 397, + 659 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 649, + 406, + 657 + ], + "score": 0.65, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "represent activation and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 657, + 440, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 325, + 670 + ], + "score": 1.0, + "content": "weights, respectively. (cw: channel-wise quantization,", + "type": "text" + }, + { + "bbox": [ + 325, + 658, + 337, + 668 + ], + "score": 0.68, + "content": "l w", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 657, + 440, + 670 + ], + "score": 1.0, + "content": ": layer-wise quantization)", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + } + ], + "index": 5.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 181, + 81, + 431, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 181, + 81, + 431, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 81, + 431, + 263 + ], + "spans": [ + { + "bbox": [ + 181, + 81, + 431, + 263 + ], + "score": 0.973, + "type": "image", + "image_path": "735e4ddb664408b8796860238b6c6cb067e076dfc9a01d8f059ab801eac17dc3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 181, + 81, + 431, + 141.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 181, + 141.66666666666666, + 431, + 202.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 181, + 202.33333333333331, + 431, + 263.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 276, + 505, + 310 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "Figure 3: Superpositioned PDFs of pre-activation values of each channel (GoogLeNet w/ ImageNet", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "dataset). Every distribution is normalized to have unit variance. Y-axis is in log scale. Mean dist.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 299, + 286, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 286, + 311 + ], + "score": 1.0, + "content": "represents the averaged PDF of all channels.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "The obvious side effect is that selecting just the right size of the dataset to profile is not trivial. A large", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "dataset will increase the chance of electing an outlier as the max value which will overestimate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "score": 1.0, + "content": "dynamic range. This will consequently penalize the fractional part of the fixed-point representation.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 369, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 386 + ], + "score": 1.0, + "content": "On the other extreme where insufficient size of the profiling dataset is used, the values overflowing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 382, + 492, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 492, + 395 + ], + "score": 1.0, + "content": "the determined fixed-point notation during inference will cause severe performance degradation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 205, + 412 + ], + "score": 1.0, + "content": "Lin proposed to use the", + "type": "text" + }, + { + "bbox": [ + 206, + 402, + 213, + 410 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "-th moments of the distribution instead of the max value to identify the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "optimal fixed-point bit-width and the fractional length (Lin & Annapureddy, 2016). The dynamic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "range of the activation is determined so that the signal-to-quantization-noise-ratio (SQNR) caused by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "quantization would be minimized. In this case, two factors contribute to the quantization noise. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 444, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 455 + ], + "score": 1.0, + "content": "first is the quantization error found within the dynamic range and the latter is the overload error where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "the values beyond the range are clipped to either the upper or the lower bound. When the number", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "of the quantization levels is fixed, there exists an optimum interval between the levels which makes", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "these two errors balanced. This method is much less sensitive to the size of the profiling dataset since", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 121, + 499 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 488, + 129, + 497 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "-th moments of a distribution are more stable measures than the max value. A positive side", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 498, + 485, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 485, + 511 + ], + "score": 1.0, + "content": "effect is that optimum interval can be found even with a small dataset as shown in Section 3.1.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "Figure 3 illustrates the superpositioned probability density functions (PDFs) of the pre-activation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "values of the individual OFM channels measured on GoogLeNet(Szegedy et al., 2014) trained with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 538, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 549 + ], + "score": 1.0, + "content": "the ImageNet dataset. All PDFs were normalized and shifted to have an unit variance and a mean of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "zero prior to compositing the functions. As can be seen from the graph, there is a large variation in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "the distribution of the pre-activation values. In Lin & Annapureddy (2016), normal distribution was", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "used to approximate them. However, the mean distribution over all the channels, shown in Figure", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "3, suggests Laplace distribution rather than normal distribution. We also found that the fractional", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 506, + 605 + ], + "score": 1.0, + "content": "length obtained by either normal or Laplace distribution tends to underestimate the dynamic range", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "due to the heavy tails of the actual distribution in many channels. In those cases, truncated super", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "Cauchy distribution, defined as follows, provides smaller quantization-induced noise by appropriately", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 625, + 192, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 192, + 637 + ], + "score": 1.0, + "content": "considering the tails.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 661, + 407, + 701 + ], + "lines": [ + { + "bbox": [ + 193, + 661, + 407, + 701 + ], + "spans": [ + { + "bbox": [ + 193, + 661, + 407, + 701 + ], + "score": 0.94, + "content": "f ( x ) = { \\left\\{ \\begin{array} { l l } { { \\frac { \\sqrt { 2 } } { \\pi { \\gamma } \\left[ 1 + \\left( { \\frac { x - x _ { 0 } } { \\gamma } } \\right) ^ { 4 } \\right] } } , } & { { \\mathrm { i f } } - 1 5 < x - x _ { 0 } < 1 5 } \\\\ { 0 , \\quad { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "63d6301afb68999d79e7c4f536c1038a6f145254b80859fe11f8039b6a034831.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 193, + 661, + 407, + 674.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 193, + 674.3333333333334, + 407, + 687.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 193, + 687.6666666666667, + 407, + 701.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 359, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 360, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 131, + 735 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 722, + 142, + 732 + ], + "score": 0.86, + "content": "x _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 718, + 261, + 735 + ], + "score": 1.0, + "content": "is the location parameter and", + "type": "text" + }, + { + "bbox": [ + 261, + 723, + 268, + 732 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 718, + 360, + 735 + ], + "score": 1.0, + "content": "is the scale parameter.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": [ + 181, + 81, + 431, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 181, + 81, + 431, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 81, + 431, + 263 + ], + "spans": [ + { + "bbox": [ + 181, + 81, + 431, + 263 + ], + "score": 0.973, + "type": "image", + "image_path": "735e4ddb664408b8796860238b6c6cb067e076dfc9a01d8f059ab801eac17dc3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 181, + 81, + 431, + 141.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 181, + 141.66666666666666, + 431, + 202.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 181, + 202.33333333333331, + 431, + 263.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 276, + 505, + 310 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "Figure 3: Superpositioned PDFs of pre-activation values of each channel (GoogLeNet w/ ImageNet", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "dataset). Every distribution is normalized to have unit variance. Y-axis is in log scale. Mean dist.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 299, + 286, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 286, + 311 + ], + "score": 1.0, + "content": "represents the averaged PDF of all channels.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "The obvious side effect is that selecting just the right size of the dataset to profile is not trivial. A large", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "dataset will increase the chance of electing an outlier as the max value which will overestimate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 373 + ], + "score": 1.0, + "content": "dynamic range. This will consequently penalize the fractional part of the fixed-point representation.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 369, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 386 + ], + "score": 1.0, + "content": "On the other extreme where insufficient size of the profiling dataset is used, the values overflowing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 382, + 492, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 492, + 395 + ], + "score": 1.0, + "content": "the determined fixed-point notation during inference will cause severe performance degradation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 338, + 506, + 395 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 205, + 412 + ], + "score": 1.0, + "content": "Lin proposed to use the", + "type": "text" + }, + { + "bbox": [ + 206, + 402, + 213, + 410 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "-th moments of the distribution instead of the max value to identify the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "optimal fixed-point bit-width and the fractional length (Lin & Annapureddy, 2016). The dynamic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "range of the activation is determined so that the signal-to-quantization-noise-ratio (SQNR) caused by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "quantization would be minimized. In this case, two factors contribute to the quantization noise. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 444, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 455 + ], + "score": 1.0, + "content": "first is the quantization error found within the dynamic range and the latter is the overload error where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "the values beyond the range are clipped to either the upper or the lower bound. When the number", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "of the quantization levels is fixed, there exists an optimum interval between the levels which makes", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "these two errors balanced. This method is much less sensitive to the size of the profiling dataset since", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 121, + 499 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 488, + 129, + 497 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "-th moments of a distribution are more stable measures than the max value. A positive side", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 498, + 485, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 485, + 511 + ], + "score": 1.0, + "content": "effect is that optimum interval can be found even with a small dataset as shown in Section 3.1.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 399, + 506, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "Figure 3 illustrates the superpositioned probability density functions (PDFs) of the pre-activation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "values of the individual OFM channels measured on GoogLeNet(Szegedy et al., 2014) trained with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 538, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 549 + ], + "score": 1.0, + "content": "the ImageNet dataset. All PDFs were normalized and shifted to have an unit variance and a mean of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "zero prior to compositing the functions. As can be seen from the graph, there is a large variation in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "the distribution of the pre-activation values. In Lin & Annapureddy (2016), normal distribution was", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "used to approximate them. However, the mean distribution over all the channels, shown in Figure", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "3, suggests Laplace distribution rather than normal distribution. We also found that the fractional", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 506, + 605 + ], + "score": 1.0, + "content": "length obtained by either normal or Laplace distribution tends to underestimate the dynamic range", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "due to the heavy tails of the actual distribution in many channels. In those cases, truncated super", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "Cauchy distribution, defined as follows, provides smaller quantization-induced noise by appropriately", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 625, + 192, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 192, + 637 + ], + "score": 1.0, + "content": "considering the tails.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 515, + 506, + 637 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 661, + 407, + 701 + ], + "lines": [ + { + "bbox": [ + 193, + 661, + 407, + 701 + ], + "spans": [ + { + "bbox": [ + 193, + 661, + 407, + 701 + ], + "score": 0.94, + "content": "f ( x ) = { \\left\\{ \\begin{array} { l l } { { \\frac { \\sqrt { 2 } } { \\pi { \\gamma } \\left[ 1 + \\left( { \\frac { x - x _ { 0 } } { \\gamma } } \\right) ^ { 4 } \\right] } } , } & { { \\mathrm { i f } } - 1 5 < x - x _ { 0 } < 1 5 } \\\\ { 0 , \\quad { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "63d6301afb68999d79e7c4f536c1038a6f145254b80859fe11f8039b6a034831.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 193, + 661, + 407, + 674.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 193, + 674.3333333333334, + 407, + 687.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 193, + 687.6666666666667, + 407, + 701.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 359, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 360, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 131, + 735 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 722, + 142, + 732 + ], + "score": 0.86, + "content": "x _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 718, + 261, + 735 + ], + "score": 1.0, + "content": "is the location parameter and", + "type": "text" + }, + { + "bbox": [ + 261, + 723, + 268, + 732 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 718, + 360, + 735 + ], + "score": 1.0, + "content": "is the scale parameter.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 718, + 360, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 276, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 278, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 278, + 96 + ], + "score": 1.0, + "content": "2.3 EXPLOITING CHANNEL-WISE PDF", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "Large variations in distributions across the OFM channels naturally led us to search for the optimal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "PDF for each channel in determining the fractional length. For this purpose, we constructed a dataset", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "consisting of the best-fit PDFs producing the highest SQNR for the individual OFM channels in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "GoogLeNet, Inception-v3(Szegedy et al., 2015), and MobileNet(Howard et al., 2017). A simple", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "classifier was trained to select the best-fit PDF during quantization by taking a vector of n-th moments", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "of activation values in each channel. The classifier was trained to choose from truncated super Cauchy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 257, + 182 + ], + "score": 1.0, + "content": "or Laplace distribution. We obtained", + "type": "text" + }, + { + "bbox": [ + 257, + 170, + 277, + 180 + ], + "score": 0.89, + "content": "83 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "classification accuracy by using the k-nearest neighbors", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 181, + 273, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 164, + 193 + ], + "score": 1.0, + "content": "classifier with", + "type": "text" + }, + { + "bbox": [ + 165, + 181, + 195, + 191 + ], + "score": 0.89, + "content": "k = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 181, + 273, + 193 + ], + "score": 1.0, + "content": "(Samworth, 2013).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 108, + 210, + 242, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 243, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 243, + 225 + ], + "score": 1.0, + "content": "3 BENCHMARK RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 108, + 237, + 276, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 277, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 277, + 249 + ], + "score": 1.0, + "content": "3.1 IMAGENET CLASSIFICATION TASK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "The proposed quantization method was evaluated on various state-of-the-art deep networks trained", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "on the ImageNet dataset containing 1.2M training and 50k validation examples. Pretrained networks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 279, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 294 + ], + "score": 1.0, + "content": "were quantized into 8-bit fixed point format by using the profiling dataset sampled from the training", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "set and evaluated on the whole validation dataset (50k examples). Uniform linear quantization was", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "used for all the cases. Batch normalization(Ioffe & Szegedy, 2015) layers were fused into convolution", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "layers before the quantization process. Unsigned integer format was employed for the activation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 323, + 248, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 248, + 337 + ], + "score": 1.0, + "content": "values with the ReLU nonlinearity.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "A comparison against the layer-wise quantization is summarized in Table 1. Conventional method", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "with the layer-wise quantization based on the max value provided good quantization results for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "GoogLeNet, VGG16(Simonyan & Zisserman, 2014), and Inception-v3 which were the most popular", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "networks in the previous quantization and pruning papers. With more recent networks such as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "MobileNet, MobileNet2(Sandler et al., 2018), ResNet(He et al., 2015), Inception-v4(Szegedy et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "2016), and Xception(Chollet, 2016), severe accuracy loss was observed. We figured out that the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 406, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 421 + ], + "score": 1.0, + "content": "outliers were the major source of accuracy degradation after layer-wise quantization. For example,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "using the max value of a parameter could significantly overestimate its dynamic range when there", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "are outliers with extraordinarily large values which cannot be seen in the validation set or when", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "deployed. Carefully removing those outliers will significantly improve the quality of quantization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "even if layer-wise max-based method is used. Thus, there are previous papers showing better results", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "than our baseline layer-wise quantization. However, we did not consider such improvement in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "baseline because it requires extra effort and the process itself might taint the dataset since there’s no", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 269, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 269, + 496 + ], + "score": 1.0, + "content": "explicitly clear boundary of the outliers.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "We evaluated the channel-wise quantization in four modes depending on the method to determine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "the fractional lengths: MAX, Laplace, S.Cauchy, and PDF-aware. In MAX mode, the max values", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "of the activation tensors were used to decide the factional lengths of the feature maps. As for the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 436, + 545 + ], + "score": 1.0, + "content": "Laplace or S.Cauchy modes, the optimal fractional lengths were estimated from the", + "type": "text" + }, + { + "bbox": [ + 437, + 535, + 444, + 543 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "-th moments of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 467, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 467, + 558 + ], + "score": 1.0, + "content": "the activations by assuming PDF as either Laplace or truncated super Cauchy distribution.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Regardless of the modes, the channel-wise quantization exhibited significantly improved accuracy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "losses for all the mentioned networks. In the MAX mode, we still observed a large accuracy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "degradation in the Inception-v4 network. We discovered that there were extremely large outliers", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "in the activations of a few layers causing significant overestimation of their dynamic ranges. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "problem can be resolved by applying other modes (Laplace, S.Cauchy, or PDF-aware). The Laplace", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "and S.Cauchy modes showed similar performance overall but different behavior depending on the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "network. The best result came with the PDF-aware mode which selects the best-fit PDF for each", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 143, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 143, + 650 + ], + "score": 1.0, + "content": "channel.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "Figure 4 illustrates the required size of the profiling dataset for the MAX and the OPT methods when", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "measured on Inception-v3. Fractional lengths were calculated based on randomly selected images", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 467, + 690 + ], + "score": 1.0, + "content": "from the ImageNet training dataset. The MAX method required a large number of samples", + "type": "text" + }, + { + "bbox": [ + 467, + 677, + 493, + 688 + ], + "score": 0.84, + "content": "( \\romannumeral 1 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "reach a stable accuracy, whereas a few samples were enough to stabilize the accuracy for the OPT", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "method. Since most of the published networks are trained in full precision while accelerators mandate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "low-precision representation, being able to readily port a network with just a few training samples is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "a huge advantage for easy deployment of pretrained full-precision DNNs. Accordingly, the proposed", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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, + 276, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 278, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 278, + 96 + ], + "score": 1.0, + "content": "2.3 EXPLOITING CHANNEL-WISE PDF", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "Large variations in distributions across the OFM channels naturally led us to search for the optimal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "PDF for each channel in determining the fractional length. For this purpose, we constructed a dataset", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "consisting of the best-fit PDFs producing the highest SQNR for the individual OFM channels in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "GoogLeNet, Inception-v3(Szegedy et al., 2015), and MobileNet(Howard et al., 2017). A simple", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "classifier was trained to select the best-fit PDF during quantization by taking a vector of n-th moments", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "of activation values in each channel. The classifier was trained to choose from truncated super Cauchy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 257, + 182 + ], + "score": 1.0, + "content": "or Laplace distribution. We obtained", + "type": "text" + }, + { + "bbox": [ + 257, + 170, + 277, + 180 + ], + "score": 0.89, + "content": "83 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "classification accuracy by using the k-nearest neighbors", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 181, + 273, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 164, + 193 + ], + "score": 1.0, + "content": "classifier with", + "type": "text" + }, + { + "bbox": [ + 165, + 181, + 195, + 191 + ], + "score": 0.89, + "content": "k = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 181, + 273, + 193 + ], + "score": 1.0, + "content": "(Samworth, 2013).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 104, + 506, + 193 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 210, + 242, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 243, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 243, + 225 + ], + "score": 1.0, + "content": "3 BENCHMARK RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 108, + 237, + 276, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 277, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 277, + 249 + ], + "score": 1.0, + "content": "3.1 IMAGENET CLASSIFICATION TASK", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "The proposed quantization method was evaluated on various state-of-the-art deep networks trained", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "on the ImageNet dataset containing 1.2M training and 50k validation examples. Pretrained networks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 279, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 294 + ], + "score": 1.0, + "content": "were quantized into 8-bit fixed point format by using the profiling dataset sampled from the training", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "set and evaluated on the whole validation dataset (50k examples). Uniform linear quantization was", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "used for all the cases. Batch normalization(Ioffe & Szegedy, 2015) layers were fused into convolution", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "layers before the quantization process. Unsigned integer format was employed for the activation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 323, + 248, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 248, + 337 + ], + "score": 1.0, + "content": "values with the ReLU nonlinearity.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 258, + 506, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "A comparison against the layer-wise quantization is summarized in Table 1. Conventional method", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "with the layer-wise quantization based on the max value provided good quantization results for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "GoogLeNet, VGG16(Simonyan & Zisserman, 2014), and Inception-v3 which were the most popular", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "networks in the previous quantization and pruning papers. With more recent networks such as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "MobileNet, MobileNet2(Sandler et al., 2018), ResNet(He et al., 2015), Inception-v4(Szegedy et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "2016), and Xception(Chollet, 2016), severe accuracy loss was observed. We figured out that the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 406, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 421 + ], + "score": 1.0, + "content": "outliers were the major source of accuracy degradation after layer-wise quantization. For example,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "using the max value of a parameter could significantly overestimate its dynamic range when there", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "are outliers with extraordinarily large values which cannot be seen in the validation set or when", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "deployed. Carefully removing those outliers will significantly improve the quality of quantization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "even if layer-wise max-based method is used. Thus, there are previous papers showing better results", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "than our baseline layer-wise quantization. However, we did not consider such improvement in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "baseline because it requires extra effort and the process itself might taint the dataset since there’s no", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 269, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 269, + 496 + ], + "score": 1.0, + "content": "explicitly clear boundary of the outliers.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 341, + 507, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "We evaluated the channel-wise quantization in four modes depending on the method to determine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "the fractional lengths: MAX, Laplace, S.Cauchy, and PDF-aware. In MAX mode, the max values", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "of the activation tensors were used to decide the factional lengths of the feature maps. As for the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 436, + 545 + ], + "score": 1.0, + "content": "Laplace or S.Cauchy modes, the optimal fractional lengths were estimated from the", + "type": "text" + }, + { + "bbox": [ + 437, + 535, + 444, + 543 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "-th moments of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 467, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 467, + 558 + ], + "score": 1.0, + "content": "the activations by assuming PDF as either Laplace or truncated super Cauchy distribution.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 500, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Regardless of the modes, the channel-wise quantization exhibited significantly improved accuracy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "losses for all the mentioned networks. In the MAX mode, we still observed a large accuracy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "degradation in the Inception-v4 network. We discovered that there were extremely large outliers", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "in the activations of a few layers causing significant overestimation of their dynamic ranges. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "problem can be resolved by applying other modes (Laplace, S.Cauchy, or PDF-aware). The Laplace", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "and S.Cauchy modes showed similar performance overall but different behavior depending on the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "network. The best result came with the PDF-aware mode which selects the best-fit PDF for each", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 143, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 143, + 650 + ], + "score": 1.0, + "content": "channel.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 561, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "Figure 4 illustrates the required size of the profiling dataset for the MAX and the OPT methods when", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "measured on Inception-v3. Fractional lengths were calculated based on randomly selected images", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 467, + 690 + ], + "score": 1.0, + "content": "from the ImageNet training dataset. The MAX method required a large number of samples", + "type": "text" + }, + { + "bbox": [ + 467, + 677, + 493, + 688 + ], + "score": 0.84, + "content": "( \\romannumeral 1 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "reach a stable accuracy, whereas a few samples were enough to stabilize the accuracy for the OPT", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "method. Since most of the published networks are trained in full precision while accelerators mandate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "low-precision representation, being able to readily port a network with just a few training samples is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "a huge advantage for easy deployment of pretrained full-precision DNNs. Accordingly, the proposed", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 608, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 625 + ], + "score": 1.0, + "content": "quantization method is able to reach a competitive accuracy without the need for profiling a large", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 620, + 243, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 243, + 635 + ], + "score": 1.0, + "content": "number of samples or fine tuning.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 166, + 541, + 324 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 506, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "score": 1.0, + "content": "Table 1: Top-1 accuracy loss after 8-bit quantization in various large scale networks trained on the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "ImageNet dataset. No retraining is performed. Reference (Float32) lists baseline accuracies while", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "score": 1.0, + "content": "all other figures are accuracy losses. Modes for determining the fractional length: MAX (reserve", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "integer length to include at least the max value), Laplace (optimal fraction length based on Laplace", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 507, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 481, + 146 + ], + "score": 1.0, + "content": "distribution), S.Cauchy (optimal fraction length based on truncated super Cauchy distribution),", + "type": "text" + }, + { + "bbox": [ + 482, + 133, + 502, + 144 + ], + "score": 0.36, + "content": "P D F", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 132, + 507, + 146 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "aware (optimal fractional length based on optimum PDF for each channel). Accuracy losses above", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 220, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 128, + 165 + ], + "score": 0.79, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 155, + 220, + 168 + ], + "score": 1.0, + "content": "point are in bold face.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 106, + 166, + 541, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 166, + 541, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 541, + 324 + ], + "score": 0.983, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
GoogLeNet [1]68.93%0.23%0.23%0.13%0.15%0.08%0.05%
SqueezeNet [2]58.39%2.02%0.68%0.22%0.23%0.43%0.27%
MobileNet [3]69.50%5.48%4.02%1.17%0.66%0.66%0.73%
MobileNet2 [4]71.23%71.13%71.13%1.73%1.81%3.09%1.68 %
VGG16 [5]68.34%0.29%0.19%-0.01%-0.04%0.01%-0.06%
ResNet101-v2 [6]78.04%9.52%5.17%1.01%0.74%1.58%0.83%
ResNeXt50-32x4d [7]76.84%1.13%0.65%0.51%0.65%0.78%0.32%
Inception-v3 [8]77.97%0.99%0.66%0.23%0.09%0.18%0.24%
Inception-v4 [9]79.90%74.65%0.61%26.07%-0.06%0.07%0.13%
Incep.-ResNet-v2 [10]80.19%1.45%0.71%0.18%1.11%0.64%0.36%
Xception [11]78.72%54.72%0.57%1.11%0.60%0.48%0.33%
", + "type": "table", + "image_path": "1c4c66c9af43150f522a5c595ce0a3dbbffd0285354a003268aa6fc60ce5e959.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 166, + 541, + 218.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 218.66666666666666, + 541, + 271.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 271.3333333333333, + 541, + 324.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 325, + 498, + 342 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 324, + 500, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 500, + 334 + ], + "score": 1.0, + "content": "[1] Szegedy et al. (2014), [2] Iandola et al. (2016), [3] Howard et al. (2017), [4] Sandler et al. (2018), [5] Simonyan & Zisserman (2014), [6]", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 332, + 491, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 491, + 342 + ], + "score": 1.0, + "content": "He et al. (2015), [7] Xie et al. (2016), [8] Szegedy et al. (2015), [9] Szegedy et al. (2016), [10] Szegedy et al. (2016), [11] Chollet (2016)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 150, + 356, + 461, + 541 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 150, + 356, + 461, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 356, + 461, + 541 + ], + "spans": [ + { + "bbox": [ + 150, + 356, + 461, + 541 + ], + "score": 0.967, + "type": "image", + "image_path": "d58db48be461b76b32bf54c3ebba5af4e8eaddf17b292ada409938090dc83777.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 356, + 461, + 417.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 150, + 417.6666666666667, + 461, + 479.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 150, + 479.33333333333337, + 461, + 541.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 553, + 505, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "Figure 4: Effect of profiling dataset size on accuracy with quantization for Inception-v3. MAX", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "method requires large number of samples for profiling to reach a stable accuracy. Laplace method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 576, + 259, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 259, + 588 + ], + "score": 1.0, + "content": "stabilizes quickly with a few samples.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 503, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 625 + ], + "score": 1.0, + "content": "quantization method is able to reach a competitive accuracy without the need for profiling a large", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 620, + 243, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 243, + 635 + ], + "score": 1.0, + "content": "number of samples or fine tuning.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 649, + 217, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 218, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 218, + 662 + ], + "score": 1.0, + "content": "3.2 OBJECT DETECTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "We performed network quantization on YOLO-v2(Redmon & Farhadi, 2016), a state-of-the-art object", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "detection network. The network was trained and tested on the Pascal VOC dataset (Everingham et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 690, + 136, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 690, + 136, + 707 + ], + "score": 1.0, + "content": "2015).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Table 2 shows the loss in mean AP after quantization using our method in comparison with the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 360, + 733 + ], + "score": 1.0, + "content": "layer-wise quantization. The layer-wise quantization caused", + "type": "text" + }, + { + "bbox": [ + 360, + 721, + 383, + 731 + ], + "score": 0.86, + "content": "2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "point drop in mean AP after", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": "table", + "bbox": [ + 106, + 166, + 541, + 324 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 506, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "score": 1.0, + "content": "Table 1: Top-1 accuracy loss after 8-bit quantization in various large scale networks trained on the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "ImageNet dataset. No retraining is performed. Reference (Float32) lists baseline accuracies while", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "score": 1.0, + "content": "all other figures are accuracy losses. Modes for determining the fractional length: MAX (reserve", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "integer length to include at least the max value), Laplace (optimal fraction length based on Laplace", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 507, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 481, + 146 + ], + "score": 1.0, + "content": "distribution), S.Cauchy (optimal fraction length based on truncated super Cauchy distribution),", + "type": "text" + }, + { + "bbox": [ + 482, + 133, + 502, + 144 + ], + "score": 0.36, + "content": "P D F", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 132, + 507, + 146 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "aware (optimal fractional length based on optimum PDF for each channel). Accuracy losses above", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 220, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 128, + 165 + ], + "score": 0.79, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 155, + 220, + 168 + ], + "score": 1.0, + "content": "point are in bold face.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 106, + 166, + 541, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 166, + 541, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 541, + 324 + ], + "score": 0.983, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
GoogLeNet [1]68.93%0.23%0.23%0.13%0.15%0.08%0.05%
SqueezeNet [2]58.39%2.02%0.68%0.22%0.23%0.43%0.27%
MobileNet [3]69.50%5.48%4.02%1.17%0.66%0.66%0.73%
MobileNet2 [4]71.23%71.13%71.13%1.73%1.81%3.09%1.68 %
VGG16 [5]68.34%0.29%0.19%-0.01%-0.04%0.01%-0.06%
ResNet101-v2 [6]78.04%9.52%5.17%1.01%0.74%1.58%0.83%
ResNeXt50-32x4d [7]76.84%1.13%0.65%0.51%0.65%0.78%0.32%
Inception-v3 [8]77.97%0.99%0.66%0.23%0.09%0.18%0.24%
Inception-v4 [9]79.90%74.65%0.61%26.07%-0.06%0.07%0.13%
Incep.-ResNet-v2 [10]80.19%1.45%0.71%0.18%1.11%0.64%0.36%
Xception [11]78.72%54.72%0.57%1.11%0.60%0.48%0.33%
", + "type": "table", + "image_path": "1c4c66c9af43150f522a5c595ce0a3dbbffd0285354a003268aa6fc60ce5e959.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 166, + 541, + 218.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 218.66666666666666, + 541, + 271.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 271.3333333333333, + 541, + 324.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 325, + 498, + 342 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 324, + 500, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 500, + 334 + ], + "score": 1.0, + "content": "[1] Szegedy et al. (2014), [2] Iandola et al. (2016), [3] Howard et al. (2017), [4] Sandler et al. (2018), [5] Simonyan & Zisserman (2014), [6]", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 332, + 491, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 491, + 342 + ], + "score": 1.0, + "content": "He et al. (2015), [7] Xie et al. (2016), [8] Szegedy et al. (2015), [9] Szegedy et al. (2016), [10] Szegedy et al. (2016), [11] Chollet (2016)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 150, + 356, + 461, + 541 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 150, + 356, + 461, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 356, + 461, + 541 + ], + "spans": [ + { + "bbox": [ + 150, + 356, + 461, + 541 + ], + "score": 0.967, + "type": "image", + "image_path": "d58db48be461b76b32bf54c3ebba5af4e8eaddf17b292ada409938090dc83777.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 356, + 461, + 417.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 150, + 417.6666666666667, + 461, + 479.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 150, + 479.33333333333337, + 461, + 541.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 553, + 505, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "Figure 4: Effect of profiling dataset size on accuracy with quantization for Inception-v3. MAX", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "method requires large number of samples for profiling to reach a stable accuracy. Laplace method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 576, + 259, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 259, + 588 + ], + "score": 1.0, + "content": "stabilizes quickly with a few samples.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 503, + 633 + ], + "lines": [], + "index": 18.5, + "bbox_fs": [ + 105, + 608, + 505, + 635 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 649, + 217, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 218, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 218, + 662 + ], + "score": 1.0, + "content": "3.2 OBJECT DETECTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "We performed network quantization on YOLO-v2(Redmon & Farhadi, 2016), a state-of-the-art object", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "detection network. The network was trained and tested on the Pascal VOC dataset (Everingham et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 690, + 136, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 690, + 136, + 707 + ], + "score": 1.0, + "content": "2015).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 671, + 507, + 707 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Table 2 shows the loss in mean AP after quantization using our method in comparison with the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 360, + 733 + ], + "score": 1.0, + "content": "layer-wise quantization. The layer-wise quantization caused", + "type": "text" + }, + { + "bbox": [ + 360, + 721, + 383, + 731 + ], + "score": 0.86, + "content": "2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "point drop in mean AP after", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 709, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 123, + 497, + 173 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 504, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "score": 1.0, + "content": "Table 2: Loss in mean AP after 8-bit quantization in YOLO-v2 (Redmon & Farhadi, 2016). No", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "retraining performed. ’Reference (Float32)’ lists baseline accuracy while all other figures are accuracy", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 111, + 293, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 183, + 124 + ], + "score": 1.0, + "content": "losses. Loss above", + "type": "text" + }, + { + "bbox": [ + 183, + 111, + 205, + 122 + ], + "score": 0.85, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 111, + 293, + 124 + ], + "score": 1.0, + "content": "point is in bold face.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 114, + 123, + 497, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 123, + 497, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 123, + 497, + 173 + ], + "score": 0.976, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
Y0L0-v272.64%2.50%2.25%0.14%0.22%0.70%0.38%
", + "type": "table", + "image_path": "a92f185814d2dcf2c70805de777d6d1584c04eced5fa62fcfa50a2e6b3e01202.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 114, + 123, + 497, + 139.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 114, + 139.66666666666666, + 497, + 156.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 114, + 156.33333333333331, + 497, + 172.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "quantization. However, our method did not suffer from such a problem by selecting the fractional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 208, + 279, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 279, + 219 + ], + "score": 1.0, + "content": "lengths adapted to the individual channels.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 239, + 215, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 217, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 217, + 253 + ], + "score": 1.0, + "content": "4 RELATED WORKS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "score": 1.0, + "content": "Han quantized the network parameters after pruning for compression in Han et al. (2015). Kim", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "proposed on using Hessian-weighted clustering to achieve a better compression ratio in quantization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "(Choi et al., 2017). However, in those works, only the network parameters were quantized to save", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 311 + ], + "score": 1.0, + "content": "storage space leaving the feature maps in full-precision. Both the activations and the network", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "parameters were quantized layer-wise to accommodate the large variations in the dynamic range", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "across the layers in Courbariaux et al. (2015b); Gysel (2016). The max values found in activations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "were used to decide on the fractional lengths, and intensive fine tuning were required to recover", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "accuracies degraded by quantization in some networks. Lin used SQNR instead of the max value", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 368 + ], + "score": 1.0, + "content": "to minimize the bit-width for each layer and optimized DNNs for fixed-point operation (Lin &", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "score": 1.0, + "content": "Annapureddy, 2016). Migacz achieved linear quantization for 8-bit integer operation without fine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "tuning by minimizing the information loss with Kullback-Leibler (KL) divergence (Migacz, 2017).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 506, + 400 + ], + "score": 1.0, + "content": "Unfortunately, collection of the activation histograms were required from a large number of samples.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 397, + 372, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 372, + 411 + ], + "score": 1.0, + "content": "All in all, these methods used the layer-wise quantization scheme.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "Aggressively lowering the precision to be under 4 bits for both the weights and the activations have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "been actively explored (Courbariaux et al., 2015a; Rastegariy et al., 2016; Hubara et al., 2016; Li", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "et al., 2016; Zhou et al., 2016; Leng et al., 2017; Lin et al., 2017). Although they revealed impressive", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "results on small benchmarks, there is still a huge gap in accuracy on large benchmarks such as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "ImageNet classification using state-of-the-art networks trained in full precision. Recent progress", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 484 + ], + "score": 1.0, + "content": "shows that it is possible to reduce the precision of DNNs to 4 bits without sacrificing accuracy by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "increasing the network size (Mishra et al., 2017) or training the networks in multiple stages with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 505 + ], + "score": 1.0, + "content": "guided training (Zhuang et al., 2017). These work focus on training DNNs for low-precision inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 503, + 389, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 389, + 515 + ], + "score": 1.0, + "content": "from scratch rather than quantizing pretrained full-precision networks.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 533, + 195, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 197, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 197, + 549 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "In this paper, we proposed a set of methods for rapid deployment of DNNs trained in full precision", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "to fixed point accelerators with limited precision computation units. The channel-wise quantization", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "recognizes the inter-channel diversities in the dynamic range of the feature maps. HW cost for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "implementation is minimized by adjusting the fractional lengths of the kernel parameters. We", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "evaluated our method on eleven state-of-the-art DNNs trained on the ImageNet dataset and an object", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "detection network trained on Pascal VOC dataset. In comparison to the previous method (i.e the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "layer-wise quantization), the channel-wise quantization can reduce the accuracy loss caused by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 213, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 213, + 651 + ], + "score": 1.0, + "content": "quantization substantially.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 437, + 668 + ], + "score": 1.0, + "content": "We also showed that quantization requires just a few image samples if we utilize the", + "type": "text" + }, + { + "bbox": [ + 437, + 657, + 444, + 665 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "-th moments of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "the activations instead of the maximum value. In this way, deployment is possible even when just a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "few training samples are available for the trained network model. We further improved our method", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "by considering the variations in distribution across the channels. A simple classifier was used for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "selecting the best-fit PDF for each channel from the statistical features. We were able to accomplish", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 249, + 722 + ], + "score": 1.0, + "content": "negligible accuracy loss (less than", + "type": "text" + }, + { + "bbox": [ + 250, + 710, + 264, + 720 + ], + "score": 0.85, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "point in eleven networks out of twelve) after quantization", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 187, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 187, + 734 + ], + "score": 1.0, + "content": "without fine tuning.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "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": [ + 114, + 123, + 497, + 173 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 89, + 504, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 505, + 101 + ], + "score": 1.0, + "content": "Table 2: Loss in mean AP after 8-bit quantization in YOLO-v2 (Redmon & Farhadi, 2016). No", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "retraining performed. ’Reference (Float32)’ lists baseline accuracy while all other figures are accuracy", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 111, + 293, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 183, + 124 + ], + "score": 1.0, + "content": "losses. Loss above", + "type": "text" + }, + { + "bbox": [ + 183, + 111, + 205, + 122 + ], + "score": 0.85, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 111, + 293, + 124 + ], + "score": 1.0, + "content": "point is in bold face.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 114, + 123, + 497, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 123, + 497, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 123, + 497, + 173 + ], + "score": 0.976, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
Y0L0-v272.64%2.50%2.25%0.14%0.22%0.70%0.38%
", + "type": "table", + "image_path": "a92f185814d2dcf2c70805de777d6d1584c04eced5fa62fcfa50a2e6b3e01202.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 114, + 123, + 497, + 139.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 114, + 139.66666666666666, + 497, + 156.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 114, + 156.33333333333331, + 497, + 172.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "quantization. However, our method did not suffer from such a problem by selecting the fractional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 208, + 279, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 279, + 219 + ], + "score": 1.0, + "content": "lengths adapted to the individual channels.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 196, + 505, + 219 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 239, + 215, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 217, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 217, + 253 + ], + "score": 1.0, + "content": "4 RELATED WORKS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "score": 1.0, + "content": "Han quantized the network parameters after pruning for compression in Han et al. (2015). Kim", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "proposed on using Hessian-weighted clustering to achieve a better compression ratio in quantization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "(Choi et al., 2017). However, in those works, only the network parameters were quantized to save", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 311 + ], + "score": 1.0, + "content": "storage space leaving the feature maps in full-precision. Both the activations and the network", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "parameters were quantized layer-wise to accommodate the large variations in the dynamic range", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "across the layers in Courbariaux et al. (2015b); Gysel (2016). The max values found in activations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "were used to decide on the fractional lengths, and intensive fine tuning were required to recover", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "accuracies degraded by quantization in some networks. Lin used SQNR instead of the max value", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 368 + ], + "score": 1.0, + "content": "to minimize the bit-width for each layer and optimized DNNs for fixed-point operation (Lin &", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 378 + ], + "score": 1.0, + "content": "Annapureddy, 2016). Migacz achieved linear quantization for 8-bit integer operation without fine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "tuning by minimizing the information loss with Kullback-Leibler (KL) divergence (Migacz, 2017).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 506, + 400 + ], + "score": 1.0, + "content": "Unfortunately, collection of the activation histograms were required from a large number of samples.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 397, + 372, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 372, + 411 + ], + "score": 1.0, + "content": "All in all, these methods used the layer-wise quantization scheme.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 267, + 506, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "Aggressively lowering the precision to be under 4 bits for both the weights and the activations have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "been actively explored (Courbariaux et al., 2015a; Rastegariy et al., 2016; Hubara et al., 2016; Li", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "et al., 2016; Zhou et al., 2016; Leng et al., 2017; Lin et al., 2017). Although they revealed impressive", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "results on small benchmarks, there is still a huge gap in accuracy on large benchmarks such as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "ImageNet classification using state-of-the-art networks trained in full precision. Recent progress", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 484 + ], + "score": 1.0, + "content": "shows that it is possible to reduce the precision of DNNs to 4 bits without sacrificing accuracy by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "increasing the network size (Mishra et al., 2017) or training the networks in multiple stages with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 505 + ], + "score": 1.0, + "content": "guided training (Zhuang et al., 2017). These work focus on training DNNs for low-precision inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 503, + 389, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 389, + 515 + ], + "score": 1.0, + "content": "from scratch rather than quantizing pretrained full-precision networks.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 415, + 506, + 515 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 533, + 195, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 197, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 197, + 549 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "In this paper, we proposed a set of methods for rapid deployment of DNNs trained in full precision", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "to fixed point accelerators with limited precision computation units. The channel-wise quantization", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "recognizes the inter-channel diversities in the dynamic range of the feature maps. HW cost for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "implementation is minimized by adjusting the fractional lengths of the kernel parameters. We", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "evaluated our method on eleven state-of-the-art DNNs trained on the ImageNet dataset and an object", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "detection network trained on Pascal VOC dataset. In comparison to the previous method (i.e the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "layer-wise quantization), the channel-wise quantization can reduce the accuracy loss caused by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 213, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 213, + 651 + ], + "score": 1.0, + "content": "quantization substantially.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 561, + 505, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 437, + 668 + ], + "score": 1.0, + "content": "We also showed that quantization requires just a few image samples if we utilize the", + "type": "text" + }, + { + "bbox": [ + 437, + 657, + 444, + 665 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "-th moments of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "the activations instead of the maximum value. In this way, deployment is possible even when just a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "few training samples are available for the trained network model. We further improved our method", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "by considering the variations in distribution across the channels. A simple classifier was used for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "selecting the best-fit PDF for each channel from the statistical features. We were able to accomplish", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 249, + 722 + ], + "score": 1.0, + "content": "negligible accuracy loss (less than", + "type": "text" + }, + { + "bbox": [ + 250, + 710, + 264, + 720 + ], + "score": 0.85, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "point in eleven networks out of twelve) after quantization", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 187, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 187, + 734 + ], + "score": 1.0, + "content": "without fine tuning.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 654, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Yoojin Choi, Mostafa El-Khamy, and Jungwon Lee. Towards the limit of network quantization. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 264, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 264, + 123 + ], + "score": 1.0, + "content": "preprint arXiv:1612.01543v2, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 104, + 131, + 505, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 507, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 507, + 145 + ], + "score": 1.0, + "content": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. CoRR,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 210, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 210, + 154 + ], + "score": 1.0, + "content": "abs/1610.02357, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "score": 1.0, + "content": "Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 172, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 114, + 172, + 505, + 187 + ], + "score": 1.0, + "content": "networks with binary weights during propagations. Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 184, + 277, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 184, + 277, + 196 + ], + "score": 1.0, + "content": "Systems (NIPS), pp. 3123–3131, 2015a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 203, + 503, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "Matthieu Courbariaux, Jean-Pierre David, and Yoshua Bengio. Training deep neural networks with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 214, + 410, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 410, + 227 + ], + "score": 1.0, + "content": "low precision multiplications. arXiv preprint arXiv:1412.7024v4, 2015b.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 105, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "M. Everingham, S. M. A. Eslami, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 245, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 507, + 259 + ], + "score": 1.0, + "content": "pascal visual object classes challenge: A retrospective. International Journal of Computer Vision,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 256, + 238, + 269 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 238, + 269 + ], + "score": 1.0, + "content": "111(1):98–136, January 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 504, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "Philipp Gysel. Ristretto: Hardware-oriented approximation of convolutional neural networks. arXiv", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 288, + 254, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 254, + 299 + ], + "score": 1.0, + "content": "preprint arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 504, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "Song Han, Huizi Mao, and William J. Dally. Deep compression: Compressing deep neural networks", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 318, + 503, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 503, + 330 + ], + "score": 1.0, + "content": "with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 337, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 352 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 349, + 290, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 290, + 360 + ], + "score": 1.0, + "content": "recognition. CoRR, abs/1512.03385, 2015.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "Andrew G. Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 391, + 350, + 402 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 350, + 402 + ], + "score": 1.0, + "content": "mobile vision applications. CoRR, abs/1704.04861, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "score": 1.0, + "content": "Itay Hubara, Matthieu Courbariaux, Daniel Soudry, Ran El-Yaniv, and Yoshua Bengio. Quantized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "neural networks: Training neural networks with low precision weights and activations. arXiv", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 433, + 249, + 444 + ], + "spans": [ + { + "bbox": [ + 114, + 433, + 249, + 444 + ], + "score": 1.0, + "content": "preprint arXiv:609.07061, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 506, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "Forrest N. Iandola, Matthew W. Moskewicz, Khalid Ashraf, Song Han, William J. Dally, and Kurt", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 464, + 507, + 476 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 423, + 476 + ], + "score": 1.0, + "content": "Keutzer. Squeezenet: Alexnet-level accuracy with 50x fewer parameters and", + "type": "text" + }, + { + "bbox": [ + 424, + 464, + 458, + 474 + ], + "score": 0.85, + "content": "{ < } 0 . 5 \\mathrm { m b }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 464, + 507, + 476 + ], + "score": 1.0, + "content": "model size.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 237, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 237, + 485 + ], + "score": 1.0, + "content": "CoRR, abs/1602.07360, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 508 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 505, + 412, + 517 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 412, + 517 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Cong Leng, Hao Li, Shenghuo Zhu, and Rong Jin. Extremely low bit neural network: Squeeze the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 535, + 375, + 548 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 375, + 548 + ], + "score": 1.0, + "content": "last bit out with admm. arXiv preprint arXiv:1707.09870, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 507, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 507, + 569 + ], + "score": 1.0, + "content": "Fengfu Li, Bo Zhang, and Bin Liu. Ternary weight networks. arXiv preprint arXiv:1605.04711,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 564, + 143, + 579 + ], + "spans": [ + { + "bbox": [ + 114, + 564, + 143, + 579 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "Sachin Lin, Darryl smf Talathi and Sreekanth Annapureddy. Fixed point quantization of deep", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "convolutional networks. International Conference on Machine Learning (ICML), pp. 344–352,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 606, + 143, + 621 + ], + "spans": [ + { + "bbox": [ + 114, + 606, + 143, + 621 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "Xiaofan Lin, Cong Zhao, and Wei Pan. Towards accurate binary convolutional neural network.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 639, + 441, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 441, + 651 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems (NIPS), pp. 344–352, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 507, + 672 + ], + "score": 1.0, + "content": "Szymon Migacz. 8-bit inference with tensorrt. In NVIDIA GPU Technology Conference (GTC), 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Asit Mishra, Eriko Nurvitadhi, J Jeffrey Cook, and Debbie Marr. Wrpn: Wide reduced-precision", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 318, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 318, + 702 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:170901134, 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Mohammad Rastegariy, Vicente Ordonezy, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "classification using binary convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "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, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Yoojin Choi, Mostafa El-Khamy, and Jungwon Lee. Towards the limit of network quantization. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 264, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 264, + 123 + ], + "score": 1.0, + "content": "preprint arXiv:1612.01543v2, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 131, + 505, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 507, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 507, + 145 + ], + "score": 1.0, + "content": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. CoRR,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 210, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 210, + 154 + ], + "score": 1.0, + "content": "abs/1610.02357, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 130, + 507, + 154 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "score": 1.0, + "content": "Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 172, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 114, + 172, + 505, + 187 + ], + "score": 1.0, + "content": "networks with binary weights during propagations. Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 184, + 277, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 184, + 277, + 196 + ], + "score": 1.0, + "content": "Systems (NIPS), pp. 3123–3131, 2015a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 161, + 505, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 203, + 503, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "Matthieu Courbariaux, Jean-Pierre David, and Yoshua Bengio. Training deep neural networks with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 214, + 410, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 410, + 227 + ], + "score": 1.0, + "content": "low precision multiplications. arXiv preprint arXiv:1412.7024v4, 2015b.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 203, + 505, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "M. Everingham, S. M. A. Eslami, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 245, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 507, + 259 + ], + "score": 1.0, + "content": "pascal visual object classes challenge: A retrospective. International Journal of Computer Vision,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 256, + 238, + 269 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 238, + 269 + ], + "score": 1.0, + "content": "111(1):98–136, January 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 234, + 507, + 269 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 504, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "Philipp Gysel. Ristretto: Hardware-oriented approximation of convolutional neural networks. arXiv", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 288, + 254, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 254, + 299 + ], + "score": 1.0, + "content": "preprint arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 276, + 505, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 504, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "Song Han, Huizi Mao, and William J. Dally. Deep compression: Compressing deep neural networks", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 318, + 503, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 503, + 330 + ], + "score": 1.0, + "content": "with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 307, + 505, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 337, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 352 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 349, + 290, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 290, + 360 + ], + "score": 1.0, + "content": "recognition. CoRR, abs/1512.03385, 2015.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 336, + 505, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "Andrew G. Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 391, + 350, + 402 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 350, + 402 + ], + "score": 1.0, + "content": "mobile vision applications. CoRR, abs/1704.04861, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 368, + 506, + 402 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "score": 1.0, + "content": "Itay Hubara, Matthieu Courbariaux, Daniel Soudry, Ran El-Yaniv, and Yoshua Bengio. Quantized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "neural networks: Training neural networks with low precision weights and activations. arXiv", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 433, + 249, + 444 + ], + "spans": [ + { + "bbox": [ + 114, + 433, + 249, + 444 + ], + "score": 1.0, + "content": "preprint arXiv:609.07061, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 410, + 505, + 444 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 506, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "Forrest N. Iandola, Matthew W. Moskewicz, Khalid Ashraf, Song Han, William J. Dally, and Kurt", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 464, + 507, + 476 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 423, + 476 + ], + "score": 1.0, + "content": "Keutzer. Squeezenet: Alexnet-level accuracy with 50x fewer parameters and", + "type": "text" + }, + { + "bbox": [ + 424, + 464, + 458, + 474 + ], + "score": 0.85, + "content": "{ < } 0 . 5 \\mathrm { m b }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 464, + 507, + 476 + ], + "score": 1.0, + "content": "model size.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 237, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 237, + 485 + ], + "score": 1.0, + "content": "CoRR, abs/1602.07360, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 452, + 507, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 508 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 505, + 412, + 517 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 412, + 517 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 492, + 505, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Cong Leng, Hao Li, Shenghuo Zhu, and Rong Jin. Extremely low bit neural network: Squeeze the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 535, + 375, + 548 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 375, + 548 + ], + "score": 1.0, + "content": "last bit out with admm. arXiv preprint arXiv:1707.09870, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 525, + 505, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 507, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 507, + 569 + ], + "score": 1.0, + "content": "Fengfu Li, Bo Zhang, and Bin Liu. Ternary weight networks. arXiv preprint arXiv:1605.04711,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 564, + 143, + 579 + ], + "spans": [ + { + "bbox": [ + 114, + 564, + 143, + 579 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 554, + 507, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "Sachin Lin, Darryl smf Talathi and Sreekanth Annapureddy. Fixed point quantization of deep", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "convolutional networks. International Conference on Machine Learning (ICML), pp. 344–352,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 606, + 143, + 621 + ], + "spans": [ + { + "bbox": [ + 114, + 606, + 143, + 621 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 585, + 507, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "Xiaofan Lin, Cong Zhao, and Wei Pan. Towards accurate binary convolutional neural network.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 639, + 441, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 441, + 651 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems (NIPS), pp. 344–352, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 628, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 507, + 672 + ], + "score": 1.0, + "content": "Szymon Migacz. 8-bit inference with tensorrt. In NVIDIA GPU Technology Conference (GTC), 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 657, + 507, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Asit Mishra, Eriko Nurvitadhi, J Jeffrey Cook, and Debbie Marr. Wrpn: Wide reduced-precision", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 318, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 318, + 702 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:170901134, 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 677, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Mohammad Rastegariy, Vicente Ordonezy, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "classification using binary convolutional neural networks. arXiv preprint arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 709, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 507, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Joseph Redmon and Ali Farhadi. Yolo9000: Better, faster, stronger. arXiv preprint arXiv:1612.08242,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 142, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 142, + 106 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Richard J. Samworth. Optimal weighted nearest neighbour classifiers. arXiv preprint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 125, + 221, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 125, + 221, + 136 + ], + "score": 1.0, + "content": "arXiv:11015783v3, 2013.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Mark Sandler, Andrew G. Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 462, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 462, + 166 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. CoRR, abs/1801.04381, 2018.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 187 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 286, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 286, + 197 + ], + "score": 1.0, + "content": "recognition. CoRR, abs/1409.1556, 2014.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "score": 1.0, + "content": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott E. Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 224, + 233, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 224, + 233, + 237 + ], + "score": 1.0, + "content": "CoRR, abs/1409.4842, 2014.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 242, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 257 + ], + "score": 1.0, + "content": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, and Zbigniew Wojna. Re-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 254, + 463, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 463, + 268 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. CoRR, abs/1512.00567, 2015.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 287 + ], + "score": 1.0, + "content": "Christian Szegedy, Sergey Ioffe, and Vincent Vanhoucke. Inception-v4, inception-resnet and the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 284, + 414, + 297 + ], + "spans": [ + { + "bbox": [ + 115, + 284, + 414, + 297 + ], + "score": 1.0, + "content": "impact of residual connections on learning. CoRR, abs/1602.07261, 2016.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Saining Xie, Ross B. Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual ´", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 315, + 408, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 315, + 408, + 326 + ], + "score": 1.0, + "content": "transformations for deep neural networks. CoRR, abs/1611.05431, 2016.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "score": 1.0, + "content": "Shuchang Zhou, Yuxin Wu, Zekun Ni, Xinyu Zhou, He Wen, and Yuheng Zou. Dorefa-net: Train-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 114, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "ing low bitwidth convolutional neural networks with low bitwidth gradients. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 356, + 219, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 356, + 219, + 367 + ], + "score": 1.0, + "content": "arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "Bohan Zhuang, Chunhua Shen, Mingkui Tan, Lingqiao Liu, and Ian Reid. Towards effective", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 456, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 456, + 398 + ], + "score": 1.0, + "content": "lowbitwidth convolutional neural networks. arXiv preprint arXiv:1711.00205, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 10.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "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": [ + 105, + 82, + 507, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Joseph Redmon and Ali Farhadi. Yolo9000: Better, faster, stronger. arXiv preprint arXiv:1612.08242,", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 142, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 142, + 106 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Richard J. Samworth. Optimal weighted nearest neighbour classifiers. arXiv preprint", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 125, + 221, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 125, + 221, + 136 + ], + "score": 1.0, + "content": "arXiv:11015783v3, 2013.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Mark Sandler, Andrew G. Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 153, + 462, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 462, + 166 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. CoRR, abs/1801.04381, 2018.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 171, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 187 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 184, + 286, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 286, + 197 + ], + "score": 1.0, + "content": "recognition. CoRR, abs/1409.1556, 2014.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "score": 1.0, + "content": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott E. Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 224, + 233, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 224, + 233, + 237 + ], + "score": 1.0, + "content": "CoRR, abs/1409.4842, 2014.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 242, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 257 + ], + "score": 1.0, + "content": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, and Zbigniew Wojna. Re-", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 254, + 463, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 463, + 268 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. CoRR, abs/1512.00567, 2015.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 272, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 287 + ], + "score": 1.0, + "content": "Christian Szegedy, Sergey Ioffe, and Vincent Vanhoucke. Inception-v4, inception-resnet and the", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 284, + 414, + 297 + ], + "spans": [ + { + "bbox": [ + 115, + 284, + 414, + 297 + ], + "score": 1.0, + "content": "impact of residual connections on learning. CoRR, abs/1602.07261, 2016.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Saining Xie, Ross B. Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual ´", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 315, + 408, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 315, + 408, + 326 + ], + "score": 1.0, + "content": "transformations for deep neural networks. CoRR, abs/1611.05431, 2016.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "score": 1.0, + "content": "Shuchang Zhou, Yuxin Wu, Zekun Ni, Xinyu Zhou, He Wen, and Yuheng Zou. Dorefa-net: Train-", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 114, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "ing low bitwidth convolutional neural networks with low bitwidth gradients. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 356, + 219, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 356, + 219, + 367 + ], + "score": 1.0, + "content": "arXiv:1605.06402, 2016.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "Bohan Zhuang, Chunhua Shen, Mingkui Tan, Lingqiao Liu, and Ian Reid. Towards effective", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 385, + 456, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 456, + 398 + ], + "score": 1.0, + "content": "lowbitwidth convolutional neural networks. arXiv preprint arXiv:1711.00205, 2017.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 82, + 506, + 398 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_model.json b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..37995ebaa02d0d7ab3b5cfa643dd143d91f1c1f9 --- /dev/null +++ b/parse/train/HkzZBi0cFQ/HkzZBi0cFQ_model.json @@ -0,0 +1,10531 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1560, + 1404, + 1560, + 1404, + 1865, + 298, + 1865 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1099, + 1405, + 1099, + 1405, + 1345, + 298, + 1345 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 398, + 584, + 1303, + 584, + 1303, + 980, + 398, + 980 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1359, + 1404, + 1359, + 1404, + 1544, + 299, + 1544 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1399, + 219, + 1399, + 323, + 300, + 323 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 302, + 1032, + 573, + 1032, + 573, + 1067, + 302, + 1067 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 926, + 519, + 926, + 553, + 773, + 553 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.72 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 220.0, + 1405.0, + 220.0, + 1405.0, + 274.0, + 295.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 272.0, + 731.0, + 272.0, + 731.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1029.0, + 579.0, + 1029.0, + 579.0, + 1076.0, + 294.0, + 1076.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": [ + 294.0, + 1562.0, + 1408.0, + 1562.0, + 1408.0, + 1594.0, + 294.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1408.0, + 1588.0, + 1408.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1659.0, + 292.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1408.0, + 1652.0, + 1408.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1677.0, + 1409.0, + 1677.0, + 1409.0, + 1720.0, + 292.0, + 1720.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, + 1743.0, + 1405.0, + 1743.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": [ + 294.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1044.0, + 1834.0, + 1044.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1138.0, + 293.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1408.0, + 1131.0, + 1408.0, + 1166.0, + 293.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1221.0, + 1410.0, + 1221.0, + 1410.0, + 1260.0, + 291.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1251.0, + 1405.0, + 1251.0, + 1405.0, + 1287.0, + 293.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1283.0, + 1406.0, + 1283.0, + 1406.0, + 1318.0, + 292.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1315.0, + 1341.0, + 1315.0, + 1341.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 585.0, + 1305.0, + 585.0, + 1305.0, + 620.0, + 394.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 614.0, + 1307.0, + 614.0, + 1307.0, + 651.0, + 393.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 647.0, + 1305.0, + 647.0, + 1305.0, + 679.0, + 395.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 675.0, + 1305.0, + 675.0, + 1305.0, + 712.0, + 392.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 704.0, + 1309.0, + 704.0, + 1309.0, + 743.0, + 392.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 738.0, + 1306.0, + 738.0, + 1306.0, + 770.0, + 395.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 769.0, + 1307.0, + 769.0, + 1307.0, + 801.0, + 394.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 795.0, + 1307.0, + 795.0, + 1307.0, + 833.0, + 392.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 827.0, + 1306.0, + 827.0, + 1306.0, + 863.0, + 394.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 861.0, + 1305.0, + 861.0, + 1305.0, + 890.0, + 394.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 889.0, + 1304.0, + 889.0, + 1304.0, + 922.0, + 394.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 919.0, + 1304.0, + 919.0, + 1304.0, + 954.0, + 394.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 949.0, + 1069.0, + 949.0, + 1069.0, + 987.0, + 393.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1361.0, + 1405.0, + 1361.0, + 1405.0, + 1393.0, + 297.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1427.0, + 293.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1404.0, + 1420.0, + 1404.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1482.0, + 1404.0, + 1482.0, + 1404.0, + 1516.0, + 293.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1515.0, + 995.0, + 1515.0, + 995.0, + 1547.0, + 295.0, + 1547.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, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1946.0, + 297.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1406.0, + 2000.0, + 1406.0, + 2041.0, + 293.0, + 2041.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, + 729, + 1404, + 729, + 1404, + 1096, + 298, + 1096 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1499, + 1403, + 1499, + 1403, + 1805, + 298, + 1805 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 367, + 1405, + 367, + 1405, + 615, + 298, + 615 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1111, + 1403, + 1111, + 1403, + 1265, + 299, + 1265 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 353, + 299, + 353 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1360, + 1402, + 1360, + 1402, + 1483, + 299, + 1483 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 302, + 660, + 803, + 660, + 803, + 694, + 302, + 694 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 301, + 1303, + 742, + 1303, + 742, + 1334, + 301, + 1334 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 857, + 76, + 857, + 104, + 299, + 104 + ], + "score": 0.791 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.692 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.351 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 859, + 2089, + 859, + 2112, + 841, + 2112 + ], + "score": 0.177 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 656.0, + 810.0, + 656.0, + 810.0, + 703.0, + 292.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1301.0, + 747.0, + 1301.0, + 747.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 839.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 838.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 730.0, + 1405.0, + 730.0, + 1405.0, + 764.0, + 293.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 758.0, + 1408.0, + 758.0, + 1408.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 790.0, + 1406.0, + 790.0, + 1406.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1405.0, + 821.0, + 1405.0, + 855.0, + 294.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 850.0, + 1406.0, + 850.0, + 1406.0, + 888.0, + 293.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 881.0, + 1407.0, + 881.0, + 1407.0, + 917.0, + 292.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 1405.0, + 914.0, + 1405.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 978.0, + 293.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1009.0, + 292.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 1402.0, + 1002.0, + 1402.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1034.0, + 1404.0, + 1034.0, + 1404.0, + 1067.0, + 296.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1063.0, + 709.0, + 1063.0, + 709.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1590.0, + 1407.0, + 1590.0, + 1407.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1649.0, + 1408.0, + 1649.0, + 1408.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1407.0, + 1710.0, + 1407.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1407.0, + 1741.0, + 1407.0, + 1780.0, + 293.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1084.0, + 1774.0, + 1084.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 1405.0, + 369.0, + 1405.0, + 403.0, + 295.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 399.0, + 1407.0, + 399.0, + 1407.0, + 433.0, + 292.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1407.0, + 428.0, + 1407.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 1406.0, + 460.0, + 1406.0, + 496.0, + 292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1408.0, + 490.0, + 1408.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 522.0, + 1405.0, + 522.0, + 1405.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 550.0, + 1405.0, + 550.0, + 1405.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1020.0, + 580.0, + 1020.0, + 620.0, + 293.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1858.0, + 293.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1908.0, + 1408.0, + 1908.0, + 1408.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1407.0, + 1939.0, + 1407.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1113.0, + 1404.0, + 1113.0, + 1404.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 1404.0, + 1140.0, + 1404.0, + 1176.0, + 294.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1404.0, + 1173.0, + 1404.0, + 1207.0, + 295.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1403.0, + 1200.0, + 1403.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1230.0, + 1013.0, + 1230.0, + 1013.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 319.0, + 438.0, + 319.0, + 438.0, + 360.0, + 291.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1392.0, + 1406.0, + 1392.0, + 1406.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 1404.0, + 1420.0, + 1404.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 1249.0, + 1453.0, + 1249.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1468, + 1405, + 1468, + 1405, + 1744, + 298, + 1744 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 379, + 231, + 1324, + 231, + 1324, + 894, + 379, + 894 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 928, + 1405, + 928, + 1405, + 1326, + 297, + 1326 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1391, + 1400, + 1391, + 1400, + 1452, + 298, + 1452 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 302, + 1791, + 829, + 1791, + 829, + 1821, + 302, + 1821 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 103, + 300, + 103 + ], + "score": 0.753 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.581 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2112, + 842, + 2112 + ], + "score": 0.426 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.271 + }, + { + "category_id": 13, + "poly": [ + 298, + 1022, + 440, + 1022, + 440, + 1053, + 298, + 1053 + ], + "score": 0.88, + "latex": "( n + m + 1 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 996, + 317, + 996, + 317, + 1018, + 298, + 1018 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 555, + 996, + 582, + 996, + 582, + 1019, + 555, + 1019 + ], + "score": 0.67, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 838, + 962, + 911, + 962, + 911, + 992, + 838, + 992 + ], + "score": 0.42, + "latex": "\\mathbf { Q } n . m" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 240.0, + 826.0, + 240.0, + 826.0, + 269.0, + 715.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 241.0, + 1005.0, + 241.0, + 1005.0, + 269.0, + 904.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 262.0, + 1047.0, + 262.0, + 1047.0, + 268.0, + 1042.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 240.0, + 1139.0, + 240.0, + 1139.0, + 270.0, + 1091.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 260.0, + 1188.0, + 260.0, + 1188.0, + 270.0, + 1180.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 242.0, + 1271.0, + 242.0, + 1271.0, + 269.0, + 1222.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 272.0, + 803.0, + 272.0, + 803.0, + 301.0, + 747.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 272.0, + 990.0, + 272.0, + 990.0, + 301.0, + 926.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 272.0, + 1152.0, + 272.0, + 1152.0, + 301.0, + 1087.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 274.0, + 1274.0, + 274.0, + 1274.0, + 300.0, + 1219.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 318.0, + 757.0, + 318.0, + 757.0, + 344.0, + 705.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 321.0, + 797.0, + 321.0, + 797.0, + 346.0, + 776.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 331.0, + 831.0, + 331.0, + 831.0, + 340.0, + 823.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 326.0, + 891.0, + 326.0, + 891.0, + 357.0, + 843.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 309.0, + 986.0, + 309.0, + 986.0, + 335.0, + 926.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 315.0, + 1152.0, + 315.0, + 1152.0, + 340.0, + 1096.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 339.0, + 756.0, + 339.0, + 756.0, + 365.0, + 705.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 339.0, + 798.0, + 339.0, + 798.0, + 369.0, + 759.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 344.0, + 1277.0, + 344.0, + 1277.0, + 371.0, + 1225.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 438.0, + 424.0, + 438.0, + 424.0, + 465.0, + 381.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 356.0, + 678.0, + 356.0, + 678.0, + 408.0, + 566.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 400.0, + 757.0, + 400.0, + 757.0, + 445.0, + 705.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 401.0, + 801.0, + 401.0, + 801.0, + 451.0, + 758.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 408.0, + 891.0, + 408.0, + 891.0, + 438.0, + 843.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 427.0, + 986.0, + 427.0, + 986.0, + 453.0, + 926.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 366.0, + 1116.0, + 366.0, + 1116.0, + 443.0, + 1028.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 357.0, + 1212.0, + 357.0, + 1212.0, + 401.0, + 1150.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 370.0, + 1266.0, + 370.0, + 1266.0, + 417.0, + 1236.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 434.0, + 1308.0, + 434.0, + 1308.0, + 464.0, + 1274.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 478.0, + 436.0, + 478.0, + 436.0, + 542.0, + 410.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 469.0, + 514.0, + 469.0, + 514.0, + 540.0, + 454.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 504.0, + 757.0, + 504.0, + 757.0, + 551.0, + 705.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 507.0, + 797.0, + 507.0, + 797.0, + 531.0, + 775.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 482.0, + 1042.0, + 482.0, + 1042.0, + 543.0, + 843.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 496.0, + 1152.0, + 496.0, + 1152.0, + 525.0, + 1096.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 526.0, + 1278.0, + 526.0, + 1278.0, + 555.0, + 1223.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 565.0, + 447.0, + 565.0, + 447.0, + 627.0, + 382.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 590.0, + 513.0, + 590.0, + 513.0, + 623.0, + 453.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 553.0, + 698.0, + 553.0, + 698.0, + 628.0, + 540.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 583.0, + 800.0, + 583.0, + 800.0, + 635.0, + 703.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 594.0, + 890.0, + 594.0, + 890.0, + 621.0, + 844.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 595.0, + 989.0, + 595.0, + 989.0, + 624.0, + 931.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 549.0, + 1112.0, + 549.0, + 1112.0, + 628.0, + 1028.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 544.0, + 1213.0, + 544.0, + 1213.0, + 587.0, + 1150.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 551.0, + 1267.0, + 551.0, + 1267.0, + 603.0, + 1235.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 630.0, + 447.0, + 630.0, + 447.0, + 666.0, + 399.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 629.0, + 514.0, + 629.0, + 514.0, + 662.0, + 453.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 628.0, + 945.0, + 628.0, + 945.0, + 654.0, + 884.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 629.0, + 1042.0, + 629.0, + 1042.0, + 655.0, + 981.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 631.0, + 1309.0, + 631.0, + 1309.0, + 662.0, + 1274.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 688.0, + 757.0, + 688.0, + 757.0, + 734.0, + 705.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 690.0, + 803.0, + 690.0, + 803.0, + 738.0, + 758.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 697.0, + 890.0, + 697.0, + 890.0, + 724.0, + 844.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 683.0, + 986.0, + 683.0, + 986.0, + 712.0, + 924.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 679.0, + 1152.0, + 679.0, + 1152.0, + 708.0, + 1096.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 710.0, + 1277.0, + 710.0, + 1277.0, + 737.0, + 1225.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 734.0, + 687.0, + 734.0, + 687.0, + 765.0, + 559.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 734.0, + 1069.0, + 734.0, + 1069.0, + 758.0, + 1030.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 726.0, + 1213.0, + 726.0, + 1213.0, + 769.0, + 1149.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 736.0, + 1262.0, + 736.0, + 1262.0, + 759.0, + 1239.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 759.0, + 683.0, + 759.0, + 683.0, + 810.0, + 565.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 764.0, + 759.0, + 764.0, + 759.0, + 846.0, + 702.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 768.0, + 801.0, + 768.0, + 801.0, + 796.0, + 775.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 776.0, + 892.0, + 776.0, + 892.0, + 807.0, + 843.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 796.0, + 986.0, + 796.0, + 986.0, + 846.0, + 926.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 784.0, + 1221.0, + 784.0, + 1221.0, + 837.0, + 1044.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 757.0, + 1266.0, + 757.0, + 1266.0, + 784.0, + 1236.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 844.0, + 777.0, + 844.0, + 777.0, + 874.0, + 703.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 845.0, + 1003.0, + 845.0, + 1003.0, + 871.0, + 926.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 849.0, + 1305.0, + 849.0, + 1305.0, + 879.0, + 1274.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 528.0, + 795.0, + 528.0, + 795.0, + 552.0, + 758.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.75, + 585.0, + 819.75, + 585.0, + 819.75, + 616.0, + 774.75, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 789.5, + 797.0, + 789.5, + 797.0, + 816.5, + 758.0, + 816.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 965.0, + 294.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 837.0, + 960.0, + 837.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 960.0, + 1405.0, + 960.0, + 1405.0, + 996.0, + 912.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 297.0, + 991.0, + 297.0, + 1023.0, + 294.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 991.0, + 554.0, + 991.0, + 554.0, + 1023.0, + 318.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 991.0, + 1403.0, + 991.0, + 1403.0, + 1023.0, + 583.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 297.0, + 1021.0, + 297.0, + 1057.0, + 294.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1021.0, + 1406.0, + 1021.0, + 1406.0, + 1057.0, + 441.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1407.0, + 1052.0, + 1407.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1083.0, + 1405.0, + 1083.0, + 1405.0, + 1115.0, + 295.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1113.0, + 1403.0, + 1113.0, + 1403.0, + 1145.0, + 296.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1179.0, + 292.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 1408.0, + 1172.0, + 1408.0, + 1210.0, + 294.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1205.0, + 1406.0, + 1205.0, + 1406.0, + 1237.0, + 296.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1236.0, + 1403.0, + 1236.0, + 1403.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1262.0, + 1405.0, + 1262.0, + 1405.0, + 1303.0, + 292.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 945.0, + 1294.0, + 945.0, + 1331.0, + 295.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 833.0, + 1790.0, + 833.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 107.0, + 297.0, + 107.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": [ + 838.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1505.0, + 296.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1408.0, + 1589.0, + 1408.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1658.0, + 292.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1684.0, + 1405.0, + 1684.0, + 1405.0, + 1717.0, + 295.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 618.0, + 1712.0, + 618.0, + 1748.0, + 296.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1884.0, + 293.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1917.0, + 296.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1397.0, + 2003.0, + 1397.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 1404.0, + 1390.0, + 1404.0, + 1425.0, + 294.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1423.0, + 617.0, + 1423.0, + 617.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 340, + 1423, + 1359, + 1423, + 1359, + 1760, + 340, + 1760 + ], + "score": 0.965 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.909 + }, + { + "category_id": 4, + "poly": [ + 297, + 1796, + 1404, + 1796, + 1404, + 1861, + 297, + 1861 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.779 + }, + { + "category_id": 5, + "poly": [ + 298, + 396, + 1428, + 396, + 1428, + 1053, + 298, + 1053 + ], + "score": 0.494, + "html": "
Algorithm1 HW-friendly channel-wise quantization. Profiling dataset is a subset of training data set. fl stands for fractional length (flker: kernel fl, kernel and one input, flgdder: adder fl, flbias: bias fl, shiftj: layer output bit-wise shift amount).
Require: network architecture, network parameters,profiling dataset Ensure: flker,flbias, flifm, flofm,shift,quantized network parameters
1. Profile weights and activations Calculate statistics of weights and activations of each channel on profiling dataset 2.Calculate channel-wise fractional lengths
For each layer,
calculate fiker from statistics for each channel of kernels calculate flifm,flofm from statistics of activations for each channel
flpSum 'ji fiadder := min ( (frpsum) for each j
flbias := flgdder
fier←flger (fpsum-fbias) shiftj := flbias f1ofm 3. Quantize network parameters with flker, flbias
" + }, + { + "category_id": 13, + "poly": [ + 475, + 738, + 536, + 738, + 536, + 771, + 475, + 771 + ], + "score": 0.92, + "latex": "f l ^ { k e r }" + }, + { + "category_id": 13, + "poly": [ + 555, + 505, + 640, + 505, + 640, + 544, + 555, + 544 + ], + "score": 0.91, + "latex": "f l _ { j } ^ { a d d e r }" + }, + { + "category_id": 13, + "poly": [ + 369, + 844, + 673, + 844, + 673, + 896, + 369, + 896 + ], + "score": 0.9, + "latex": "f l _ { j } ^ { a d d e r } : = m i n \\left( f l _ { j i } ^ { p S u m } \\right)" + }, + { + "category_id": 13, + "poly": [ + 370, + 804, + 663, + 804, + 663, + 845, + 370, + 845 + ], + "score": 0.89, + "latex": "f l _ { j i } ^ { p S u m } : = f l _ { j i } ^ { k e r } + f l _ { i } ^ { i f m } ." + }, + { + "category_id": 13, + "poly": [ + 600, + 469, + 713, + 469, + 713, + 504, + 600, + 504 + ], + "score": 0.87, + "latex": "f l , f l ^ { o f m }" + }, + { + "category_id": 13, + "poly": [ + 845, + 437, + 873, + 437, + 873, + 469, + 845, + 469 + ], + "score": 0.85, + "latex": "f l" + }, + { + "category_id": 13, + "poly": [ + 314, + 469, + 385, + 469, + 385, + 504, + 314, + 504 + ], + "score": 0.81, + "latex": "f l ^ { i f m }" + }, + { + "category_id": 13, + "poly": [ + 369, + 929, + 789, + 929, + 789, + 981, + 369, + 981 + ], + "score": 0.81, + "latex": "f l _ { j i } ^ { k e r } \\gets f l _ { j i } ^ { \\bar { k } e r } - \\left( f l _ { j i } ^ { p S u m } - f l _ { j } ^ { b i a s } \\right)" + }, + { + "category_id": 13, + "poly": [ + 476, + 772, + 543, + 772, + 543, + 804, + 476, + 804 + ], + "score": 0.81, + "latex": "f l ^ { i f m }" + }, + { + "category_id": 13, + "poly": [ + 742, + 809, + 792, + 809, + 792, + 841, + 742, + 841 + ], + "score": 0.8, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 370, + 895, + 566, + 895, + 566, + 933, + 370, + 933 + ], + "score": 0.8, + "latex": "f l _ { j } ^ { b i a s } : = f l _ { j } ^ { a d d e r }" + }, + { + "category_id": 13, + "poly": [ + 896, + 508, + 1014, + 508, + 1014, + 541, + 896, + 541 + ], + "score": 0.77, + "latex": "f l , s h i f t _ { j }" + }, + { + "category_id": 13, + "poly": [ + 774, + 854, + 791, + 854, + 791, + 884, + 774, + 884 + ], + "score": 0.75, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 947, + 466, + 1111, + 466, + 1111, + 509, + 947, + 509 + ], + "score": 0.72, + "latex": "f l , f l _ { j i } ^ { p S u m } : f l" + }, + { + "category_id": 13, + "poly": [ + 556, + 771, + 628, + 771, + 628, + 804, + 556, + 804 + ], + "score": 0.71, + "latex": "f l ^ { o f m }" + }, + { + "category_id": 13, + "poly": [ + 1343, + 436, + 1371, + 436, + 1371, + 469, + 1343, + 469 + ], + "score": 0.7, + "latex": "f l" + }, + { + "category_id": 13, + "poly": [ + 1190, + 434, + 1256, + 434, + 1256, + 469, + 1190, + 469 + ], + "score": 0.69, + "latex": "f l ^ { k e r } ;" + }, + { + "category_id": 13, + "poly": [ + 904, + 1829, + 937, + 1829, + 937, + 1856, + 904, + 1856 + ], + "score": 0.68, + "latex": "l w" + }, + { + "category_id": 13, + "poly": [ + 370, + 979, + 661, + 979, + 661, + 1021, + 370, + 1021 + ], + "score": 0.66, + "latex": "s h i f t _ { j } : = f l _ { j } ^ { b i a s } - f l _ { j } ^ { o f m }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1804, + 1129, + 1804, + 1129, + 1825, + 1105, + 1825 + ], + "score": 0.65, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 762, + 504, + 833, + 504, + 833, + 544, + 762, + 544 + ], + "score": 0.64, + "latex": "f l _ { j } ^ { b i a s } { : }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 470, + 1111, + 470, + 1111, + 505, + 1082, + 505 + ], + "score": 0.64, + "latex": "f l" + }, + { + "category_id": 13, + "poly": [ + 413, + 582, + 803, + 582, + 803, + 618, + 413, + 618 + ], + "score": 0.6, + "latex": "f l ^ { k e r } , f l ^ { b i a s } , f l ^ { i f m } , f l ^ { o f m } , s h \\bar { i } f t" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1804, + 1055, + 1804, + 1055, + 1825, + 1036, + 1825 + ], + "score": 0.54, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 942, + 470, + 970, + 470, + 970, + 505, + 942, + 505 + ], + "score": 0.5, + "latex": "f l" + }, + { + "category_id": 13, + "poly": [ + 416, + 583, + 479, + 583, + 479, + 618, + 416, + 618 + ], + "score": 0.42, + "latex": "f l ^ { k e r }" + }, + { + "category_id": 13, + "poly": [ + 723, + 506, + 751, + 506, + 751, + 540, + 723, + 540 + ], + "score": 0.39, + "latex": "f l" + }, + { + "category_id": 13, + "poly": [ + 490, + 582, + 558, + 582, + 558, + 618, + 490, + 618 + ], + "score": 0.3, + "latex": "f l ^ { b i a s }" + }, + { + "category_id": 13, + "poly": [ + 760, + 1015, + 822, + 1015, + 822, + 1050, + 760, + 1050 + ], + "score": 0.27, + "latex": "f l ^ { k e r }" + }, + { + "category_id": 13, + "poly": [ + 896, + 507, + 924, + 507, + 924, + 539, + 896, + 539 + ], + "score": 0.26, + "latex": "f l" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1424.0, + 484.0, + 1424.0, + 484.0, + 1459.0, + 404.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1420.0, + 725.0, + 1420.0, + 725.0, + 1460.0, + 639.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1417.0, + 947.0, + 1417.0, + 947.0, + 1457.0, + 870.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1421.0, + 1205.0, + 1421.0, + 1205.0, + 1461.0, + 1122.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1465.0, + 543.0, + 1465.0, + 543.0, + 1503.0, + 340.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1470.0, + 637.0, + 1470.0, + 637.0, + 1505.0, + 573.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1463.0, + 752.0, + 1463.0, + 752.0, + 1505.0, + 664.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1465.0, + 862.0, + 1465.0, + 862.0, + 1502.0, + 802.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1463.0, + 975.0, + 1463.0, + 975.0, + 1500.0, + 884.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1471.0, + 1118.0, + 1471.0, + 1118.0, + 1503.0, + 1056.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1464.0, + 1232.0, + 1464.0, + 1232.0, + 1503.0, + 1143.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1507.0, + 474.0, + 1507.0, + 474.0, + 1518.0, + 463.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1508.0, + 712.0, + 1508.0, + 712.0, + 1516.0, + 703.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1502.0, + 942.0, + 1502.0, + 942.0, + 1519.0, + 919.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1507.0, + 1192.0, + 1507.0, + 1192.0, + 1516.0, + 1181.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1530.0, + 466.0, + 1530.0, + 466.0, + 1562.0, + 408.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1530.0, + 701.0, + 1530.0, + 701.0, + 1562.0, + 644.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1523.0, + 926.0, + 1523.0, + 926.0, + 1561.0, + 872.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1530.0, + 1183.0, + 1530.0, + 1183.0, + 1562.0, + 1126.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1568.0, + 543.0, + 1568.0, + 543.0, + 1604.0, + 395.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1565.0, + 782.0, + 1565.0, + 782.0, + 1605.0, + 632.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1566.0, + 1251.0, + 1566.0, + 1251.0, + 1604.0, + 1128.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1622.0, + 490.0, + 1622.0, + 490.0, + 1661.0, + 450.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1622.0, + 728.0, + 1622.0, + 728.0, + 1659.0, + 687.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1625.0, + 946.0, + 1625.0, + 946.0, + 1658.0, + 910.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1639.0, + 1081.0, + 1639.0, + 1081.0, + 1671.0, + 1023.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1639.0, + 1341.0, + 1639.0, + 1341.0, + 1671.0, + 1283.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1677.0, + 1354.0, + 1677.0, + 1354.0, + 1713.0, + 1019.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1725.0, + 1200.0, + 1725.0, + 1200.0, + 1762.0, + 1160.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.75, + 1566.0, + 970.75, + 1566.0, + 970.75, + 1600.0, + 886.75, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1796.0, + 1035.0, + 1796.0, + 1035.0, + 1832.0, + 296.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1796.0, + 1104.0, + 1796.0, + 1104.0, + 1832.0, + 1056.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1796.0, + 1405.0, + 1796.0, + 1405.0, + 1832.0, + 1130.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1827.0, + 903.0, + 1827.0, + 903.0, + 1863.0, + 295.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1827.0, + 1224.0, + 1827.0, + 1224.0, + 1863.0, + 938.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 837.0, + 2118.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1111, + 1404, + 1111, + 1404, + 1417, + 297, + 1417 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 1430, + 1405, + 1430, + 1405, + 1769, + 296, + 1769 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 940, + 1404, + 940, + 1404, + 1096, + 297, + 1096 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 505, + 226, + 1198, + 226, + 1198, + 732, + 505, + 732 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 538, + 1839, + 1131, + 1839, + 1131, + 1946, + 538, + 1946 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 296, + 769, + 1405, + 769, + 1405, + 862, + 296, + 862 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 2001, + 998, + 2001, + 998, + 2036, + 295, + 2036 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.746 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1878, + 1401, + 1878, + 1401, + 1909, + 1366, + 1909 + ], + "score": 0.514 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1879, + 1401, + 1879, + 1401, + 1909, + 1366, + 1909 + ], + "score": 0.478 + }, + { + "category_id": 14, + "poly": [ + 538, + 1838, + 1132, + 1838, + 1132, + 1949, + 538, + 1949 + ], + "score": 0.94, + "latex": "f ( x ) = { \\left\\{ \\begin{array} { l l } { { \\frac { \\sqrt { 2 } } { \\pi { \\gamma } \\left[ 1 + \\left( { \\frac { x - x _ { 0 } } { \\gamma } } \\right) ^ { 4 } \\right] } } , } & { { \\mathrm { i f } } - 1 5 < x - x _ { 0 } < 1 5 } \\\\ { 0 , \\quad { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 365, + 2007, + 396, + 2007, + 396, + 2034, + 365, + 2034 + ], + "score": 0.86, + "latex": "x _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 727, + 2010, + 746, + 2010, + 746, + 2035, + 727, + 2035 + ], + "score": 0.81, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 339, + 1358, + 360, + 1358, + 360, + 1383, + 339, + 1383 + ], + "score": 0.79, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 573, + 1117, + 593, + 1117, + 593, + 1139, + 573, + 1139 + ], + "score": 0.79, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 532, + 494, + 566, + 494, + 566, + 515, + 532, + 515 + ], + "score": 0.31, + "latex": "{ 1 0 ^ { - 3 } }" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 223.0, + 572.0, + 223.0, + 572.0, + 251.0, + 538.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 241.0, + 1117.0, + 241.0, + 1117.0, + 274.0, + 1015.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 268.0, + 1137.0, + 268.0, + 1137.0, + 301.0, + 1014.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 294.0, + 1183.0, + 294.0, + 1183.0, + 328.0, + 1014.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 310.0, + 573.0, + 310.0, + 573.0, + 340.0, + 526.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 329.0, + 883.0, + 329.0, + 883.0, + 360.0, + 869.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 340.0, + 866.0, + 340.0, + 866.0, + 442.0, + 844.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 342.0, + 914.0, + 342.0, + 914.0, + 373.0, + 901.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 398.0, + 576.0, + 398.0, + 576.0, + 431.0, + 528.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 439.0, + 532.0, + 439.0, + 532.0, + 487.0, + 504.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 489.0, + 531.0, + 489.0, + 531.0, + 522.0, + 526.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 489.0, + 575.0, + 489.0, + 575.0, + 522.0, + 567.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 579.0, + 573.0, + 579.0, + 573.0, + 608.0, + 525.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 669.0, + 597.0, + 669.0, + 597.0, + 710.0, + 528.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 680.0, + 674.0, + 680.0, + 674.0, + 711.0, + 633.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 681.0, + 750.0, + 681.0, + 750.0, + 711.0, + 709.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 681.0, + 822.0, + 681.0, + 822.0, + 710.0, + 792.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 684.0, + 894.0, + 684.0, + 894.0, + 708.0, + 874.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 683.0, + 970.0, + 683.0, + 970.0, + 708.0, + 952.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 681.0, + 1052.0, + 681.0, + 1052.0, + 711.0, + 1021.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 684.0, + 1124.0, + 684.0, + 1124.0, + 709.0, + 1099.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 685.0, + 1202.0, + 685.0, + 1202.0, + 709.0, + 1178.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 705.0, + 1013.0, + 705.0, + 1013.0, + 734.0, + 752.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 768.0, + 1406.0, + 768.0, + 1406.0, + 806.0, + 295.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 801.0, + 1408.0, + 801.0, + 1408.0, + 835.0, + 296.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 832.0, + 796.0, + 832.0, + 796.0, + 866.0, + 294.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.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": [ + 294.0, + 1110.0, + 572.0, + 1110.0, + 572.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1146.0, + 594.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 1407.0, + 1140.0, + 1407.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1211.0, + 291.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1201.0, + 1407.0, + 1201.0, + 1407.0, + 1239.0, + 292.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1234.0, + 1404.0, + 1234.0, + 1404.0, + 1265.0, + 296.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 1406.0, + 1261.0, + 1406.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1296.0, + 1404.0, + 1296.0, + 1404.0, + 1327.0, + 296.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 1404.0, + 1324.0, + 1404.0, + 1358.0, + 294.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1355.0, + 338.0, + 1355.0, + 338.0, + 1387.0, + 296.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1355.0, + 1404.0, + 1355.0, + 1404.0, + 1387.0, + 361.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1385.0, + 1348.0, + 1385.0, + 1348.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1432.0, + 1405.0, + 1432.0, + 1405.0, + 1467.0, + 295.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1462.0, + 1405.0, + 1462.0, + 1405.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1526.0, + 296.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1558.0, + 293.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1555.0, + 1406.0, + 1555.0, + 1406.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1619.0, + 293.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1651.0, + 294.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1642.0, + 1406.0, + 1642.0, + 1406.0, + 1683.0, + 291.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1673.0, + 1406.0, + 1673.0, + 1406.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1706.0, + 1406.0, + 1706.0, + 1406.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1737.0, + 534.0, + 1737.0, + 534.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 939.0, + 1404.0, + 939.0, + 1404.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 971.0, + 1404.0, + 971.0, + 1404.0, + 1007.0, + 294.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1005.0, + 1407.0, + 1005.0, + 1407.0, + 1038.0, + 296.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1026.0, + 1406.0, + 1026.0, + 1406.0, + 1074.0, + 292.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1367.0, + 1063.0, + 1367.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1997.0, + 364.0, + 1997.0, + 364.0, + 2042.0, + 293.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1997.0, + 726.0, + 1997.0, + 726.0, + 2042.0, + 397.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1997.0, + 1002.0, + 1997.0, + 1002.0, + 2042.0, + 747.0, + 2042.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 948, + 1404, + 948, + 1404, + 1376, + 298, + 1376 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 299, + 1559, + 1402, + 1559, + 1402, + 1803, + 299, + 1803 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 289, + 1404, + 289, + 1404, + 534, + 297, + 534 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 718, + 1403, + 718, + 1403, + 933, + 298, + 933 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1402, + 1819, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1391, + 1403, + 1391, + 1403, + 1545, + 298, + 1545 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 301, + 585, + 673, + 585, + 673, + 620, + 301, + 620 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 302, + 659, + 767, + 659, + 767, + 690, + 302, + 690 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 767, + 229, + 767, + 261, + 301, + 261 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.768 + }, + { + "category_id": 13, + "poly": [ + 715, + 473, + 770, + 473, + 770, + 502, + 715, + 502 + ], + "score": 0.89, + "latex": "83 \\%" + }, + { + "category_id": 13, + "poly": [ + 459, + 504, + 543, + 504, + 543, + 532, + 459, + 532 + ], + "score": 0.89, + "latex": "k = 1 2" + }, + { + "category_id": 13, + "poly": [ + 1299, + 1882, + 1372, + 1882, + 1372, + 1913, + 1299, + 1913 + ], + "score": 0.84, + "latex": "( \\romannumeral 1 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1487, + 1234, + 1487, + 1234, + 1510, + 1214, + 1510 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 585.0, + 677.0, + 585.0, + 677.0, + 625.0, + 293.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 772.0, + 658.0, + 772.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 774.0, + 227.0, + 774.0, + 267.0, + 294.0, + 267.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": [ + 292.0, + 948.0, + 1405.0, + 948.0, + 1405.0, + 982.0, + 292.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1405.0, + 980.0, + 1405.0, + 1012.0, + 294.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 1406.0, + 1010.0, + 1406.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1040.0, + 1406.0, + 1040.0, + 1406.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1072.0, + 1406.0, + 1072.0, + 1406.0, + 1104.0, + 294.0, + 1104.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": [ + 292.0, + 1128.0, + 1409.0, + 1128.0, + 1409.0, + 1170.0, + 292.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1162.0, + 1406.0, + 1162.0, + 1406.0, + 1196.0, + 293.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1228.0, + 293.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1404.0, + 1252.0, + 1404.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1281.0, + 1405.0, + 1281.0, + 1405.0, + 1318.0, + 293.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1406.0, + 1312.0, + 1406.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1345.0, + 748.0, + 1345.0, + 748.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 1404.0, + 1559.0, + 1404.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1655.0, + 295.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1406.0, + 1652.0, + 1406.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1747.0, + 295.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1744.0, + 1404.0, + 1744.0, + 1404.0, + 1774.0, + 294.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1770.0, + 398.0, + 1770.0, + 398.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1406.0, + 319.0, + 1406.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 384.0, + 294.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 410.0, + 1405.0, + 410.0, + 1405.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 439.0, + 1404.0, + 439.0, + 1404.0, + 480.0, + 292.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 471.0, + 714.0, + 471.0, + 714.0, + 507.0, + 294.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 471.0, + 1404.0, + 471.0, + 1404.0, + 507.0, + 771.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 458.0, + 504.0, + 458.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 504.0, + 759.0, + 504.0, + 759.0, + 537.0, + 544.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 753.0, + 296.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 748.0, + 1407.0, + 748.0, + 1407.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 776.0, + 1404.0, + 776.0, + 1404.0, + 818.0, + 292.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 808.0, + 1405.0, + 808.0, + 1405.0, + 846.0, + 293.0, + 846.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, + 872.0, + 1405.0, + 872.0, + 1405.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 898.0, + 691.0, + 898.0, + 691.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1298.0, + 1882.0, + 1298.0, + 1917.0, + 296.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1917.0, + 1373.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1420.0, + 1403.0, + 1420.0, + 1403.0, + 1453.0, + 296.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1483.0, + 1213.0, + 1483.0, + 1213.0, + 1514.0, + 293.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1514.0, + 1235.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1512.0, + 1299.0, + 1512.0, + 1299.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 463, + 1505, + 463, + 1505, + 901, + 295, + 901 + ], + "score": 0.983, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
GoogLeNet [1]68.93%0.23%0.23%0.13%0.15%0.08%0.05%
SqueezeNet [2]58.39%2.02%0.68%0.22%0.23%0.43%0.27%
MobileNet [3]69.50%5.48%4.02%1.17%0.66%0.66%0.73%
MobileNet2 [4]71.23%71.13%71.13%1.73%1.81%3.09%1.68 %
VGG16 [5]68.34%0.29%0.19%-0.01%-0.04%0.01%-0.06%
ResNet101-v2 [6]78.04%9.52%5.17%1.01%0.74%1.58%0.83%
ResNeXt50-32x4d [7]76.84%1.13%0.65%0.51%0.65%0.78%0.32%
Inception-v3 [8]77.97%0.99%0.66%0.23%0.09%0.18%0.24%
Inception-v4 [9]79.90%74.65%0.61%26.07%-0.06%0.07%0.13%
Incep.-ResNet-v2 [10]80.19%1.45%0.71%0.18%1.11%0.64%0.36%
Xception [11]78.72%54.72%0.57%1.11%0.60%0.48%0.33%
" + }, + { + "category_id": 6, + "poly": [ + 295, + 247, + 1406, + 247, + 1406, + 462, + 295, + 462 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1863, + 1405, + 1863, + 1405, + 1956, + 299, + 1956 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 419, + 991, + 1281, + 991, + 1281, + 1504, + 419, + 1504 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 297, + 1537, + 1404, + 1537, + 1404, + 1631, + 297, + 1631 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 298, + 1694, + 1399, + 1694, + 1399, + 1759, + 298, + 1759 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1401, + 1972, + 1401, + 2034, + 298, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 7, + "poly": [ + 297, + 904, + 1385, + 904, + 1385, + 950, + 297, + 950 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1803, + 603, + 1803, + 603, + 1835, + 300, + 1835 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.758 + }, + { + "category_id": 13, + "poly": [ + 1001, + 2003, + 1064, + 2003, + 1064, + 2033, + 1001, + 2033 + ], + "score": 0.86, + "latex": "2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 433, + 356, + 433, + 356, + 461, + 296, + 461 + ], + "score": 0.79, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 584, + 865, + 674, + 865, + 674, + 896, + 584, + 896 + ], + "score": 0.63, + "latex": "7 8 . 7 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 585, + 835, + 673, + 835, + 673, + 863, + 585, + 863 + ], + "score": 0.54, + "latex": "8 0 . 1 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 585, + 805, + 673, + 805, + 673, + 832, + 585, + 832 + ], + "score": 0.49, + "latex": "7 9 . 9 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1339, + 372, + 1397, + 372, + 1397, + 400, + 1339, + 400 + ], + "score": 0.36, + "latex": "P D F" + }, + { + "category_id": 13, + "poly": [ + 461, + 1012, + 523, + 1012, + 523, + 1037, + 461, + 1037 + ], + "score": 0.28, + "latex": "8 0 . 0 \\%" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 249.0, + 1404.0, + 249.0, + 1404.0, + 283.0, + 294.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 279.0, + 1404.0, + 279.0, + 1404.0, + 314.0, + 295.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 347.0, + 293.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 341.0, + 1404.0, + 341.0, + 1404.0, + 375.0, + 294.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 368.0, + 1338.0, + 368.0, + 1338.0, + 407.0, + 293.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 368.0, + 1409.0, + 368.0, + 1409.0, + 407.0, + 1398.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 402.0, + 1406.0, + 402.0, + 1406.0, + 437.0, + 293.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 431.0, + 612.0, + 431.0, + 612.0, + 469.0, + 357.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 981.0, + 1036.0, + 981.0, + 1036.0, + 1025.0, + 728.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1007.0, + 460.0, + 1007.0, + 460.0, + 1041.0, + 456.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1007.0, + 530.0, + 1007.0, + 530.0, + 1041.0, + 524.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1047.0, + 530.0, + 1047.0, + 530.0, + 1081.0, + 455.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1087.0, + 530.0, + 1087.0, + 530.0, + 1121.0, + 456.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1126.0, + 533.0, + 1126.0, + 533.0, + 1163.0, + 454.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1166.0, + 531.0, + 1166.0, + 531.0, + 1203.0, + 453.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1170.0, + 457.0, + 1170.0, + 457.0, + 1289.0, + 421.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1206.0, + 532.0, + 1206.0, + 532.0, + 1243.0, + 454.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1246.0, + 531.0, + 1246.0, + 531.0, + 1284.0, + 455.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1255.0, + 1223.0, + 1255.0, + 1223.0, + 1288.0, + 1136.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1288.0, + 530.0, + 1288.0, + 530.0, + 1322.0, + 456.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1304.0, + 1202.0, + 1304.0, + 1202.0, + 1338.0, + 1135.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1329.0, + 530.0, + 1329.0, + 530.0, + 1363.0, + 456.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1368.0, + 530.0, + 1368.0, + 530.0, + 1403.0, + 456.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1354.0, + 1225.0, + 1354.0, + 1225.0, + 1392.0, + 1135.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1410.0, + 529.0, + 1410.0, + 529.0, + 1441.0, + 457.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1443.0, + 549.0, + 1443.0, + 549.0, + 1471.0, + 527.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1440.0, + 796.0, + 1440.0, + 796.0, + 1472.0, + 759.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1439.0, + 1042.0, + 1439.0, + 1042.0, + 1472.0, + 992.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1439.0, + 1289.0, + 1439.0, + 1289.0, + 1473.0, + 1226.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1466.0, + 1079.0, + 1466.0, + 1079.0, + 1507.0, + 688.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 1406.0, + 1537.0, + 1406.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1603.0, + 296.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1600.0, + 722.0, + 1600.0, + 722.0, + 1634.0, + 296.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1389.0, + 902.0, + 1389.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1364.0, + 924.0, + 1364.0, + 952.0, + 294.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1800.0, + 608.0, + 1800.0, + 608.0, + 1840.0, + 294.0, + 1840.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, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1893.0, + 1409.0, + 1893.0, + 1409.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1918.0, + 380.0, + 1918.0, + 380.0, + 1964.0, + 291.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1690.0, + 1404.0, + 1690.0, + 1404.0, + 1737.0, + 292.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1723.0, + 676.0, + 1723.0, + 676.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1000.0, + 2003.0, + 1000.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2037.0, + 1065.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1559, + 1403, + 1559, + 1403, + 1805, + 298, + 1805 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 740, + 1405, + 740, + 1405, + 1137, + 297, + 1137 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1152, + 1404, + 1152, + 1404, + 1428, + 297, + 1428 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1404, + 1819, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 319, + 342, + 1382, + 342, + 1382, + 481, + 319, + 481 + ], + "score": 0.976, + "html": "
NetworkReference (Float32)Layer-wiseChannel-wise
MAXLaplaceMAXLaplaceS.CauchyPDF-aware
Y0L0-v272.64%2.50%2.25%0.14%0.22%0.70%0.38%
" + }, + { + "category_id": 6, + "poly": [ + 299, + 248, + 1402, + 248, + 1402, + 341, + 299, + 341 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 302, + 547, + 1403, + 547, + 1403, + 608, + 302, + 608 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 301, + 664, + 598, + 664, + 598, + 699, + 301, + 699 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 300, + 1483, + 543, + 1483, + 543, + 1518, + 300, + 1518 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.791 + }, + { + "category_id": 13, + "poly": [ + 695, + 1973, + 736, + 1973, + 736, + 2002, + 695, + 2002 + ], + "score": 0.85, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 511, + 311, + 572, + 311, + 572, + 340, + 511, + 340 + ], + "score": 0.85, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1825, + 1235, + 1825, + 1235, + 1848, + 1215, + 1848 + ], + "score": 0.77, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 249.0, + 1404.0, + 249.0, + 1404.0, + 282.0, + 294.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 276.0, + 1406.0, + 276.0, + 1406.0, + 317.0, + 292.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 311.0, + 510.0, + 311.0, + 510.0, + 345.0, + 295.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 311.0, + 814.0, + 311.0, + 814.0, + 345.0, + 573.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 661.0, + 603.0, + 661.0, + 603.0, + 705.0, + 293.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1479.0, + 549.0, + 1479.0, + 549.0, + 1527.0, + 292.0, + 1527.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": [ + 293.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1405.0, + 1588.0, + 1405.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1779.0, + 293.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1773.0, + 593.0, + 1773.0, + 593.0, + 1809.0, + 293.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 742.0, + 1405.0, + 742.0, + 1405.0, + 774.0, + 296.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1405.0, + 772.0, + 1405.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 800.0, + 1407.0, + 800.0, + 1407.0, + 838.0, + 292.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 832.0, + 1406.0, + 832.0, + 1406.0, + 866.0, + 292.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 862.0, + 1403.0, + 862.0, + 1403.0, + 898.0, + 294.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 893.0, + 1405.0, + 893.0, + 1405.0, + 928.0, + 294.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 923.0, + 1407.0, + 923.0, + 1407.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 954.0, + 1406.0, + 954.0, + 1406.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 983.0, + 1408.0, + 983.0, + 1408.0, + 1023.0, + 292.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1406.0, + 1012.0, + 1406.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1045.0, + 1407.0, + 1045.0, + 1407.0, + 1081.0, + 294.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1073.0, + 1408.0, + 1073.0, + 1408.0, + 1112.0, + 294.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1104.0, + 1034.0, + 1104.0, + 1034.0, + 1143.0, + 292.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1187.0, + 293.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1184.0, + 1404.0, + 1184.0, + 1404.0, + 1217.0, + 295.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1405.0, + 1213.0, + 1405.0, + 1250.0, + 294.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1243.0, + 1406.0, + 1243.0, + 1406.0, + 1280.0, + 292.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1274.0, + 1406.0, + 1274.0, + 1406.0, + 1312.0, + 292.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1345.0, + 292.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1336.0, + 1404.0, + 1336.0, + 1404.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1364.0, + 1406.0, + 1364.0, + 1406.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1398.0, + 1082.0, + 1398.0, + 1082.0, + 1431.0, + 296.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1214.0, + 1818.0, + 1214.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1857.0, + 1236.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1408.0, + 1849.0, + 1408.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 694.0, + 1971.0, + 694.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2006.0, + 737.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 521.0, + 2000.0, + 521.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 584.0, + 297.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 578.0, + 775.0, + 578.0, + 775.0, + 609.0, + 297.0, + 609.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 290, + 364, + 1404, + 364, + 1404, + 429, + 290, + 429 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 292, + 938, + 1404, + 938, + 1404, + 1003, + 292, + 1003 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 297, + 768, + 1402, + 768, + 1402, + 832, + 297, + 832 + ], + "score": 0.672 + }, + { + "category_id": 1, + "poly": [ + 297, + 280, + 1403, + 280, + 1403, + 342, + 297, + 342 + ], + "score": 0.665 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.659 + }, + { + "category_id": 1, + "poly": [ + 297, + 1023, + 1403, + 1023, + 1403, + 1119, + 297, + 1119 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 295, + 852, + 1402, + 852, + 1402, + 919, + 295, + 919 + ], + "score": 0.631 + }, + { + "category_id": 1, + "poly": [ + 298, + 1371, + 1402, + 1371, + 1402, + 1438, + 298, + 1438 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 298, + 1139, + 1404, + 1139, + 1404, + 1235, + 298, + 1235 + ], + "score": 0.611 + }, + { + "category_id": 1, + "poly": [ + 295, + 1542, + 1404, + 1542, + 1404, + 1607, + 295, + 1607 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 301, + 1628, + 1405, + 1628, + 1405, + 1723, + 301, + 1723 + ], + "score": 0.592 + }, + { + "category_id": 1, + "poly": [ + 298, + 1457, + 1400, + 1457, + 1400, + 1522, + 298, + 1522 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1402, + 1971, + 1402, + 2035, + 298, + 2035 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 294, + 565, + 1399, + 565, + 1399, + 631, + 294, + 631 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 293, + 1884, + 1403, + 1884, + 1403, + 1950, + 293, + 1950 + ], + "score": 0.554 + }, + { + "category_id": 1, + "poly": [ + 294, + 1744, + 1403, + 1744, + 1403, + 1810, + 294, + 1810 + ], + "score": 0.549 + }, + { + "category_id": 1, + "poly": [ + 296, + 1828, + 1404, + 1828, + 1404, + 1865, + 296, + 1865 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 298, + 449, + 1401, + 449, + 1401, + 545, + 298, + 545 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 293, + 650, + 1404, + 650, + 1404, + 747, + 293, + 747 + ], + "score": 0.507 + }, + { + "category_id": 1, + "poly": [ + 296, + 1254, + 1407, + 1254, + 1407, + 1351, + 296, + 1351 + ], + "score": 0.474 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.194 + }, + { + "category_id": 13, + "poly": [ + 1178, + 1289, + 1273, + 1289, + 1273, + 1319, + 1178, + 1319 + ], + "score": 0.85, + "latex": "{ < } 0 . 5 \\mathrm { m b }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.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": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 363.0, + 1410.0, + 363.0, + 1410.0, + 403.0, + 293.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 394.0, + 584.0, + 394.0, + 584.0, + 430.0, + 322.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 978.0, + 294.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 971.0, + 807.0, + 971.0, + 807.0, + 1001.0, + 321.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 768.0, + 1404.0, + 768.0, + 1404.0, + 804.0, + 295.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 800.0, + 707.0, + 800.0, + 707.0, + 831.0, + 320.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 279.0, + 1403.0, + 279.0, + 1403.0, + 315.0, + 297.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 311.0, + 734.0, + 311.0, + 734.0, + 343.0, + 320.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 1407.0, + 1023.0, + 1407.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1091.0, + 324.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1087.0, + 974.0, + 1087.0, + 974.0, + 1119.0, + 322.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 853.0, + 1404.0, + 853.0, + 1404.0, + 889.0, + 297.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 886.0, + 1398.0, + 886.0, + 1398.0, + 919.0, + 322.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 1404.0, + 1369.0, + 1404.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1403.0, + 1145.0, + 1403.0, + 1145.0, + 1438.0, + 321.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1140.0, + 1402.0, + 1140.0, + 1402.0, + 1175.0, + 296.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1207.0, + 322.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1204.0, + 694.0, + 1204.0, + 694.0, + 1236.0, + 319.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1541.0, + 1409.0, + 1541.0, + 1409.0, + 1581.0, + 293.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1568.0, + 398.0, + 1568.0, + 398.0, + 1611.0, + 318.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1668.0, + 294.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1658.0, + 1409.0, + 1658.0, + 1409.0, + 1696.0, + 321.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1685.0, + 398.0, + 1685.0, + 398.0, + 1726.0, + 319.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1495.0, + 296.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1487.0, + 1043.0, + 1487.0, + 1043.0, + 1523.0, + 322.0, + 1523.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": [ + 323.0, + 2003.0, + 1408.0, + 2003.0, + 1408.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 564.0, + 1403.0, + 564.0, + 1403.0, + 601.0, + 295.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 597.0, + 1141.0, + 597.0, + 1141.0, + 632.0, + 322.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1922.0, + 295.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1917.0, + 886.0, + 1917.0, + 886.0, + 1951.0, + 322.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1745.0, + 1408.0, + 1745.0, + 1408.0, + 1781.0, + 296.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1776.0, + 1225.0, + 1776.0, + 1225.0, + 1811.0, + 320.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 1410.0, + 1827.0, + 1410.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 1403.0, + 449.0, + 1403.0, + 486.0, + 294.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 480.0, + 1405.0, + 480.0, + 1405.0, + 520.0, + 319.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 513.0, + 771.0, + 513.0, + 771.0, + 547.0, + 323.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 650.0, + 1404.0, + 650.0, + 1404.0, + 687.0, + 293.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 682.0, + 1409.0, + 682.0, + 1409.0, + 721.0, + 322.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 713.0, + 662.0, + 713.0, + 662.0, + 748.0, + 322.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1289.0, + 1177.0, + 1289.0, + 1177.0, + 1323.0, + 323.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1289.0, + 1409.0, + 1289.0, + 1409.0, + 1323.0, + 1274.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1319.0, + 661.0, + 1319.0, + 661.0, + 1349.0, + 324.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 106, + 298, + 106 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1410, + 228, + 1410, + 1115, + 292, + 1115 + ], + "score": 0.767 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.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": [ + 293.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 396.0, + 260.0, + 396.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 310.0, + 1405.0, + 310.0, + 1405.0, + 353.0, + 293.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 348.0, + 616.0, + 348.0, + 616.0, + 380.0, + 324.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 394.0, + 1407.0, + 394.0, + 1407.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 427.0, + 1284.0, + 427.0, + 1284.0, + 463.0, + 323.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 1404.0, + 476.0, + 1404.0, + 521.0, + 293.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 512.0, + 795.0, + 512.0, + 795.0, + 548.0, + 321.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 560.0, + 1408.0, + 560.0, + 1408.0, + 602.0, + 294.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 593.0, + 1407.0, + 593.0, + 1407.0, + 632.0, + 321.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 623.0, + 649.0, + 623.0, + 649.0, + 661.0, + 323.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 674.0, + 1408.0, + 674.0, + 1408.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 708.0, + 1287.0, + 708.0, + 1287.0, + 745.0, + 321.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 791.0, + 1152.0, + 791.0, + 1152.0, + 827.0, + 322.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 841.0, + 1404.0, + 841.0, + 1404.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 876.0, + 1136.0, + 876.0, + 1136.0, + 908.0, + 324.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 923.0, + 1408.0, + 923.0, + 1408.0, + 965.0, + 293.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 954.0, + 1405.0, + 954.0, + 1405.0, + 995.0, + 319.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 989.0, + 609.0, + 989.0, + 609.0, + 1021.0, + 323.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 1403.0, + 1038.0, + 1403.0, + 1074.0, + 295.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1071.0, + 1267.0, + 1071.0, + 1267.0, + 1107.0, + 322.0, + 1107.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/dUk5Foj5CLf/dUk5Foj5CLf.md b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf.md new file mode 100644 index 0000000000000000000000000000000000000000..eb40ff8f5cf8798c77e8193600dce7f29e18a987 --- /dev/null +++ b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf.md @@ -0,0 +1,248 @@ +# CoAtNet: Marrying Convolution and Attention for All Data Sizes + +Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan Google Research, Brain Team {zihangd,hanxiaol,qvl,tanmingxing}@google.com + +# Abstract + +Transformers have attracted increasing interests in computer vision, but they still fall behind state-of-the-art convolutional networks. In this work, we show that while Transformers tend to have larger model capacity, their generalization can be worse than convolutional networks due to the lack of the right inductive bias. To effectively combine the strengths from both architectures, we present CoAtNets (pronounced “coat” nets), a family of hybrid models built from two key insights: (1) depthwise Convolution and self-Attention can be naturally unified via simple relative attention; (2) vertically stacking convolution layers and attention layers in a principled way is surprisingly effective in improving generalization, capacity and efficiency. Experiments show that our CoAtNets achieve state-of-the-art performance under different resource constraints across various datasets: Without extra data, CoAtNet achieves $8 6 . 0 \%$ ImageNet top-1 accuracy; When pre-trained with 13M images from ImageNet-21K, our CoAtNet achieves $8 8 . 5 6 \%$ top-1 accuracy, matching ViT-huge pre-trained with 300M images from JFT-300M while using $2 3 \mathrm { x }$ less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves $9 0 . 8 8 \%$ top-1 accuracy on ImageNet, establishing a new state-of-the-art result. + +# 1 Introduction + +Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of self-attention models like Transformers [6] in natural language processing [7, 8], many previous works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers, one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher capacity at scale than ConvNets. + +While ViT has shown impressive results with enormous JFT 300M training images, its performance still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training, the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA convolution-only models on ImageNet classification given the same amount of data and computation [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases possessed by ConvNets, and thus require significant amount of data and computational resource to compensate. Not surprisingly, many recent works have been trying to incorporate the inductive biases of ConvNets into Transformer models, by imposing local receptive fields for attention layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a particular property, lacking a systematic understanding of the respective roles of convolution and attention when combined. + +In this work, we systematically study the problem of hybridizing convolution and attention from two fundamental aspects in machine learning – generalization and model capacity. Our study shows that convolutional layers tend to have better generalization with faster converging speed thanks to their strong prior of inductive bias, while attention layers have higher model capacity that can benefit from larger datasets. Combining convolutional and attention layers can achieve better generalization and capacity; however, a key challenge here is how to effectively combine them to achieve better trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we observe that the commonly used depthwise convolution can be effectively merged into attention layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a proper way, could be surprisingly effective to achieve better generalization and capacity. Based on these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys the strengths from both ConvNets and Transformers. + +Our CoAtNet achieves SOTA performances under comparable resource constraints across different data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not only enjoys the superior scalability of Transformer models, but also achieves faster convergence and thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves $8 6 . 0 \%$ top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches $8 8 . 5 6 \%$ top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on JFT-300M, a $2 3 \times$ larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to $9 0 . 8 8 \%$ while using $1 . 5 \mathrm { x }$ less computation of the prior art set by ViT-G/14 [26]. + +# 2 Model + +In the section, we focus on the question of how to “optimally” combine the convolution and transformer. Roughly speaking, we decompose the question into two parts: + +1. How to combine the convolution and self-attention within one basic computational block? 2. How to vertically stack different types of computational blocks together to form a complete network? + +The rationale of the decomposition will become clearer as we gradually reveal our design choices. + +# 2.1 Merging Convolution and Self-Attention + +For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolution [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the channel size of the input by $4 \mathbf { x }$ and later project the the $4 \mathbf { x }$ -wide hidden state back to the original channel size to enable residual connection. + +Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive field + +$$ +y _ { i } = \sum _ { j \in \mathcal { L } ( i ) } w _ { i - j } \odot x _ { j } \quad \mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } , +$$ + +where $x _ { i } , y _ { i } \in \mathbb { R } ^ { D }$ are the input and output at position $i$ respectively, and $\mathcal { L } ( i )$ denotes a local neighborhood of $i$ , e.g., a 3x3 grid centered at $i$ in image processing. + +In comparison, self-attention allows the receptive field to be the entire spatial locations and computes the weights based on the re-normalized pairwise similarity between the pair $( x _ { i } , x _ { j } )$ : 2 + +$$ +y _ { i } = \sum _ { j \in \mathcal { G } } \underbrace { \frac { \exp { \left( x _ { i } ^ { \top } x _ { j } \right) } } { \sum _ { k \in \mathcal { G } } \exp { \left( x _ { i } ^ { \top } x _ { k } \right) } } } _ { A _ { i , j } } x _ { j } \quad \mathrm { ( s e l f - a t t e n t i o n ) } , +$$ + +where $\mathcal { G }$ indicates the global spatial space. Before getting into the question of how to best combine them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out the good properties we hope to retain. + +• First of all, the depthwise convolution kernel $w _ { i - j }$ is an input-independent parameter of static value, while the attention weight $A _ { i , j }$ dynamically depends on the representation of the input. Hence, it is much easier for the self-attention to capture complicated relational interactions between different spatial positions, a property that we desire most when processing high-level concepts. However, the flexibility comes with a risk of easier overfitting, especially when data is limited. • Secondly, notice that given any position pair $( i , j )$ , the corresponding convolution weight $w _ { i - j }$ only cares about the relative shift between them, i.e. $i - j$ , rather than the specific values of $i$ or $j$ . This property is often referred to translation equivalence, which has been found to improve generalization under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than Transformers when the dataset is not enormously large. • Finally, the size of the receptive field is one of the most crucial differences between self-attention and convolution. Generally speaking, a larger receptive field provides more contextual information, which could lead to higher model capacity. Hence, the global receptive field has been a key motivation to employ self-attention in vision. However, a large receptive field requires significantly more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size, which has been a fundamental trade-off in applying self-attention models. + +Table 1: Desirable properties found in convolution or self-attention. + +
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
+ +Given the comparison above, an ideal model should be able to combine the 3 desirable properties in Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a straightforward idea that could achieve this is simply to sum a global static convolution kernel with the adaptive attention matrix, either after or before the Softmax normalization, i.e., + +$$ +y _ { i } ^ { \mathrm { p o s t } } = \sum _ { j \in \mathcal { G } } \left( \frac { \exp \left( x _ { i } ^ { \top } x _ { j } \right) } { \sum _ { k \in \mathcal { G } } \exp \left( x _ { i } ^ { \top } x _ { k } \right) } + w _ { i - j } \right) x _ { j } \ \mathrm { ~ o r ~ } \ y _ { i } ^ { \mathrm { p e } } = \sum _ { j \in \mathcal { G } } \frac { \exp \left( x _ { i } ^ { \top } x _ { j } + w _ { i - j } \right) } { \sum _ { k \in \mathcal { G } } \exp \left( x _ { i } ^ { \top } x _ { k } + w _ { i - k } \right) } x _ { j } . +$$ + +Interestingly, while the idea seems overly simplified, the pre-normalization version $y ^ { \mathrm { p r e } }$ corresponds to a particular variant of relative self-attention [30, 31]. In this case, the attention weight $A _ { i , j }$ is decided jointly by the $w _ { i - j }$ of translation equivariance and the input-adaptive $x _ { i } ^ { \top } x _ { j }$ , which can enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable the global convolution kernel without blowing up the number of parameters, we have reloaded the notation of $w _ { i - j }$ as a scalar (i.e., $w \in \mathbb { R } ^ { O ( | \mathcal { G } | ) }$ ) rather than a vector in Eqn. (1). Another advantage of the scalar formulation of $w$ is that retrieving $w _ { i - j }$ for all $( i , j )$ is clearly subsumed by computing the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1). Given the benefits, we will use the Transformer block with the pre-normalization relative attention variant in Eqn. (3) as the key component of the proposed CoAtNet model. + +# 2.2 Vertical Layout Design + +After figuring out a neat way to combine convolution and attention, we next consider how to utilize it to stack an entire network. + +As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence, if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will be excessively slow due to the large number of pixels in any image of common sizes. Hence, to construct a network that is feasible in practice, we have mainly three options: + +(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention after the feature map reaches manageable level. +(B) Enforce local attention, which restricts the global receptive field $\mathcal { G }$ in attention to a local field $\mathcal { L }$ just like in convolution [22, 21]. +(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a linear complexity w.r.t. the spatial size [12, 32, 33]. + +We briefly experimented with option (C) without getting a reasonably good result. For option (B), we found that implementing local attention involves many non-trivial shape formatting operations that requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be extremely slow [34], which not only defeats the original purpose of speeding up global attention, but also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will focus on option (A) and compare our results with theirs in our empirical study (Section 4). + +For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets. With these choices, we derive a search space of 5 variants and compare them in controlled experiments. + +• When the ViT Stem is used, we directly stack $L$ Transformer blocks with relative attention, which we denote as $\mathrm { V I T } _ { \mathrm { R E L } }$ . +• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0, S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning of each stage, we always reduce the spatial size by $2 \mathbf { x }$ and increase the number of channels (see Appendix A.1 for the detailed down-sampling implementation). The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that convolution stages must appear before Transformer stages. The constraint is based on the prior that convolution is better at processing local patterns that are more common in early stages. This leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and C-T-T-T, where C and T denote Convolution and Transformer respectively. + +To systematically study the design choices, we consider two fundamental aspects generalization capability and model capacity: For generalization, we are interested in the gap between the training loss and the evaluation accuracy. If two models have the same training loss, then the model with higher evaluation accuracy has better generalization capability, since it can generalize better to unseen evaluation dataset. Generalization capability is particularly important to data efficiency when training data size is limited. For model capacity, we measure the ability to fit large training datasets. When training data is abundant and overfitting is not an issue, the model with higher capacity will achieve better final performance after reasonable training steps. Note that, since simply increasing the model size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model sizes of the 5 variants are comparable. + +To compare the generalization and model capacity, we train different variants of hybrid models on ImageNet-1K (1.3M) and JFT $\left( > 3 0 0 \mathbf { M } \right)$ dataset for 300 and 3 epochs respectively, both without any regularization or augmentation. The training loss and evaluation accuracy on both datasets are summarized in Figure 1. + +• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e., gap between train and evaluation metrics), we have + +$$ +\mathrm { C \mathrm { - } C \mathrm { - } C \mathrm { - } C \approx C \mathrm { - } C \mathrm { - } C \mathrm { - } T \ge C \mathrm { - } C \mathrm { - } T \mathrm { - } T > C \mathrm { - } T \mathrm { - } T \mathrm { - } T \gg V \mathrm { I } \mathrm { T } _ { \mathrm { R E L } } . } +$$ + +![](images/8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg) +Figure 1: Comparison for model generalization and capacity under different data size. For fair comparison, all models have similar parameter size and computational cost. + +Particularly, $\mathrm { V I T } _ { \mathrm { R E L } }$ is significantly worse than variants by a large margin, which we conjecture is related to the lack of proper low-level information processing in its aggressive down-sampling Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the model has, the smaller the generalization gap is. + +• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end of the training suggest the following ranking: + +$$ +\mathrm { C - C \mathrm { - } T \mathrm { - } T \approx C \mathrm { - } T \mathrm { - } T \mathrm { - } T > V I T _ { R E L } > C \mathrm { - } C \mathrm { - } C \mathrm { - } T > C \mathrm { - } C \mathrm { - } C \mathrm { - } C \mathrm { - } C \mathrm { . } } +$$ + +Importantly, this suggests that simply having more Transformer blocks does NOT necessarily mean higher capacity for visual processing. On one hand, while initially worse, $\mathrm { V I T } _ { \mathrm { R E L } }$ ultimately catch up with the two variants with more MBConv stages, indicating the capacity advantage of Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming $\mathrm { V I T } _ { \mathrm { R E L } }$ suggest that the ViT stem with an aggressive stride may have lost too much information and hence limit the model capacity. More interestingly, the fact that C-C-T-T $\approx \mathbf { C }$ -T-T-T indicates the for processing low-level information, static local operations like convolution could be as capable as adaptive global attention mechanism, while saving computation and memory usage substantially. + +Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer accuracy than C-T-T-T, despite the same pre-training performance. + +Table 2: Transferability test results. + +
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
+ +Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1. + +# 3 Related Work + +Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dominating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28] are popular in mobile platforms due to its lower computational cost and smaller parameter size [27]. Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this paper mostly employs MBConv as convolution building blocks. + +Self-attention and Transformers. With the key ingredients of self-attention, Transformers have been widely adopted for neural language processing and speech understanding. As an early work, stand-alone self-attention network [34] shows self-attention alone can work well for different vision tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited. Following that, many recent works have been focused on improving vision Transformers for data efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer readers to the dedicated surveys [36, 37]. + +Relative attention. Under the general name of relative attention, there have been various variants in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories: (a) the input-dependent version where the extra relative attention score is a function of the input states $f ( \bar { x } _ { i } , x _ { j } , \bar { i } - j )$ , and (b) the input-independent version $f ( i - j )$ . The variant in CoAtNet belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we neither share the relative attention parameters across layers nor use the bucketing mechanism. As a benefit of the input independence, obtaining $f ( i - j )$ for all $( i , j )$ pairs is computationally much cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be computed once and cached for future use. A recent work [22] also utilizes such an input-independent parameterization, but it restricts the receptive field to a local window. + +Combining convolution and self-attention. The idea of combining convolution and self-attention for vision recognition is not new. A common approach is to augment the ConvNet backbone with explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While self-attention usually improves the accuracy, they often come with extra computational cost and hence are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44]. + +While our work also belongs to this category, we show that our relative attention instantiation is a natural mixture of depthwise convolution and content-based attention with minimum additional cost. More importantly, starting from the perspectives of generalization and model capacity, we take a systematic approach to the vertical layout design and show how and why different network stages prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage (S2) when the overall size increases. On the other hand, compared to models employing local attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity, as S3 occupies the majority of the computation and parameters. + +# 4 Experiments + +In this section, we compare CoAtNet with previous results under comparable settings. For completeness, all the hyper-parameters not mentioned here are included in Appendix A.2. + +# 4.1 Experiment Setting + +CoAtNet model family. To compare with existing models of different sizes, we also design a family of CoAtNet models as summarized in Table 3. Overall, we always double the number of channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1. Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in S2 and S3. + +Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90 and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training. Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence, finetuning is always employed whenever input resolution changes. + +Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is always 4 and the expansion (shrink) rate for the SE is always 0.25. + +
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
+ +Data Augmentation & Regularization. In this work, we only consider two widely used data augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively, the specific hyper-parameters of the augmentation and regularization methods depend on model size and data scale, where strong regularization is usually applied for larger models and smaller dataset. + +Under the general principle, a complication under the current paradigm is how to adjust the regularization for pre-training and finetuning as data size can change. Specifically, we have an interesting observation that if a certain type of augmentation is entirely disabled during pre-training, simply turning it on during fine-tuning would most likely harm the performance rather than improving. We conjecture this could be related to data distribution shift. As a result, for certain runs of the proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can harm the pre-training metrics, this allows more versatile regularization and augmentation during finetuning, leading to improved down-stream performances. + +# 4.2 Main Results + +![](images/cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg) +Figure 2: Accuracy-to-FLOPs scaling curve under ImageNet-1K only setting at $2 2 4 \mathbf { x } 2 2 4$ . + +![](images/f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg) +Figure 3: Accuracy-to-Params scaling curve under ImageNet- $2 1 \mathrm { K } \Rightarrow$ ImageNet-1K setting. + +ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4. Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we also visualize the all results at resolution $2 2 4 \mathbf { x } 2 2 4$ in Fig. 2. As we can see, CoAtNet scales much better than previous model with attention modules. + +Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only; $2 1 \mathtt { K } + 1 \mathtt { K }$ denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is longer than the standard 90 epochs. More results are in Appendix A.3. + +
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
+ +ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pretraining, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous models. Notably, the best CoAtNet variant achieves a top-1 accuracy of $8 8 . 5 6 \%$ , matching the ViTH/14 performance of $8 8 . 5 5 \%$ , which requires pre-training the $2 . 3 \mathbf { x }$ larger ViT model on a $2 3 \mathrm { x }$ larger proprietary weakly labeled dataset (JFT) for $2 . 2 \mathbf { x }$ more steps. This marks a dramatic improvement in both data efficiency and computation efficiency. + +JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance with JFT-300M set by NFNet- $\mathrm { F 4 + }$ , while being $2 \mathbf { x }$ more efficient in terms of both TPU training time and parameter count. When we scale up the model to consume similar training resource as NFNet- $. \mathrm { F 4 + }$ , CoAtNet-5 reaches $8 9 . 7 7 \%$ on top-1 accuracy, outperforming previous results under comparable settings. + +Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the same JFT-3B dataset of an even larger size [26], with over $4 \mathbf { x }$ less computation, CoAtNet-6 is able to match the performance of $\mathrm { V i T - G } / 1 4$ of $9 0 . 4 5 \%$ , and with $1 . 5 \mathrm { x }$ less computation, CoAtNet-7 achieves $8 9 . 7 7 \%$ on top-1 accuracy $9 0 . 8 8 \%$ , achieving the new state-of-the-art performance. + +Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pretraining time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2 for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2 Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26]. + +
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
+ +# 4.3 Ablation Studies + +In this section, we will ablate our design choices for CoAtNet. + +Firstly, we study the importance of the relative attention from combining convolution and attention into a single computation unit. Specifically, we compare two models, one with the relative attention and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer setting, the relative attention variant achieves a substantially better transfer accuracy, despite their very close pre-training performances. This suggests the main advantage of relative attention in visual processing is not in higher capacity but in better generalization. + +Table 6: Ablation on relative attention. + +
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
+ +Table 7: Ablation on architecture layout. + +
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
+ +Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv) and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose, we compare a few different layouts that we experimented with in Table 7. + +Table 8: Ablation on head size and normalization type. + +
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
+ +• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to generalize well. + +• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher capacity is often regarded more important, we further compare V0 and V1 under the ImageNet21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind V0. Again, this suggests the importance of convolution in achieving good transferability and generalization. + +Lastly, we study two choices of model details, namely the dimension of each attention (default to 32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same performance, while BatchNorm is $10 - 2 0 \%$ faster on TPU depending on the per-core batch size. + +# 5 Conclusion + +In this paper, we systematically study the properties of convolutions and Transformers, which leads to a principled way to combine them into a new family of models named CoAtNet. Extensive experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model capacity like Transformers, achieving state-of-the-art performances under different data sizes and computation budgets. + +Note that this paper currently focuses on ImageNet classification for model development. However, we believe our approach is applicable to broader applications like object detection and semantic segmentation. We will leave them for future work. + +# References + +[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pages 1097–1105, 2012. +[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In ICLR, 2015. +[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. +[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9, 2015. +[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural networks. ICML, 2019. +[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762, 2017. +[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. +[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. +[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7794–7803, 2018. +[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3286–3295, 2019. +[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605, 2021. +[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention: Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 3531–3539, 2021. +[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. +[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A largescale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. +[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable effectiveness of data in deep learning era. In Proceedings of the IEEE international conference on computer vision, pages 843–852, 2017. +[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv preprint arXiv:2012.12877, 2020. +[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. +[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021. +[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021. +[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance largescale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021. +[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv preprint arXiv:2103.12731, 2021. +[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint arXiv:2103.14030, 2021. +[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021. +[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou, and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv preprint arXiv:2104.01136, 2021. +[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. +[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transformers. arXiv preprint arXiv:2106.04560, 2021. +[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4510–4520, 2018. +[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014. +[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020. +[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. arXiv preprint arXiv:1803.02155, 2018. +[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019. +[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In International Conference on Machine Learning, pages 5156–5165. PMLR, 2020. +[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking attention with performers. arXiv preprint arXiv:2009.14794, 2020. +[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909, 2019. +[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828, 2019. +[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint arXiv:2012.12556, 2020. +[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan, and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021. +[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer. arXiv preprint arXiv:1809.04281, 2018. +[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860, 2019. +[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via the lens of kernel. arXiv preprint arXiv:1908.11775, 2019. +[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv preprint arXiv:2102.08602, 2021. +[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018. +[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021. +[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction without convolutions. arXiv preprint arXiv:2102.12122, 2021. +[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020. +[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. +[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016. +[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2818–2826, 2016. +[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. +[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European conference on computer vision, pages 630–645. Springer, 2016. +[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. +[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236, 2020. \ No newline at end of file diff --git a/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_content_list.json b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..f733772f0dbe2279236643d34cb3f1f5101bd143 --- /dev/null +++ b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_content_list.json @@ -0,0 +1,1045 @@ +[ + { + "type": "text", + "text": "CoAtNet: Marrying Convolution and Attention for All Data Sizes ", + "text_level": 1, + "bbox": [ + 214, + 122, + 785, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan Google Research, Brain Team {zihangd,hanxiaol,qvl,tanmingxing}@google.com ", + "bbox": [ + 307, + 220, + 691, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 299, + 535, + 315 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Transformers have attracted increasing interests in computer vision, but they still fall behind state-of-the-art convolutional networks. In this work, we show that while Transformers tend to have larger model capacity, their generalization can be worse than convolutional networks due to the lack of the right inductive bias. To effectively combine the strengths from both architectures, we present CoAtNets (pronounced “coat” nets), a family of hybrid models built from two key insights: (1) depthwise Convolution and self-Attention can be naturally unified via simple relative attention; (2) vertically stacking convolution layers and attention layers in a principled way is surprisingly effective in improving generalization, capacity and efficiency. Experiments show that our CoAtNets achieve state-of-the-art performance under different resource constraints across various datasets: Without extra data, CoAtNet achieves $8 6 . 0 \\%$ ImageNet top-1 accuracy; When pre-trained with 13M images from ImageNet-21K, our CoAtNet achieves $8 8 . 5 6 \\%$ top-1 accuracy, matching ViT-huge pre-trained with 300M images from JFT-300M while using $2 3 \\mathrm { x }$ less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves $9 0 . 8 8 \\%$ top-1 accuracy on ImageNet, establishing a new state-of-the-art result. ", + "bbox": [ + 233, + 332, + 766, + 551 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 176, + 575, + 310, + 593 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of self-attention models like Transformers [6] in natural language processing [7, 8], many previous works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers, one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher capacity at scale than ConvNets. ", + "bbox": [ + 174, + 607, + 825, + 732 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "While ViT has shown impressive results with enormous JFT 300M training images, its performance still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training, the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA convolution-only models on ImageNet classification given the same amount of data and computation [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases possessed by ConvNets, and thus require significant amount of data and computational resource to compensate. Not surprisingly, many recent works have been trying to incorporate the inductive biases of ConvNets into Transformer models, by imposing local receptive fields for attention layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a particular property, lacking a systematic understanding of the respective roles of convolution and attention when combined. ", + "bbox": [ + 174, + 738, + 826, + 877 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 147 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we systematically study the problem of hybridizing convolution and attention from two fundamental aspects in machine learning – generalization and model capacity. Our study shows that convolutional layers tend to have better generalization with faster converging speed thanks to their strong prior of inductive bias, while attention layers have higher model capacity that can benefit from larger datasets. Combining convolutional and attention layers can achieve better generalization and capacity; however, a key challenge here is how to effectively combine them to achieve better trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we observe that the commonly used depthwise convolution can be effectively merged into attention layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a proper way, could be surprisingly effective to achieve better generalization and capacity. Based on these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys the strengths from both ConvNets and Transformers. ", + "bbox": [ + 174, + 154, + 825, + 319 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not only enjoys the superior scalability of Transformer models, but also achieves faster convergence and thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves $8 6 . 0 \\%$ top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches $8 8 . 5 6 \\%$ top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on JFT-300M, a $2 3 \\times$ larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to $9 0 . 8 8 \\%$ while using $1 . 5 \\mathrm { x }$ less computation of the prior art set by ViT-G/14 [26]. ", + "bbox": [ + 173, + 325, + 825, + 478 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Model ", + "text_level": 1, + "bbox": [ + 174, + 505, + 259, + 521 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the section, we focus on the question of how to “optimally” combine the convolution and transformer. Roughly speaking, we decompose the question into two parts: ", + "bbox": [ + 173, + 540, + 823, + 569 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. How to combine the convolution and self-attention within one basic computational block? 2. How to vertically stack different types of computational blocks together to form a complete network? ", + "bbox": [ + 200, + 574, + 825, + 622 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The rationale of the decomposition will become clearer as we gradually reveal our design choices. ", + "bbox": [ + 169, + 628, + 816, + 645 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 Merging Convolution and Self-Attention ", + "text_level": 1, + "bbox": [ + 176, + 667, + 493, + 683 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolution [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the channel size of the input by $4 \\mathbf { x }$ and later project the the $4 \\mathbf { x }$ -wide hidden state back to the original channel size to enable residual connection. ", + "bbox": [ + 173, + 695, + 825, + 765 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive field ", + "bbox": [ + 173, + 771, + 825, + 827 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg", + "text": "$$\ny _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 333, + 832, + 661, + 868 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }$ are the input and output at position $i$ respectively, and $\\mathcal { L } ( i )$ denotes a local neighborhood of $i$ , e.g., a 3x3 grid centered at $i$ in image processing. ", + "bbox": [ + 174, + 882, + 823, + 912 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes the weights based on the re-normalized pairwise similarity between the pair $( x _ { i } , x _ { j } )$ : 2 ", + "bbox": [ + 169, + 90, + 823, + 119 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg", + "text": "$$\ny _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 333, + 128, + 663, + 188 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { G }$ indicates the global spatial space. Before getting into the question of how to best combine them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out the good properties we hope to retain. ", + "bbox": [ + 174, + 195, + 825, + 238 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• First of all, the depthwise convolution kernel $w _ { i - j }$ is an input-independent parameter of static value, while the attention weight $A _ { i , j }$ dynamically depends on the representation of the input. Hence, it is much easier for the self-attention to capture complicated relational interactions between different spatial positions, a property that we desire most when processing high-level concepts. However, the flexibility comes with a risk of easier overfitting, especially when data is limited. • Secondly, notice that given any position pair $( i , j )$ , the corresponding convolution weight $w _ { i - j }$ only cares about the relative shift between them, i.e. $i - j$ , rather than the specific values of $i$ or $j$ . This property is often referred to translation equivalence, which has been found to improve generalization under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than Transformers when the dataset is not enormously large. • Finally, the size of the receptive field is one of the most crucial differences between self-attention and convolution. Generally speaking, a larger receptive field provides more contextual information, which could lead to higher model capacity. Hence, the global receptive field has been a key motivation to employ self-attention in vision. However, a large receptive field requires significantly more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size, which has been a fundamental trade-off in applying self-attention models. ", + "bbox": [ + 173, + 242, + 826, + 486 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg", + "table_caption": [ + "Table 1: Desirable properties found in convolution or self-attention. " + ], + "table_footnote": [], + "table_body": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "bbox": [ + 285, + 525, + 702, + 595 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a straightforward idea that could achieve this is simply to sum a global static convolution kernel with the adaptive attention matrix, either after or before the Softmax normalization, i.e., ", + "bbox": [ + 178, + 612, + 821, + 667 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg", + "text": "$$\ny _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 676, + 800, + 720 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Interestingly, while the idea seems overly simplified, the pre-normalization version $y ^ { \\mathrm { p r e } }$ corresponds to a particular variant of relative self-attention [30, 31]. In this case, the attention weight $A _ { i , j }$ is decided jointly by the $w _ { i - j }$ of translation equivariance and the input-adaptive $x _ { i } ^ { \\top } x _ { j }$ , which can enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable the global convolution kernel without blowing up the number of parameters, we have reloaded the notation of $w _ { i - j }$ as a scalar (i.e., $w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }$ ) rather than a vector in Eqn. (1). Another advantage of the scalar formulation of $w$ is that retrieving $w _ { i - j }$ for all $( i , j )$ is clearly subsumed by computing the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1). Given the benefits, we will use the Transformer block with the pre-normalization relative attention variant in Eqn. (3) as the key component of the proposed CoAtNet model. ", + "bbox": [ + 173, + 728, + 825, + 871 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 Vertical Layout Design ", + "text_level": 1, + "bbox": [ + 174, + 92, + 372, + 106 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it to stack an entire network. ", + "bbox": [ + 173, + 118, + 823, + 146 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence, if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will be excessively slow due to the large number of pixels in any image of common sizes. Hence, to construct a network that is feasible in practice, we have mainly three options: ", + "bbox": [ + 173, + 152, + 825, + 209 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention after the feature map reaches manageable level. \n(B) Enforce local attention, which restricts the global receptive field $\\mathcal { G }$ in attention to a local field $\\mathcal { L }$ just like in convolution [22, 21]. \n(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a linear complexity w.r.t. the spatial size [12, 32, 33]. ", + "bbox": [ + 176, + 215, + 825, + 309 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we found that implementing local attention involves many non-trivial shape formatting operations that requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be extremely slow [34], which not only defeats the original purpose of speeding up global attention, but also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will focus on option (A) and compare our results with theirs in our empirical study (Section 4). ", + "bbox": [ + 173, + 315, + 825, + 398 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets. With these choices, we derive a search space of 5 variants and compare them in controlled experiments. ", + "bbox": [ + 174, + 404, + 823, + 446 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• When the ViT Stem is used, we directly stack $L$ Transformer blocks with relative attention, which we denote as $\\mathrm { V I T } _ { \\mathrm { R E L } }$ . \n• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0, S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning of each stage, we always reduce the spatial size by $2 \\mathbf { x }$ and increase the number of channels (see Appendix A.1 for the detailed down-sampling implementation). The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that convolution stages must appear before Transformer stages. The constraint is based on the prior that convolution is better at processing local patterns that are more common in early stages. This leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and C-T-T-T, where C and T denote Convolution and Transformer respectively. ", + "bbox": [ + 171, + 453, + 825, + 642 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To systematically study the design choices, we consider two fundamental aspects generalization capability and model capacity: For generalization, we are interested in the gap between the training loss and the evaluation accuracy. If two models have the same training loss, then the model with higher evaluation accuracy has better generalization capability, since it can generalize better to unseen evaluation dataset. Generalization capability is particularly important to data efficiency when training data size is limited. For model capacity, we measure the ability to fit large training datasets. When training data is abundant and overfitting is not an issue, the model with higher capacity will achieve better final performance after reasonable training steps. Note that, since simply increasing the model size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model sizes of the 5 variants are comparable. ", + "bbox": [ + 173, + 648, + 825, + 787 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To compare the generalization and model capacity, we train different variants of hybrid models on ImageNet-1K (1.3M) and JFT $\\left( > 3 0 0 \\mathbf { M } \\right)$ dataset for 300 and 3 epochs respectively, both without any regularization or augmentation. The training loss and evaluation accuracy on both datasets are summarized in Figure 1. ", + "bbox": [ + 174, + 792, + 825, + 849 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e., gap between train and evaluation metrics), we have ", + "bbox": [ + 169, + 854, + 825, + 883 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg", + "text": "$$\n\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }\n$$", + "text_format": "latex", + "bbox": [ + 305, + 896, + 702, + 912 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg", + "image_caption": [ + "Figure 1: Comparison for model generalization and capacity under different data size. For fair comparison, all models have similar parameter size and computational cost. " + ], + "image_footnote": [], + "bbox": [ + 178, + 90, + 820, + 234 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Particularly, $\\mathrm { V I T } _ { \\mathrm { R E L } }$ is significantly worse than variants by a large margin, which we conjecture is related to the lack of proper low-level information processing in its aggressive down-sampling Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the model has, the smaller the generalization gap is. ", + "bbox": [ + 186, + 297, + 825, + 354 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end of the training suggest the following ranking: ", + "bbox": [ + 176, + 356, + 823, + 385 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg", + "text": "$$\n\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }\n$$", + "text_format": "latex", + "bbox": [ + 307, + 391, + 702, + 407 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily mean higher capacity for visual processing. On one hand, while initially worse, $\\mathrm { V I T } _ { \\mathrm { R E L } }$ ultimately catch up with the two variants with more MBConv stages, indicating the capacity advantage of Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming $\\mathrm { V I T } _ { \\mathrm { R E L } }$ suggest that the ViT stem with an aggressive stride may have lost too much information and hence limit the model capacity. More interestingly, the fact that C-C-T-T $\\approx \\mathbf { C }$ -T-T-T indicates the for processing low-level information, static local operations like convolution could be as capable as adaptive global attention mechanism, while saving computation and memory usage substantially. ", + "bbox": [ + 186, + 415, + 825, + 526 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer accuracy than C-T-T-T, despite the same pre-training performance. ", + "bbox": [ + 176, + 531, + 825, + 588 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg", + "table_caption": [ + "Table 2: Transferability test results. " + ], + "table_footnote": [], + "table_body": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "bbox": [ + 300, + 612, + 692, + 683 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1. ", + "bbox": [ + 173, + 696, + 825, + 726 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 744, + 321, + 762 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dominating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28] are popular in mobile platforms due to its lower computational cost and smaller parameter size [27]. Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this paper mostly employs MBConv as convolution building blocks. ", + "bbox": [ + 173, + 775, + 826, + 887 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have been widely adopted for neural language processing and speech understanding. As an early work, stand-alone self-attention network [34] shows self-attention alone can work well for different vision tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited. Following that, many recent works have been focused on improving vision Transformers for data efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer readers to the dedicated surveys [36, 37]. ", + "bbox": [ + 174, + 90, + 825, + 215 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Relative attention. Under the general name of relative attention, there have been various variants in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories: (a) the input-dependent version where the extra relative attention score is a function of the input states $f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )$ , and (b) the input-independent version $f ( i - j )$ . The variant in CoAtNet belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we neither share the relative attention parameters across layers nor use the bucketing mechanism. As a benefit of the input independence, obtaining $f ( i - j )$ for all $( i , j )$ pairs is computationally much cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be computed once and cached for future use. A recent work [22] also utilizes such an input-independent parameterization, but it restricts the receptive field to a local window. ", + "bbox": [ + 173, + 229, + 825, + 368 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Combining convolution and self-attention. The idea of combining convolution and self-attention for vision recognition is not new. A common approach is to augment the ConvNet backbone with explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While self-attention usually improves the accuracy, they often come with extra computational cost and hence are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44]. ", + "bbox": [ + 174, + 382, + 825, + 507 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "While our work also belongs to this category, we show that our relative attention instantiation is a natural mixture of depthwise convolution and content-based attention with minimum additional cost. More importantly, starting from the perspectives of generalization and model capacity, we take a systematic approach to the vertical layout design and show how and why different network stages prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage (S2) when the overall size increases. On the other hand, compared to models employing local attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity, as S3 occupies the majority of the computation and parameters. ", + "bbox": [ + 174, + 513, + 825, + 638 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 657, + 312, + 674 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section, we compare CoAtNet with previous results under comparable settings. For completeness, all the hyper-parameters not mentioned here are included in Appendix A.2. ", + "bbox": [ + 174, + 688, + 823, + 717 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 Experiment Setting ", + "text_level": 1, + "bbox": [ + 174, + 732, + 348, + 747 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "CoAtNet model family. To compare with existing models of different sizes, we also design a family of CoAtNet models as summarized in Table 3. Overall, we always double the number of channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1. Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in S2 and S3. ", + "bbox": [ + 174, + 757, + 825, + 827 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90 and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training. Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence, finetuning is always employed whenever input resolution changes. ", + "bbox": [ + 174, + 842, + 823, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg", + "table_caption": [ + "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is always 4 and the expansion (shrink) rate for the SE is always 0.25. " + ], + "table_footnote": [], + "table_body": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "bbox": [ + 173, + 154, + 826, + 244 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 261, + 826, + 332 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Data Augmentation & Regularization. In this work, we only consider two widely used data augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively, the specific hyper-parameters of the augmentation and regularization methods depend on model size and data scale, where strong regularization is usually applied for larger models and smaller dataset. ", + "bbox": [ + 174, + 347, + 825, + 416 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Under the general principle, a complication under the current paradigm is how to adjust the regularization for pre-training and finetuning as data size can change. Specifically, we have an interesting observation that if a certain type of augmentation is entirely disabled during pre-training, simply turning it on during fine-tuning would most likely harm the performance rather than improving. We conjecture this could be related to data distribution shift. As a result, for certain runs of the proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can harm the pre-training metrics, this allows more versatile regularization and augmentation during finetuning, leading to improved down-stream performances. ", + "bbox": [ + 173, + 422, + 826, + 547 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 Main Results ", + "text_level": 1, + "bbox": [ + 174, + 565, + 305, + 579 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg", + "image_caption": [ + "Figure 2: Accuracy-to-FLOPs scaling curve under ImageNet-1K only setting at $2 2 4 \\mathbf { x } 2 2 4$ . " + ], + "image_footnote": [], + "bbox": [ + 179, + 601, + 478, + 785 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg", + "image_caption": [ + "Figure 3: Accuracy-to-Params scaling curve under ImageNet- $2 1 \\mathrm { K } \\Rightarrow$ ImageNet-1K setting. " + ], + "image_footnote": [], + "bbox": [ + 513, + 602, + 813, + 785 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4. Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we also visualize the all results at resolution $2 2 4 \\mathbf { x } 2 2 4$ in Fig. 2. As we can see, CoAtNet scales much better than previous model with attention modules. ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg", + "table_caption": [ + "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only; $2 1 \\mathtt { K } + 1 \\mathtt { K }$ denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is longer than the standard 90 epochs. More results are in Appendix A.3. " + ], + "table_footnote": [], + "table_body": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "bbox": [ + 171, + 140, + 843, + 645 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pretraining, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous models. Notably, the best CoAtNet variant achieves a top-1 accuracy of $8 8 . 5 6 \\%$ , matching the ViTH/14 performance of $8 8 . 5 5 \\%$ , which requires pre-training the $2 . 3 \\mathbf { x }$ larger ViT model on a $2 3 \\mathrm { x }$ larger proprietary weakly labeled dataset (JFT) for $2 . 2 \\mathbf { x }$ more steps. This marks a dramatic improvement in both data efficiency and computation efficiency. ", + "bbox": [ + 174, + 681, + 826, + 766 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance with JFT-300M set by NFNet- $\\mathrm { F 4 + }$ , while being $2 \\mathbf { x }$ more efficient in terms of both TPU training time and parameter count. When we scale up the model to consume similar training resource as NFNet- $. \\mathrm { F 4 + }$ , CoAtNet-5 reaches $8 9 . 7 7 \\%$ on top-1 accuracy, outperforming previous results under comparable settings. ", + "bbox": [ + 174, + 792, + 825, + 877 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the same JFT-3B dataset of an even larger size [26], with over $4 \\mathbf { x }$ less computation, CoAtNet-6 is able to match the performance of $\\mathrm { V i T - G } / 1 4$ of $9 0 . 4 5 \\%$ , and with $1 . 5 \\mathrm { x }$ less computation, CoAtNet-7 achieves $8 9 . 7 7 \\%$ on top-1 accuracy $9 0 . 8 8 \\%$ , achieving the new state-of-the-art performance. ", + "bbox": [ + 174, + 883, + 821, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg", + "table_caption": [ + "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pretraining time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2 for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2 Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26]. " + ], + "table_footnote": [], + "table_body": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "bbox": [ + 173, + 156, + 834, + 358 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 372, + 823, + 401 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.3 Ablation Studies ", + "text_level": 1, + "bbox": [ + 174, + 416, + 328, + 431 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this section, we will ablate our design choices for CoAtNet. ", + "bbox": [ + 174, + 441, + 581, + 457 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Firstly, we study the importance of the relative attention from combining convolution and attention into a single computation unit. Specifically, we compare two models, one with the relative attention and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer setting, the relative attention variant achieves a substantially better transfer accuracy, despite their very close pre-training performances. This suggests the main advantage of relative attention in visual processing is not in higher capacity but in better generalization. ", + "bbox": [ + 173, + 462, + 825, + 574 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg", + "table_caption": [ + "Table 6: Ablation on relative attention. " + ], + "table_footnote": [], + "table_body": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "bbox": [ + 192, + 597, + 800, + 691 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg", + "table_caption": [ + "Table 7: Ablation on architecture layout. " + ], + "table_footnote": [], + "table_body": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "bbox": [ + 227, + 723, + 766, + 828 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv) and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose, we compare a few different layouts that we experimented with in Table 7. ", + "bbox": [ + 174, + 842, + 826, + 911 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg", + "table_caption": [ + "Table 8: Ablation on head size and normalization type. " + ], + "table_footnote": [], + "table_body": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "bbox": [ + 225, + 99, + 767, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to generalize well. ", + "bbox": [ + 174, + 233, + 823, + 289 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher capacity is often regarded more important, we further compare V0 and V1 under the ImageNet21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind V0. Again, this suggests the importance of convolution in achieving good transferability and generalization. ", + "bbox": [ + 173, + 291, + 825, + 373 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lastly, we study two choices of model details, namely the dimension of each attention (default to 32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same performance, while BatchNorm is $10 - 2 0 \\%$ faster on TPU depending on the per-core batch size. ", + "bbox": [ + 174, + 381, + 825, + 463 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 483, + 299, + 500 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we systematically study the properties of convolutions and Transformers, which leads to a principled way to combine them into a new family of models named CoAtNet. Extensive experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model capacity like Transformers, achieving state-of-the-art performances under different data sizes and computation budgets. ", + "bbox": [ + 174, + 513, + 825, + 583 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Note that this paper currently focuses on ImageNet classification for model development. However, we believe our approach is applicable to broader applications like object detection and semantic segmentation. We will leave them for future work. ", + "bbox": [ + 174, + 590, + 823, + 632 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 90, + 266, + 106 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pages 1097–1105, 2012. \n[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In ICLR, 2015. \n[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. \n[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9, 2015. \n[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural networks. ICML, 2019. \n[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762, 2017. \n[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. \n[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. \n[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7794–7803, 2018. \n[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3286–3295, 2019. \n[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605, 2021. \n[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention: Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 3531–3539, 2021. \n[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. \n[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A largescale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. \n[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable effectiveness of data in deep learning era. In Proceedings of the IEEE international conference on computer vision, pages 843–852, 2017. \n[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv preprint arXiv:2012.12877, 2020. \n[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. \n[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021. \n[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021. \n[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance largescale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021. \n[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv preprint arXiv:2103.12731, 2021. \n[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint arXiv:2103.14030, 2021. \n[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021. \n[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou, and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv preprint arXiv:2104.01136, 2021. \n[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. \n[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transformers. arXiv preprint arXiv:2106.04560, 2021. \n[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4510–4520, 2018. \n[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014. \n[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020. \n[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. arXiv preprint arXiv:1803.02155, 2018. \n[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019. \n[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In International Conference on Machine Learning, pages 5156–5165. PMLR, 2020. \n[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking attention with performers. arXiv preprint arXiv:2009.14794, 2020. \n[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909, 2019. \n[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828, 2019. \n[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint arXiv:2012.12556, 2020. \n[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan, and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021. \n[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer. arXiv preprint arXiv:1809.04281, 2018. \n[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860, 2019. \n[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via the lens of kernel. arXiv preprint arXiv:1908.11775, 2019. \n[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv preprint arXiv:2102.08602, 2021. \n[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018. \n[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021. \n[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction without convolutions. arXiv preprint arXiv:2102.12122, 2021. \n[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020. \n[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. \n[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016. \n[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2818–2826, 2016. \n[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. \n[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European conference on computer vision, pages 630–645. Springer, 2016. \n[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. \n[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236, 2020. ", + "bbox": [ + 173, + 119, + 828, + 914 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 45, + 828, + 917 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 85, + 828, + 631 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_middle.json b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..51d5279beb3e5c8999caab23ac9f5b763016dec9 --- /dev/null +++ b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_middle.json @@ -0,0 +1,30612 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 131, + 97, + 481, + 136 + ], + "lines": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "spans": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "score": 1.0, + "content": "CoAtNet: Marrying Convolution and Attention", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "spans": [ + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "score": 1.0, + "content": "for All Data Sizes", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 188, + 175, + 423, + 209 + ], + "lines": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "spans": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "score": 1.0, + "content": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "spans": [ + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "spans": [ + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "score": 1.0, + "content": "{zihangd,hanxiaol,qvl,tanmingxing}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 283, + 237, + 328, + 250 + ], + "lines": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "spans": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 263, + 469, + 437 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "score": 1.0, + "content": "Transformers have attracted increasing interests in computer vision, but they still", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "fall behind state-of-the-art convolutional networks. In this work, we show that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "score": 1.0, + "content": "while Transformers tend to have larger model capacity, their generalization can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "worse than convolutional networks due to the lack of the right inductive bias. To", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "effectively combine the strengths from both architectures, we present CoAtNets", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "(pronounced “coat” nets), a family of hybrid models built from two key insights:", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "score": 1.0, + "content": "(1) depthwise Convolution and self-Attention can be naturally unified via simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "relative attention; (2) vertically stacking convolution layers and attention layers in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "a principled way is surprisingly effective in improving generalization, capacity and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "efficiency. Experiments show that our CoAtNets achieve state-of-the-art perfor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "score": 1.0, + "content": "mance under different resource constraints across various datasets: Without extra", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 382, + 469, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 240, + 395 + ], + "score": 1.0, + "content": "data, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 240, + 383, + 267, + 393 + ], + "score": 0.87, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 382, + 469, + 395 + ], + "score": 1.0, + "content": "ImageNet top-1 accuracy; When pre-trained with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 373, + 406 + ], + "score": 1.0, + "content": "13M images from ImageNet-21K, our CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 406, + 404 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "top-1 accuracy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "score": 1.0, + "content": "matching ViT-huge pre-trained with 300M images from JFT-300M while using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 415, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 142, + 415, + 159, + 425 + ], + "score": 0.7, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 415, + 470, + 427 + ], + "score": 1.0, + "content": "less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 426, + 458, + 438 + ], + "spans": [ + { + "bbox": [ + 142, + 426, + 174, + 437 + ], + "score": 0.85, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 426, + 458, + 438 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet, establishing a new state-of-the-art result.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 190, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "self-attention models like Transformers [6] in natural language processing [7, 8], many previous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "score": 1.0, + "content": "capacity at scale than ConvNets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "While ViT has shown impressive results with enormous JFT 300M training images, its performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "score": 1.0, + "content": "still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "convolution-only models on ImageNet classification given the same amount of data and computa-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "tion [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "possessed by ConvNets, and thus require significant amount of data and computational resource", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "to compensate. Not surprisingly, many recent works have been trying to incorporate the induc-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "tive biases of ConvNets into Transformer models, by imposing local receptive fields for attention", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 703, + 453, + 714 + ], + "lines": [ + { + "bbox": [ + 120, + 700, + 456, + 717 + ], + "spans": [ + { + "bbox": [ + 120, + 700, + 456, + 717 + ], + "score": 1.0, + "content": "1 The initial projection stage can be seen as an aggressive down-sampling convolutional stem.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 131, + 97, + 481, + 136 + ], + "lines": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "spans": [ + { + "bbox": [ + 129, + 96, + 482, + 118 + ], + "score": 1.0, + "content": "CoAtNet: Marrying Convolution and Attention", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "spans": [ + { + "bbox": [ + 238, + 116, + 372, + 137 + ], + "score": 1.0, + "content": "for All Data Sizes", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 188, + 175, + 423, + 209 + ], + "lines": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "spans": [ + { + "bbox": [ + 192, + 176, + 418, + 189 + ], + "score": 1.0, + "content": "Zihang Dai, Hanxiao Liu, Quoc V. Le, Mingxing Tan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "spans": [ + { + "bbox": [ + 244, + 187, + 367, + 199 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "spans": [ + { + "bbox": [ + 187, + 199, + 425, + 211 + ], + "score": 1.0, + "content": "{zihangd,hanxiaol,qvl,tanmingxing}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 187, + 176, + 425, + 211 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 237, + 328, + 250 + ], + "lines": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "spans": [ + { + "bbox": [ + 282, + 237, + 330, + 251 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 263, + 469, + 437 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 275 + ], + "score": 1.0, + "content": "Transformers have attracted increasing interests in computer vision, but they still", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "fall behind state-of-the-art convolutional networks. In this work, we show that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 470, + 296 + ], + "score": 1.0, + "content": "while Transformers tend to have larger model capacity, their generalization can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "worse than convolutional networks due to the lack of the right inductive bias. To", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 319 + ], + "score": 1.0, + "content": "effectively combine the strengths from both architectures, we present CoAtNets", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 470, + 329 + ], + "score": 1.0, + "content": "(pronounced “coat” nets), a family of hybrid models built from two key insights:", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 340 + ], + "score": 1.0, + "content": "(1) depthwise Convolution and self-Attention can be naturally unified via simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "relative attention; (2) vertically stacking convolution layers and attention layers in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "a principled way is surprisingly effective in improving generalization, capacity and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "efficiency. Experiments show that our CoAtNets achieve state-of-the-art perfor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 384 + ], + "score": 1.0, + "content": "mance under different resource constraints across various datasets: Without extra", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 382, + 469, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 240, + 395 + ], + "score": 1.0, + "content": "data, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 240, + 383, + 267, + 393 + ], + "score": 0.87, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 382, + 469, + 395 + ], + "score": 1.0, + "content": "ImageNet top-1 accuracy; When pre-trained with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 373, + 406 + ], + "score": 1.0, + "content": "13M images from ImageNet-21K, our CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 373, + 393, + 406, + 404 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "top-1 accuracy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 417 + ], + "score": 1.0, + "content": "matching ViT-huge pre-trained with 300M images from JFT-300M while using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 415, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 142, + 415, + 159, + 425 + ], + "score": 0.7, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 415, + 470, + 427 + ], + "score": 1.0, + "content": "less data; Notably, when we further scale up CoAtNet with JFT-3B, it achieves", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 426, + 458, + 438 + ], + "spans": [ + { + "bbox": [ + 142, + 426, + 174, + 437 + ], + "score": 0.85, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 426, + 458, + 438 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet, establishing a new state-of-the-art result.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5, + "bbox_fs": [ + 141, + 262, + 470, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 190, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 192, + 473 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "Since the breakthrough of AlexNet [1], Convolutional Neural Networks (ConvNets) have been the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "dominating model architecture for computer vision [2, 3, 4, 5]. Meanwhile, with the success of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "self-attention models like Transformers [6] in natural language processing [7, 8], many previous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "works have attempted to bring in the power of attention into computer vision [9, 10, 11, 12]. More", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "recently, Vision Transformer (ViT) [13] has shown that with almost1 only vanilla Transformer layers,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "one could obtain reasonable performance on ImageNet-1K [14] alone. More importantly, when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "pre-trained on large-scale weakly labeled JFT-300M dataset [15], ViT achieves comparable results", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "to state-of-the-art (SOTA) ConvNets, indicating that Transformer models potentially have higher", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 238, + 581 + ], + "score": 1.0, + "content": "capacity at scale than ConvNets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 482, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "While ViT has shown impressive results with enormous JFT 300M training images, its performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 610 + ], + "score": 1.0, + "content": "still falls behind ConvNets in the low data regime. For example, without extra JFT-300M pre-training,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "the ImageNet accuracy of ViT is still significantly lower than ConvNets with comparable model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "size [5] (see Table 13). Subsequent works use special regularization and stronger data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "to improve the vanilla ViT [16, 17, 18], yet none of these ViT variants could outperform the SOTA", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "convolution-only models on ImageNet classification given the same amount of data and computa-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "tion [19, 20]. This suggests that vanilla Transformer layers may lack certain desirable inductive biases", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "possessed by ConvNets, and thus require significant amount of data and computational resource", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "to compensate. Not surprisingly, many recent works have been trying to incorporate the induc-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "tive biases of ConvNets into Transformer models, by imposing local receptive fields for attention", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "particular property, lacking a systematic understanding of the respective roles of convolution and", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "score": 1.0, + "content": "attention when combined.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 584, + 506, + 696 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers [21, 22] or augmenting the attention and FFN layers with implicit or explicit convolutional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "operations [23, 24, 25]. However, these approaches are either ad-hoc or focused on injecting a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "particular property, lacking a systematic understanding of the respective roles of convolution and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 212, + 117 + ], + "score": 1.0, + "content": "attention when combined.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "In this work, we systematically study the problem of hybridizing convolution and attention from", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "two fundamental aspects in machine learning – generalization and model capacity. Our study shows", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "that convolutional layers tend to have better generalization with faster converging speed thanks to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "their strong prior of inductive bias, while attention layers have higher model capacity that can benefit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "from larger datasets. Combining convolutional and attention layers can achieve better generalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "score": 1.0, + "content": "and capacity; however, a key challenge here is how to effectively combine them to achieve better", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "observe that the commonly used depthwise convolution can be effectively merged into attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "proper way, could be surprisingly effective to achieve better generalization and capacity. Based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "score": 1.0, + "content": "the strengths from both ConvNets and Transformers.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "only enjoys the superior scalability of Transformer models, but also achieves faster convergence and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 477, + 314 + ], + "score": 1.0, + "content": "thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 477, + 302, + 505, + 313 + ], + "score": 0.86, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 139, + 345 + ], + "score": 0.87, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 161, + 358 + ], + "score": 1.0, + "content": "JFT-300M, a", + "type": "text" + }, + { + "bbox": [ + 161, + 345, + 181, + 356 + ], + "score": 0.88, + "content": "2 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 445, + 369 + ], + "score": 1.0, + "content": "better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to", + "type": "text" + }, + { + "bbox": [ + 446, + 357, + 479, + 367 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 367, + 369, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 131, + 380 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 367, + 150, + 378 + ], + "score": 0.67, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 367, + 369, + 380 + ], + "score": 1.0, + "content": "less computation of the prior art set by ViT-G/14 [26].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 159, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "score": 1.0, + "content": "2 Model", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "score": 1.0, + "content": "In the section, we focus on the question of how to “optimally” combine the convolution and trans-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "score": 1.0, + "content": "former. Roughly speaking, we decompose the question into two parts:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 123, + 455, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "1. How to combine the convolution and self-attention within one basic computational block?", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "2. How to vertically stack different types of computational blocks together to form a complete", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "score": 1.0, + "content": "network?", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 500, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "score": 1.0, + "content": "The rationale of the decomposition will become clearer as we gradually reveal our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 302, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "score": 1.0, + "content": "2.1 Merging Convolution and Self-Attention", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "tion [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 222, + 597 + ], + "score": 1.0, + "content": "channel size of the input by", + "type": "text" + }, + { + "bbox": [ + 222, + 585, + 234, + 595 + ], + "score": 0.56, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 584, + 335, + 597 + ], + "score": 1.0, + "content": "and later project the the", + "type": "text" + }, + { + "bbox": [ + 335, + 585, + 347, + 595 + ], + "score": 0.46, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "-wide hidden state back to the original", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "score": 1.0, + "content": "channel size to enable residual connection.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "score": 1.0, + "content": "field", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 659, + 405, + 688 + ], + "lines": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "spans": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "score": 0.91, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,", + "type": "interline_equation", + "image_path": "6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 659, + 405, + 673.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 204, + 673.5, + 405, + 688.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 134, + 713 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 187, + 711 + ], + "score": 0.92, + "content": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 699, + 339, + 713 + ], + "score": 1.0, + "content": "are the input and output at position", + "type": "text" + }, + { + "bbox": [ + 340, + 701, + 344, + 710 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 699, + 419, + 713 + ], + "score": 1.0, + "content": "respectively, and", + "type": "text" + }, + { + "bbox": [ + 419, + 700, + 438, + 712 + ], + "score": 0.92, + "content": "\\mathcal { L } ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "denotes a local", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 382, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 175, + 725 + ], + "score": 1.0, + "content": "neighborhood of", + "type": "text" + }, + { + "bbox": [ + 175, + 712, + 180, + 721 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 709, + 291, + 725 + ], + "score": 1.0, + "content": ", e.g., a 3x3 grid centered at", + "type": "text" + }, + { + "bbox": [ + 292, + 712, + 296, + 721 + ], + "score": 0.81, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 709, + 382, + 725 + ], + "score": 1.0, + "content": "in image processing.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 72, + 506, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "In this work, we systematically study the problem of hybridizing convolution and attention from", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "two fundamental aspects in machine learning – generalization and model capacity. Our study shows", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "that convolutional layers tend to have better generalization with faster converging speed thanks to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "their strong prior of inductive bias, while attention layers have higher model capacity that can benefit", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "from larger datasets. Combining convolutional and attention layers can achieve better generalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 189 + ], + "score": 1.0, + "content": "and capacity; however, a key challenge here is how to effectively combine them to achieve better", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "trade-offs between accuracy and efficiency. In this paper, we investigate two key insights: First, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "observe that the commonly used depthwise convolution can be effectively merged into attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "layers with simple relative attention; Second, simply stacking convolutional and attention layers, in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "proper way, could be surprisingly effective to achieve better generalization and capacity. Based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "these insights, we propose a simple yet effective network architecture named CoAtNet, which enjoys", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 318, + 254 + ], + "score": 1.0, + "content": "the strengths from both ConvNets and Transformers.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 122, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Our CoAtNet achieves SOTA performances under comparable resource constraints across different", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "data sizes. Specifically, under the low-data regime, CoAtNet inherits the great generalization property", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "of ConvNets thanks to the favorable inductive biases. Moreover, given abundant data, CoAtNet not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "only enjoys the superior scalability of Transformer models, but also achieves faster convergence and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 477, + 314 + ], + "score": 1.0, + "content": "thus improved efficiency. When only ImageNet-1K is used for training, CoAtNet achieves", + "type": "text" + }, + { + "bbox": [ + 477, + 302, + 505, + 313 + ], + "score": 0.86, + "content": "8 6 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "top-1 accuracy, matching the prior art NFNet [20] under similar computation resource and training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "conditions. Further, when pre-trained on ImageNet-21K with about 10M images, CoAtNet reaches", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 139, + 345 + ], + "score": 0.87, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "top-1 accuracy when finetuned on ImageNet-1K, matching the ViT-Huge pre-trained on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 161, + 358 + ], + "score": 1.0, + "content": "JFT-300M, a", + "type": "text" + }, + { + "bbox": [ + 161, + 345, + 181, + 356 + ], + "score": 0.88, + "content": "2 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "larger dataset. Finally, when JFT-3B is used for pre-training, CoAtNet exhibits", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 445, + 369 + ], + "score": 1.0, + "content": "better efficiency compared to ViT, and pushes the ImageNet-1K top-1 accuracy to", + "type": "text" + }, + { + "bbox": [ + 446, + 357, + 479, + 367 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 367, + 369, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 131, + 380 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 367, + 150, + 378 + ], + "score": 0.67, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 367, + 369, + 380 + ], + "score": 1.0, + "content": "less computation of the prior art set by ViT-G/14 [26].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 258, + 506, + 380 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 400, + 159, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 398, + 160, + 416 + ], + "score": 1.0, + "content": "2 Model", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 440 + ], + "score": 1.0, + "content": "In the section, we focus on the question of how to “optimally” combine the convolution and trans-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 388, + 452 + ], + "score": 1.0, + "content": "former. Roughly speaking, we decompose the question into two parts:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 429, + 505, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 123, + 455, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 129, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "1. How to combine the convolution and self-attention within one basic computational block?", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 129, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "2. How to vertically stack different types of computational blocks together to form a complete", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 182, + 493 + ], + "score": 1.0, + "content": "network?", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 129, + 455, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 500, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 500, + 513 + ], + "score": 1.0, + "content": "The rationale of the decomposition will become clearer as we gradually reveal our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 497, + 500, + 513 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 302, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 303, + 543 + ], + "score": 1.0, + "content": "2.1 Merging Convolution and Self-Attention", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "For convolution, we mainly focus on the MBConv block [27] which employs depthwise convolu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "tion [28] to capture the spatial interaction. A key reason of this choice is that both the FFN module", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "in Transformer and MBConv employ the design of “inverted bottleneck”, which first expands the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 222, + 597 + ], + "score": 1.0, + "content": "channel size of the input by", + "type": "text" + }, + { + "bbox": [ + 222, + 585, + 234, + 595 + ], + "score": 0.56, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 584, + 335, + 597 + ], + "score": 1.0, + "content": "and later project the the", + "type": "text" + }, + { + "bbox": [ + 335, + 585, + 347, + 595 + ], + "score": 0.46, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "-wide hidden state back to the original", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 279, + 607 + ], + "score": 1.0, + "content": "channel size to enable residual connection.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 551, + 505, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "Besides the similarity of inverted bottleneck, we also notice that both depthwise convolution and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "self-attention can be expressed as a per-dimension weighted sum of values in a pre-defined receptive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "field. Specifically, convolution relies on a fixed kernel to gather information from a local receptive", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 128, + 657 + ], + "score": 1.0, + "content": "field", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 612, + 505, + 657 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 659, + 405, + 688 + ], + "lines": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "spans": [ + { + "bbox": [ + 204, + 659, + 405, + 688 + ], + "score": 0.91, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ,", + "type": "interline_equation", + "image_path": "6674e066791bbf528f350e89a70d47c627c6a3fb12df1f14900957b317ba58ee.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 659, + 405, + 673.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 204, + 673.5, + 405, + 688.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 134, + 713 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 187, + 711 + ], + "score": 0.92, + "content": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 699, + 339, + 713 + ], + "score": 1.0, + "content": "are the input and output at position", + "type": "text" + }, + { + "bbox": [ + 340, + 701, + 344, + 710 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 699, + 419, + 713 + ], + "score": 1.0, + "content": "respectively, and", + "type": "text" + }, + { + "bbox": [ + 419, + 700, + 438, + 712 + ], + "score": 0.92, + "content": "\\mathcal { L } ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "denotes a local", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 382, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 175, + 725 + ], + "score": 1.0, + "content": "neighborhood of", + "type": "text" + }, + { + "bbox": [ + 175, + 712, + 180, + 721 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 709, + 291, + 725 + ], + "score": 1.0, + "content": ", e.g., a 3x3 grid centered at", + "type": "text" + }, + { + "bbox": [ + 292, + 712, + 296, + 721 + ], + "score": 0.81, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 709, + 382, + 725 + ], + "score": 1.0, + "content": "in image processing.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 699, + 505, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 82, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 411, + 97 + ], + "score": 1.0, + "content": "the weights based on the re-normalized pairwise similarity between the pair", + "type": "text" + }, + { + "bbox": [ + 411, + 83, + 442, + 96 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 82, + 452, + 97 + ], + "score": 1.0, + "content": ": 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 102, + 406, + 149 + ], + "lines": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "spans": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "score": 0.94, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,", + "type": "interline_equation", + "image_path": "a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 204, + 102, + 406, + 117.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 117.66666666666667, + 406, + 133.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 133.33333333333334, + 406, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 156, + 141, + 166 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "indicates the global spatial space. Before getting into the question of how to best combine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "score": 1.0, + "content": "the good properties we hope to retain.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 290, + 207 + ], + "score": 1.0, + "content": "• First of all, the depthwise convolution kernel", + "type": "text" + }, + { + "bbox": [ + 290, + 195, + 312, + 205 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 192, + 507, + 207 + ], + "score": 1.0, + "content": "is an input-independent parameter of static value,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 204, + 218, + 217 + ], + "score": 1.0, + "content": "while the attention weight", + "type": "text" + }, + { + "bbox": [ + 219, + 205, + 237, + 217 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "dynamically depends on the representation of the input. Hence, it is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "much easier for the self-attention to capture complicated relational interactions between different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "score": 1.0, + "content": "spatial positions, a property that we desire most when processing high-level concepts. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "score": 1.0, + "content": "the flexibility comes with a risk of easier overfitting, especially when data is limited.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 289, + 264 + ], + "score": 1.0, + "content": "• Secondly, notice that given any position pair", + "type": "text" + }, + { + "bbox": [ + 289, + 251, + 310, + 263 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 250, + 463, + 264 + ], + "score": 1.0, + "content": ", the corresponding convolution weight", + "type": "text" + }, + { + "bbox": [ + 463, + 253, + 484, + 263 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 113, + 262, + 303, + 274 + ], + "score": 1.0, + "content": "cares about the relative shift between them, i.e.", + "type": "text" + }, + { + "bbox": [ + 303, + 263, + 325, + 273 + ], + "score": 0.9, + "content": "i - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 262, + 458, + 274 + ], + "score": 1.0, + "content": ", rather than the specific values of", + "type": "text" + }, + { + "bbox": [ + 458, + 263, + 463, + 272 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 475, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 475, + 263, + 480, + 273 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 262, + 506, + 274 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "property is often referred to translation equivalence, which has been found to improve generalization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "spans": [ + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "score": 1.0, + "content": "Transformers when the dataset is not enormously large.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "• Finally, the size of the receptive field is one of the most crucial differences between self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "and convolution. Generally speaking, a larger receptive field provides more contextual information,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "score": 1.0, + "content": "which could lead to higher model capacity. Hence, the global receptive field has been a key", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "motivation to employ self-attention in vision. However, a large receptive field requires significantly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "score": 1.0, + "content": "more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "score": 1.0, + "content": "which has been a fundamental trade-off in applying self-attention models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 169, + 404, + 440, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "spans": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "score": 1.0, + "content": "Table 1: Desirable properties found in convolution or self-attention.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "spans": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "type": "table", + "image_path": "d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 175, + 416, + 430, + 434.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 175, + 434.6666666666667, + 430, + 453.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 175, + 453.33333333333337, + 430, + 472.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "text", + "bbox": [ + 109, + 485, + 503, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "straightforward idea that could achieve this is simply to sum a global static convolution kernel with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "score": 1.0, + "content": "the adaptive attention matrix, either after or before the Softmax normalization, i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 536, + 490, + 571 + ], + "lines": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "spans": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "score": 0.92, + "content": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .", + "type": "interline_equation", + "image_path": "6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 536, + 490, + 547.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 547.6666666666666, + 490, + 559.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 559.3333333333333, + 490, + 570.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 437, + 590 + ], + "score": 1.0, + "content": "Interestingly, while the idea seems overly simplified, the pre-normalization version", + "type": "text" + }, + { + "bbox": [ + 438, + 578, + 453, + 589 + ], + "score": 0.89, + "content": "y ^ { \\mathrm { p r e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 476, + 603 + ], + "score": 1.0, + "content": "to a particular variant of relative self-attention [30, 31]. In this case, the attention weight", + "type": "text" + }, + { + "bbox": [ + 476, + 589, + 494, + 601 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 587, + 506, + 603 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 200, + 614 + ], + "score": 1.0, + "content": "decided jointly by the", + "type": "text" + }, + { + "bbox": [ + 200, + 603, + 222, + 613 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 600, + 432, + 614 + ], + "score": 1.0, + "content": "of translation equivariance and the input-adaptive", + "type": "text" + }, + { + "bbox": [ + 432, + 600, + 455, + 613 + ], + "score": 0.92, + "content": "x _ { i } ^ { \\top } x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 600, + 505, + 614 + ], + "score": 1.0, + "content": ", which can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "the global convolution kernel without blowing up the number of parameters, we have reloaded the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 632, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 151, + 648 + ], + "score": 1.0, + "content": "notation of", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 173, + 647 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 632, + 237, + 648 + ], + "score": 1.0, + "content": "as a scalar (i.e.,", + "type": "text" + }, + { + "bbox": [ + 237, + 633, + 288, + 645 + ], + "score": 0.91, + "content": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 632, + 507, + 648 + ], + "score": 1.0, + "content": ") rather than a vector in Eqn. (1). Another advantage of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 210, + 659 + ], + "score": 1.0, + "content": "the scalar formulation of", + "type": "text" + }, + { + "bbox": [ + 210, + 647, + 218, + 655 + ], + "score": 0.8, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 644, + 289, + 659 + ], + "score": 1.0, + "content": "is that retrieving", + "type": "text" + }, + { + "bbox": [ + 289, + 647, + 311, + 658 + ], + "score": 0.89, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 644, + 340, + 659 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 340, + 646, + 361, + 658 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "is clearly subsumed by computing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Given the benefits, we will use the Transformer block with the pre-normalization relative attention", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "score": 1.0, + "content": "variant in Eqn. (3) as the key component of the proposed CoAtNet model.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "2 To simplify the presentation, we deliberately omit the multi-head query, key and value projections for now.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 366, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 366, + 723 + ], + "score": 1.0, + "content": "In the actual implementation, we always use the multi-head projections.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "In comparison, self-attention allows the receptive field to be the entire spatial locations and computes", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 82, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 411, + 97 + ], + "score": 1.0, + "content": "the weights based on the re-normalized pairwise similarity between the pair", + "type": "text" + }, + { + "bbox": [ + 411, + 83, + 442, + 96 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 82, + 452, + 97 + ], + "score": 1.0, + "content": ": 2", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 72, + 505, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 102, + 406, + 149 + ], + "lines": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "spans": [ + { + "bbox": [ + 204, + 102, + 406, + 149 + ], + "score": 0.94, + "content": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ,", + "type": "interline_equation", + "image_path": "a9164aac5bb6f55e0bd90b25f31a8559f39a62986021c906fcf5f7116eba58d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 204, + 102, + 406, + 117.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 117.66666666666667, + 406, + 133.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 133.33333333333334, + 406, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 156, + 141, + 166 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "indicates the global spatial space. Before getting into the question of how to best combine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "them, it is worthwhile to compare their relative strengths and weaknesses, which helps to figure out", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 259, + 190 + ], + "score": 1.0, + "content": "the good properties we hope to retain.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 154, + 505, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 290, + 207 + ], + "score": 1.0, + "content": "• First of all, the depthwise convolution kernel", + "type": "text" + }, + { + "bbox": [ + 290, + 195, + 312, + 205 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 192, + 507, + 207 + ], + "score": 1.0, + "content": "is an input-independent parameter of static value,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 204, + 218, + 217 + ], + "score": 1.0, + "content": "while the attention weight", + "type": "text" + }, + { + "bbox": [ + 219, + 205, + 237, + 217 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "dynamically depends on the representation of the input. Hence, it is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "much easier for the self-attention to capture complicated relational interactions between different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 113, + 226, + 507, + 239 + ], + "score": 1.0, + "content": "spatial positions, a property that we desire most when processing high-level concepts. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 237, + 453, + 250 + ], + "score": 1.0, + "content": "the flexibility comes with a risk of easier overfitting, especially when data is limited.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 289, + 264 + ], + "score": 1.0, + "content": "• Secondly, notice that given any position pair", + "type": "text" + }, + { + "bbox": [ + 289, + 251, + 310, + 263 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 250, + 463, + 264 + ], + "score": 1.0, + "content": ", the corresponding convolution weight", + "type": "text" + }, + { + "bbox": [ + 463, + 253, + 484, + 263 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 113, + 262, + 303, + 274 + ], + "score": 1.0, + "content": "cares about the relative shift between them, i.e.", + "type": "text" + }, + { + "bbox": [ + 303, + 263, + 325, + 273 + ], + "score": 0.9, + "content": "i - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 262, + 458, + 274 + ], + "score": 1.0, + "content": ", rather than the specific values of", + "type": "text" + }, + { + "bbox": [ + 458, + 263, + 463, + 272 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 475, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 475, + 263, + 480, + 273 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 262, + 506, + 274 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "property is often referred to translation equivalence, which has been found to improve generalization", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 114, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "under datasets of limited size [29]. Due to the usage of absolution positional embeddings, standard", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Transformer (ViT) lacks this property. This partially explains why ConvNets are usually better than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "spans": [ + { + "bbox": [ + 113, + 304, + 338, + 318 + ], + "score": 1.0, + "content": "Transformers when the dataset is not enormously large.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "• Finally, the size of the receptive field is one of the most crucial differences between self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 113, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "and convolution. Generally speaking, a larger receptive field provides more contextual information,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 113, + 340, + 506, + 355 + ], + "score": 1.0, + "content": "which could lead to higher model capacity. Hence, the global receptive field has been a key", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "motivation to employ self-attention in vision. However, a large receptive field requires significantly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 113, + 362, + 507, + 375 + ], + "score": 1.0, + "content": "more computation. In the case of global attention, the complexity is quadratic w.r.t. spatial size,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 411, + 385 + ], + "score": 1.0, + "content": "which has been a fundamental trade-off in applying self-attention models.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 192, + 507, + 385 + ] + }, + { + "type": "table", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 169, + 404, + 440, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "spans": [ + { + "bbox": [ + 169, + 403, + 441, + 416 + ], + "score": 1.0, + "content": "Table 1: Desirable properties found in convolution or self-attention.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 175, + 416, + 430, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "spans": [ + { + "bbox": [ + 175, + 416, + 430, + 472 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
", + "type": "table", + "image_path": "d75e2fc9a7e5f7449242faadd95d844ba4bb23d1ab343baa75e9dc6fb7c8645c.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 175, + 416, + 430, + 434.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 175, + 434.6666666666667, + 430, + 453.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 175, + 453.33333333333337, + 430, + 472.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "text", + "bbox": [ + 109, + 485, + 503, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Given the comparison above, an ideal model should be able to combine the 3 desirable properties in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Table 1. With the similar form of depthwise convolution in Eqn. (1) and self-attention in Eqn. (2), a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "straightforward idea that could achieve this is simply to sum a global static convolution kernel with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 439, + 530 + ], + "score": 1.0, + "content": "the adaptive attention matrix, either after or before the Softmax normalization, i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 484, + 506, + 530 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 536, + 490, + 571 + ], + "lines": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "spans": [ + { + "bbox": [ + 111, + 536, + 490, + 571 + ], + "score": 0.92, + "content": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } .", + "type": "interline_equation", + "image_path": "6ad701e539bf342fce3258bfc8889c519cd941777a414d3170d3f20d5b95a53d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 536, + 490, + 547.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 547.6666666666666, + 490, + 559.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 559.3333333333333, + 490, + 570.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 437, + 590 + ], + "score": 1.0, + "content": "Interestingly, while the idea seems overly simplified, the pre-normalization version", + "type": "text" + }, + { + "bbox": [ + 438, + 578, + 453, + 589 + ], + "score": 0.89, + "content": "y ^ { \\mathrm { p r e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 476, + 603 + ], + "score": 1.0, + "content": "to a particular variant of relative self-attention [30, 31]. In this case, the attention weight", + "type": "text" + }, + { + "bbox": [ + 476, + 589, + 494, + 601 + ], + "score": 0.91, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 587, + 506, + 603 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 200, + 614 + ], + "score": 1.0, + "content": "decided jointly by the", + "type": "text" + }, + { + "bbox": [ + 200, + 603, + 222, + 613 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 600, + 432, + 614 + ], + "score": 1.0, + "content": "of translation equivariance and the input-adaptive", + "type": "text" + }, + { + "bbox": [ + 432, + 600, + 455, + 613 + ], + "score": 0.92, + "content": "x _ { i } ^ { \\top } x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 600, + 505, + 614 + ], + "score": 1.0, + "content": ", which can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "enjoy both effects depending on their relative magnitudes. Importantly, note that in order to enable", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "the global convolution kernel without blowing up the number of parameters, we have reloaded the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 632, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 151, + 648 + ], + "score": 1.0, + "content": "notation of", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 173, + 647 + ], + "score": 0.88, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 632, + 237, + 648 + ], + "score": 1.0, + "content": "as a scalar (i.e.,", + "type": "text" + }, + { + "bbox": [ + 237, + 633, + 288, + 645 + ], + "score": 0.91, + "content": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 632, + 507, + 648 + ], + "score": 1.0, + "content": ") rather than a vector in Eqn. (1). Another advantage of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 210, + 659 + ], + "score": 1.0, + "content": "the scalar formulation of", + "type": "text" + }, + { + "bbox": [ + 210, + 647, + 218, + 655 + ], + "score": 0.8, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 644, + 289, + 659 + ], + "score": 1.0, + "content": "is that retrieving", + "type": "text" + }, + { + "bbox": [ + 289, + 647, + 311, + 658 + ], + "score": 0.89, + "content": "w _ { i - j }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 644, + 340, + 659 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 340, + 646, + 361, + 658 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "is clearly subsumed by computing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "the pairwise dot-product attention, hence resulting in minimum additional cost (see Appendix A.1).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Given the benefits, we will use the Transformer block with the pre-normalization relative attention", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 403, + 690 + ], + "score": 1.0, + "content": "variant in Eqn. (3) as the key component of the proposed CoAtNet model.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 576, + 507, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 228, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "score": 1.0, + "content": "2.2 Vertical Layout Design", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 94, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "score": 1.0, + "content": "to stack an entire network.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "score": 1.0, + "content": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "be excessively slow due to the large number of pixels in any image of common sizes. Hence, to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "score": 1.0, + "content": "construct a network that is feasible in practice, we have mainly three options:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "spans": [ + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "score": 1.0, + "content": "after the feature map reaches manageable level.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 196, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 380, + 209 + ], + "score": 1.0, + "content": "(B) Enforce local attention, which restricts the global receptive field", + "type": "text" + }, + { + "bbox": [ + 381, + 197, + 389, + 207 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 196, + 495, + 209 + ], + "score": 1.0, + "content": "in attention to a local field", + "type": "text" + }, + { + "bbox": [ + 496, + 197, + 504, + 207 + ], + "score": 0.62, + "content": "\\mathcal { L }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "spans": [ + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "score": 1.0, + "content": "just like in convolution [22, 21].", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "spans": [ + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "score": 1.0, + "content": "linear complexity w.r.t. the spatial size [12, 32, 33].", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "found that implementing local attention involves many non-trivial shape formatting operations that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "extremely slow [34], which not only defeats the original purpose of speeding up global attention, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "score": 1.0, + "content": "focus on option (A) and compare our results with theirs in our empirical study (Section 4).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "With these choices, we derive a search space of 5 variants and compare them in controlled experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 359, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 298, + 371 + ], + "score": 1.0, + "content": "• When the ViT Stem is used, we directly stack", + "type": "text" + }, + { + "bbox": [ + 298, + 360, + 306, + 369 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Transformer blocks with relative attention, which", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 113, + 369, + 204, + 383 + ], + "spans": [ + { + "bbox": [ + 113, + 369, + 168, + 383 + ], + "score": 1.0, + "content": "we denote as", + "type": "text" + }, + { + "bbox": [ + 169, + 370, + 199, + 381 + ], + "score": 0.87, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 369, + 204, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 113, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 113, + 406, + 322, + 419 + ], + "score": 1.0, + "content": "of each stage, we always reduce the spatial size by", + "type": "text" + }, + { + "bbox": [ + 322, + 407, + 335, + 417 + ], + "score": 0.57, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "and increase the number of channels (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "score": 1.0, + "content": "Appendix A.1 for the detailed down-sampling implementation).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "score": 1.0, + "content": "convolution stages must appear before Transformer stages. The constraint is based on the prior", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "that convolution is better at processing local patterns that are more common in early stages. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "score": 1.0, + "content": "C-T-T-T, where C and T denote Convolution and Transformer respectively.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "To systematically study the design choices, we consider two fundamental aspects generalization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "capability and model capacity: For generalization, we are interested in the gap between the training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "score": 1.0, + "content": "loss and the evaluation accuracy. If two models have the same training loss, then the model with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "higher evaluation accuracy has better generalization capability, since it can generalize better to unseen", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "evaluation dataset. Generalization capability is particularly important to data efficiency when training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "data size is limited. For model capacity, we measure the ability to fit large training datasets. When", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "training data is abundant and overfitting is not an issue, the model with higher capacity will achieve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "better final performance after reasonable training steps. Note that, since simply increasing the model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "score": 1.0, + "content": "sizes of the 5 variants are comparable.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "To compare the generalization and model capacity, we train different variants of hybrid models on", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 653 + ], + "score": 1.0, + "content": "ImageNet-1K (1.3M) and JFT", + "type": "text" + }, + { + "bbox": [ + 235, + 640, + 272, + 651 + ], + "score": 0.76, + "content": "\\left( > 3 0 0 \\mathbf { M } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "dataset for 300 and 3 epochs respectively, both without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "any regularization or augmentation. The training loss and evaluation accuracy on both datasets are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "summarized in Figure 1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 104, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "spans": [ + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "score": 1.0, + "content": "gap between train and evaluation metrics), we have", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 710, + 430, + 723 + ], + "lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "score": 0.79, + "content": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }", + "type": "interline_equation", + "image_path": "5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [], + "index": 51 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 228, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 229, + 87 + ], + "score": 1.0, + "content": "2.2 Vertical Layout Design", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 94, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "After figuring out a neat way to combine convolution and attention, we next consider how to utilize it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 214, + 117 + ], + "score": 1.0, + "content": "to stack an entire network.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 94, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 121, + 507, + 135 + ], + "score": 1.0, + "content": "As we have discuss above, the global context has a quadratic complexity w.r.t. the spatial size. Hence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "if we directly apply the relative attention in Eqn. (3) to the raw image input, the computation will", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "be excessively slow due to the large number of pixels in any image of common sizes. Hence, to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 416, + 167 + ], + "score": 1.0, + "content": "construct a network that is feasible in practice, we have mainly three options:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 121, + 507, + 167 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 171, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "(A) Perform some down-sampling to reduce the spatial size and employ the global relative attention", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "spans": [ + { + "bbox": [ + 126, + 181, + 318, + 194 + ], + "score": 1.0, + "content": "after the feature map reaches manageable level.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 196, + 504, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 380, + 209 + ], + "score": 1.0, + "content": "(B) Enforce local attention, which restricts the global receptive field", + "type": "text" + }, + { + "bbox": [ + 381, + 197, + 389, + 207 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 196, + 495, + 209 + ], + "score": 1.0, + "content": "in attention to a local field", + "type": "text" + }, + { + "bbox": [ + 496, + 197, + 504, + 207 + ], + "score": 0.62, + "content": "\\mathcal { L }", + "type": "inline_equation" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "spans": [ + { + "bbox": [ + 125, + 208, + 257, + 219 + ], + "score": 1.0, + "content": "just like in convolution [22, 21].", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "(C) Replace the quadratic Softmax attention with certain linear attention variant which only has a", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "spans": [ + { + "bbox": [ + 126, + 232, + 334, + 246 + ], + "score": 1.0, + "content": "linear complexity w.r.t. the spatial size [12, 32, 33].", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 171, + 506, + 246 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "We briefly experimented with option (C) without getting a reasonably good result. For option (B), we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "found that implementing local attention involves many non-trivial shape formatting operations that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "requires intensive memory access. On our accelerator of choice (TPU), such operation turns out to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "extremely slow [34], which not only defeats the original purpose of speeding up global attention, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "also hurts the model capacity. Hence, as some recent work has studied this variant [22, 21], we will", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 469, + 316 + ], + "score": 1.0, + "content": "focus on option (A) and compare our results with theirs in our empirical study (Section 4).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 249, + 506, + 316 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "For option (A), the down-sampling can be achieved by either (1) a convolution stem with aggressive", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "stride (e.g., stride 16x16) as in ViT or (2) a multi-stage network with gradual pooling as in ConvNets.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "With these choices, we derive a search space of 5 variants and compare them in controlled experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 320, + 505, + 355 + ] + }, + { + "type": "list", + "bbox": [ + 105, + 359, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 298, + 371 + ], + "score": 1.0, + "content": "• When the ViT Stem is used, we directly stack", + "type": "text" + }, + { + "bbox": [ + 298, + 360, + 306, + 369 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Transformer blocks with relative attention, which", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 369, + 204, + 383 + ], + "spans": [ + { + "bbox": [ + 113, + 369, + 168, + 383 + ], + "score": 1.0, + "content": "we denote as", + "type": "text" + }, + { + "bbox": [ + 169, + 370, + 199, + 381 + ], + "score": 0.87, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 369, + 204, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "• When the multi-stage layout is used, we mimic ConvNets to construct a network of 5 stages (S0,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 112, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "S1, S2, S3 & S4), with spatial resolution gradually decreased from S0 to S4. At the beginning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 113, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 113, + 406, + 322, + 419 + ], + "score": 1.0, + "content": "of each stage, we always reduce the spatial size by", + "type": "text" + }, + { + "bbox": [ + 322, + 407, + 335, + 417 + ], + "score": 0.57, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "and increase the number of channels (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 371, + 430 + ], + "score": 1.0, + "content": "Appendix A.1 for the detailed down-sampling implementation).", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "The first stage S0 is a simple 2-layer convolutional Stem and S1 always employs MBConv blocks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 114, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "with squeeze-excitation (SE), as the spatial size is too large for global attention. Starting from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "S2 through S4, we consider either the MBConv or the Transformer block, with a constraint that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 114, + 466, + 506, + 477 + ], + "score": 1.0, + "content": "convolution stages must appear before Transformer stages. The constraint is based on the prior", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 114, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "that convolution is better at processing local patterns that are more common in early stages. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 113, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "leads to 4 variants with increasingly more Transformer stages, C-C-C-C, C-C-C-T, C-C-T-T and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 421, + 511 + ], + "score": 1.0, + "content": "C-T-T-T, where C and T denote Convolution and Transformer respectively.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + } + ], + "index": 28, + "bbox_fs": [ + 105, + 358, + 506, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "To systematically study the design choices, we consider two fundamental aspects generalization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "capability and model capacity: For generalization, we are interested in the gap between the training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 548 + ], + "score": 1.0, + "content": "loss and the evaluation accuracy. If two models have the same training loss, then the model with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "higher evaluation accuracy has better generalization capability, since it can generalize better to unseen", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "evaluation dataset. Generalization capability is particularly important to data efficiency when training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "data size is limited. For model capacity, we measure the ability to fit large training datasets. When", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "training data is abundant and overfitting is not an issue, the model with higher capacity will achieve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "better final performance after reasonable training steps. Note that, since simply increasing the model", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "size can lead to higher model capacity, to perform a meaningful comparison, we make sure the model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 624 + ], + "score": 1.0, + "content": "sizes of the 5 variants are comparable.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 514, + 506, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "To compare the generalization and model capacity, we train different variants of hybrid models on", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 653 + ], + "score": 1.0, + "content": "ImageNet-1K (1.3M) and JFT", + "type": "text" + }, + { + "bbox": [ + 235, + 640, + 272, + 651 + ], + "score": 0.76, + "content": "\\left( > 3 0 0 \\mathbf { M } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "dataset for 300 and 3 epochs respectively, both without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "any regularization or augmentation. The training loss and evaluation accuracy on both datasets are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "summarized in Figure 1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 629, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "• From the ImageNet-1K results, a key observation is that, in terms of generalization capability (i.e.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "spans": [ + { + "bbox": [ + 113, + 688, + 321, + 702 + ], + "score": 1.0, + "content": "gap between train and evaluation metrics), we have", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5, + "bbox_fs": [ + 104, + 676, + 506, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 710, + 430, + 723 + ], + "lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "score": 0.79, + "content": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }", + "type": "interline_equation", + "image_path": "5f09b3609b6f1eadeb4a99c8e756ab7b3480d39c7a84b75a5be78aad8ba17e00.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 187, + 710, + 430, + 723 + ], + "spans": [], + "index": 51 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "score": 0.971, + "type": "image", + "image_path": "8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 502, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 110.0, + 502, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 148.0, + 502, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 192, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "Figure 1: Comparison for model generalization and capacity under different data size. For fair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "score": 1.0, + "content": "comparison, all models have similar parameter size and computational cost.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 114, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 114, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 236, + 167, + 250 + ], + "score": 1.0, + "content": "Particularly,", + "type": "text" + }, + { + "bbox": [ + 167, + 237, + 198, + 248 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "is significantly worse than variants by a large margin, which we conjecture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "is related to the lack of proper low-level information processing in its aggressive down-sampling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "spans": [ + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "score": 1.0, + "content": "model has, the smaller the generalization gap is.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "score": 1.0, + "content": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "score": 1.0, + "content": "of the training suggest the following ranking:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 310, + 430, + 323 + ], + "lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "score": 0.82, + "content": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }", + "type": "interline_equation", + "image_path": "db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 329, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 431, + 352 + ], + "score": 1.0, + "content": "mean higher capacity for visual processing. On one hand, while initially worse,", + "type": "text" + }, + { + "bbox": [ + 432, + 340, + 461, + 351 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 341, + 505, + 352 + ], + "score": 1.0, + "content": "ultimately", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "catch up with the two variants with more MBConv stages, indicating the capacity advantage of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 113, + 359, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 113, + 359, + 473, + 376 + ], + "score": 1.0, + "content": "Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming", + "type": "text" + }, + { + "bbox": [ + 473, + 362, + 504, + 373 + ], + "score": 0.88, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "suggest that the ViT stem with an aggressive stride may have lost too much information and hence", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 113, + 382, + 387, + 396 + ], + "score": 1.0, + "content": "limit the model capacity. More interestingly, the fact that C-C-T-T", + "type": "text" + }, + { + "bbox": [ + 387, + 384, + 407, + 394 + ], + "score": 0.37, + "content": "\\approx \\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "-T-T-T indicates the for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing low-level information, static local operations like convolution could be as capable as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "score": 1.0, + "content": "adaptive global attention mechanism, while saving computation and memory usage substantially.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "score": 1.0, + "content": "accuracy than C-T-T-T, despite the same pre-training performance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "table", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 474, + 376, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "score": 1.0, + "content": "Table 2: Transferability test results.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "spans": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "type": "table", + "image_path": "c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 485, + 424, + 499.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 184, + 499.0, + 424, + 513.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 513.0, + 424, + 527.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 184, + 527.0, + 424, + 541.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 25.25 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "score": 1.0, + "content": "C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 197, + 604 + ], + "lines": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "score": 1.0, + "content": "3 Related Work", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dom-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "inating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28]", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "are popular in mobile platforms due to its lower computational cost and smaller parameter size [27].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "score": 1.0, + "content": "paper mostly employs MBConv as convolution building blocks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 711, + 462, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 463, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 463, + 724 + ], + "score": 1.0, + "content": "3 Rigorously speaking, this test examines not only the transferability but also the generalization.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 502, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 502, + 186 + ], + "score": 0.971, + "type": "image", + "image_path": "8e4cc944c4e098b4c2962d8c1e585910035ad5a220c25df539ba8f057d9c47df.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 502, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 110.0, + 502, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 148.0, + 502, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 192, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "Figure 1: Comparison for model generalization and capacity under different data size. For fair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 411, + 216 + ], + "score": 1.0, + "content": "comparison, all models have similar parameter size and computational cost.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 114, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 114, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 114, + 236, + 167, + 250 + ], + "score": 1.0, + "content": "Particularly,", + "type": "text" + }, + { + "bbox": [ + 167, + 237, + 198, + 248 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "is significantly worse than variants by a large margin, which we conjecture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "is related to the lack of proper low-level information processing in its aggressive down-sampling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 114, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Stem. Among the multi-stage variants, the overall trend is that the more convolution stages the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "spans": [ + { + "bbox": [ + 114, + 270, + 309, + 282 + ], + "score": 1.0, + "content": "model has, the smaller the generalization gap is.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 113, + 236, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 295 + ], + "score": 1.0, + "content": "• As for model capacity, from the JFT comparison, both the train and evaluation metrics at the end", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "spans": [ + { + "bbox": [ + 113, + 291, + 298, + 307 + ], + "score": 1.0, + "content": "of the training suggest the following ranking:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 280, + 506, + 307 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 310, + 430, + 323 + ], + "lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "score": 0.82, + "content": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }", + "type": "interline_equation", + "image_path": "db72680f50180e0871b5c7bce1cdd56ab51755cadb71545f3fb276d6f9b0b410.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 188, + 310, + 430, + 323 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 329, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Importantly, this suggests that simply having more Transformer blocks does NOT necessarily", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 431, + 352 + ], + "score": 1.0, + "content": "mean higher capacity for visual processing. On one hand, while initially worse,", + "type": "text" + }, + { + "bbox": [ + 432, + 340, + 461, + 351 + ], + "score": 0.89, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 341, + 505, + 352 + ], + "score": 1.0, + "content": "ultimately", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 114, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "catch up with the two variants with more MBConv stages, indicating the capacity advantage of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 113, + 359, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 113, + 359, + 473, + 376 + ], + "score": 1.0, + "content": "Transformer blocks. On the other hand, both C-C-T-T and C-T-T-T clearly outperforming", + "type": "text" + }, + { + "bbox": [ + 473, + 362, + 504, + 373 + ], + "score": 0.88, + "content": "\\mathrm { V I T } _ { \\mathrm { R E L } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "suggest that the ViT stem with an aggressive stride may have lost too much information and hence", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 113, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 113, + 382, + 387, + 396 + ], + "score": 1.0, + "content": "limit the model capacity. More interestingly, the fact that C-C-T-T", + "type": "text" + }, + { + "bbox": [ + 387, + 384, + 407, + 394 + ], + "score": 0.37, + "content": "\\approx \\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "-T-T-T indicates the for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 113, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "processing low-level information, static local operations like convolution could be as capable as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 114, + 405, + 504, + 418 + ], + "score": 1.0, + "content": "adaptive global attention mechanism, while saving computation and memory usage substantially.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 113, + 329, + 506, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Finally, to decide between C-C-T-T and C-T-T-T, we conduct another transferability test3 — we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "finetune the two JFT pre-trained models above on ImageNet-1K for 30 epochs and compare their", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "transfer performances. From Table 2, it turns out that C-C-T-T achieves a clearly better transfer", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 379, + 468 + ], + "score": 1.0, + "content": "accuracy than C-T-T-T, despite the same pre-training performance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 421, + 506, + 468 + ] + }, + { + "type": "table", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 474, + 376, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 232, + 471, + 378, + 487 + ], + "score": 1.0, + "content": "Table 2: Transferability test results.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 184, + 485, + 424, + 541 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "spans": [ + { + "bbox": [ + 184, + 485, + 424, + 541 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
", + "type": "table", + "image_path": "c21bffeded81866fc6229e3aca114c77d365b7c6effb04ceec185d4089ddb3a2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 485, + 424, + 499.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 184, + 499.0, + 424, + 513.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 184, + 513.0, + 424, + 527.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 184, + 527.0, + 424, + 541.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 25.25 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "Taking generalization, model capacity, transferability and efficiency into consideration, we adapt the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 481, + 576 + ], + "score": 1.0, + "content": "C-C-T-T multi-stage layout for CoAtNet. More model details are included in Appendix A.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 552, + 504, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 197, + 604 + ], + "lines": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 198, + 605 + ], + "score": 1.0, + "content": "3 Related Work", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "Convolutional network building blocks. Convolutional Networks (ConvNets) have been the dom-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "inating neural architectures for many computer vision tasks. Traditionally, regular convolutions, such", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "as ResNet blocks [3], are popular in large-scale ConvNets; in contrast, depthwise convolutions [28]", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "are popular in mobile platforms due to its lower computational cost and smaller parameter size [27].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "Recent works show that an improved inverted residual bottlenecks (MBConv [27, 35]), which is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "built upon depthwise convolutions, can achieve both high accuracy and better efficiency [5, 19]. As", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 506, + 693 + ], + "score": 1.0, + "content": "discussed in Section 2, due to the strong connection between MBConv and Transformer blocks , this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 363, + 704 + ], + "score": 1.0, + "content": "paper mostly employs MBConv as convolution building blocks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 614, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "been widely adopted for neural language processing and speech understanding. As an early work,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "stand-alone self-attention network [34] shows self-attention alone can work well for different vision", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Following that, many recent works have been focused on improving vision Transformers for data", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "score": 1.0, + "content": "readers to the dedicated surveys [36, 37].", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Relative attention. Under the general name of relative attention, there have been various variants", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "(a) the input-dependent version where the extra relative attention score is a function of the input", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 132, + 227 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 133, + 215, + 196, + 228 + ], + "score": 0.93, + "content": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 215, + 361, + 227 + ], + "score": 1.0, + "content": ", and (b) the input-independent version", + "type": "text" + }, + { + "bbox": [ + 361, + 215, + 397, + 227 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 215, + 506, + 227 + ], + "score": 1.0, + "content": ". The variant in CoAtNet", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "neither share the relative attention parameters across layers nor use the bucketing mechanism. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 294, + 261 + ], + "score": 1.0, + "content": "a benefit of the input independence, obtaining", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 329, + 260 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 248, + 358, + 261 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 358, + 248, + 379, + 260 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "pairs is computationally much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "computed once and cached for future use. A recent work [22] also utilizes such an input-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "score": 1.0, + "content": "parameterization, but it restricts the receptive field to a local window.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Combining convolution and self-attention. The idea of combining convolution and self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "for vision recognition is not new. A common approach is to augment the ConvNet backbone with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "self-attention usually improves the accuracy, they often come with extra computational cost and hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "score": 1.0, + "content": "convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "While our work also belongs to this category, we show that our relative attention instantiation is a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "score": 1.0, + "content": "natural mixture of depthwise convolution and content-based attention with minimum additional cost.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "More importantly, starting from the perspectives of generalization and model capacity, we take a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "score": 1.0, + "content": "systematic approach to the vertical layout design and show how and why different network stages", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "(S2) when the overall size increases. On the other hand, compared to models employing local", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "score": 1.0, + "content": "as S3 occupies the majority of the computation and parameters.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 521, + 191, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, we compare CoAtNet with previous results under comparable settings. For complete-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "score": 1.0, + "content": "ness, all the hyper-parameters not mentioned here are included in Appendix A.2.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 107, + 580, + 213, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "score": 1.0, + "content": "4.1 Experiment Setting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "CoAtNet model family. To compare with existing models of different sizes, we also design a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "family of CoAtNet models as summarized in Table 3. Overall, we always double the number of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "score": 1.0, + "content": "S2 and S3.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "Self-attention and Transformers. With the key ingredients of self-attention, Transformers have", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "been widely adopted for neural language processing and speech understanding. As an early work,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 106 + ], + "score": 1.0, + "content": "stand-alone self-attention network [34] shows self-attention alone can work well for different vision", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "tasks, though with some practical difficulties. Recently, ViT [13] applies a vanilla Transformer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "to ImageNet classification, and achieves impressive results after pre-training on a large-scale JFT", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "dataset. However, ViT still largely lags behind state-of-the-art ConvNets when training data is limited.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Following that, many recent works have been focused on improving vision Transformers for data", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "efficiency and model efficiency. For a more comprehensive review of vision Transformers, we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 272, + 172 + ], + "score": 1.0, + "content": "readers to the dedicated surveys [36, 37].", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 73, + 506, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Relative attention. Under the general name of relative attention, there have been various variants", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in literature [30, 38, 39, 34, 40, 31]. Generally speaking, we can separate them into two categories:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "(a) the input-dependent version where the extra relative attention score is a function of the input", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 132, + 227 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 133, + 215, + 196, + 228 + ], + "score": 0.93, + "content": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 215, + 361, + 227 + ], + "score": 1.0, + "content": ", and (b) the input-independent version", + "type": "text" + }, + { + "bbox": [ + 361, + 215, + 397, + 227 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 215, + 506, + 227 + ], + "score": 1.0, + "content": ". The variant in CoAtNet", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "belongs to the input-independent version, and is similar to the one used in T5 [31], but unlike T5, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "neither share the relative attention parameters across layers nor use the bucketing mechanism. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 294, + 261 + ], + "score": 1.0, + "content": "a benefit of the input independence, obtaining", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 329, + 260 + ], + "score": 0.93, + "content": "f ( i - j )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 248, + 358, + 261 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 358, + 248, + 379, + 260 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "pairs is computationally much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "cheaper than the input-dependent version on TPU. In addition, at inference time, this only needs to be", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "computed once and cached for future use. A recent work [22] also utilizes such an input-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 384, + 293 + ], + "score": 1.0, + "content": "parameterization, but it restricts the receptive field to a local window.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 182, + 506, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Combining convolution and self-attention. The idea of combining convolution and self-attention", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "for vision recognition is not new. A common approach is to augment the ConvNet backbone with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "explicit self-attention or non-local modules [9, 10, 11, 12], or to replace certain convolution layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "with standard self-attention [11] or a more flexible mix of linear attention and convolution [41]. While", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "self-attention usually improves the accuracy, they often come with extra computational cost and hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "are often regarded as an add-on to the ConvNets, similar to squeeze-and-excitation [42] module. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comparison, after the success of ViT and ResNet-ViT [13], another popular line of research starts with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "a Transformer backbone and tries to incorporate explicit convolution or some desirable properties of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 392, + 403 + ], + "score": 1.0, + "content": "convolution into the Transformer backbone [25, 24, 23, 22, 21, 43, 44].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 304, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "While our work also belongs to this category, we show that our relative attention instantiation is a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 430 + ], + "score": 1.0, + "content": "natural mixture of depthwise convolution and content-based attention with minimum additional cost.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "More importantly, starting from the perspectives of generalization and model capacity, we take a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 454 + ], + "score": 1.0, + "content": "systematic approach to the vertical layout design and show how and why different network stages", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "prefer different types of layers. Therefore, compared to models that simply use an off-the-shelf", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "ConvNet as the stem layer, such as ResNet-ViT [13], CoAtNet also scales the Convolution stage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "(S2) when the overall size increases. On the other hand, compared to models employing local", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "attention [22, 21], CoAtNet consistently uses full attention for S3 & S4 to ensure the model capacity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 362, + 508 + ], + "score": 1.0, + "content": "as S3 occupies the majority of the computation and parameters.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 408, + 507, + 508 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 521, + 191, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 193, + 537 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, we compare CoAtNet with previous results under comparable settings. For complete-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 430, + 568 + ], + "score": 1.0, + "content": "ness, all the hyper-parameters not mentioned here are included in Appendix A.2.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 545, + 505, + 568 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 580, + 213, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 215, + 596 + ], + "score": 1.0, + "content": "4.1 Experiment Setting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "CoAtNet model family. To compare with existing models of different sizes, we also design a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "family of CoAtNet models as summarized in Table 3. Overall, we always double the number of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "channels from S1 to S4, while ensuring the width of the Stem S0 to be smaller or equal to that of S1.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Also, for simplicity, when increasing the depth of the network, we only scale the number of blocks in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 152, + 656 + ], + "score": 1.0, + "content": "S2 and S3.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 600, + 506, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Evaluation Protocol. Our experiments focus on image classification. To evaluate the performance", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "of the model across different data sizes, we utilize three datasets of increasingly larger sizes, namely", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "ImageNet-1K (1.28M images), ImageNet-21K (12.7M images) and JFT (300M images). Following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "previous works, we first pre-train our models on each of the three datasets at resolution 224 for 300, 90", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "and 14 epochs respectively. Then, we finetune the pre-trained models on ImageNet-1K at the desired", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "score": 1.0, + "content": "ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "score": 1.0, + "content": "on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "score": 1.0, + "content": "finetuning is always employed whenever input resolution changes.", + "type": "text", + "cross_page": true + } + ], + "index": 11 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 666, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 77, + 506, + 121 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "score": 1.0, + "content": "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "score": 1.0, + "content": "Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "score": 1.0, + "content": "always 4 and the expansion (shrink) rate for the SE is always 0.25.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "type": "table", + "image_path": "84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 122, + 506, + 146.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.0, + 506, + 170.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 170.0, + 506, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 506, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "resolutions for 30 epochs and obtain the corresponding evaluation accuracy. One exception is the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 232 + ], + "score": 1.0, + "content": "ImageNet-1K performance at resolution 224, which can be directly obtained at the end of pre-training.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "Note that similar to other models utilizing Transformer blocks, directly evaluating models pre-trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 507, + 254 + ], + "score": 1.0, + "content": "on ImageNet-1K at a larger resolution without finetuning usually leads to performance drop. Hence,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 373, + 264 + ], + "score": 1.0, + "content": "finetuning is always employed whenever input resolution changes.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Data Augmentation & Regularization. In this work, we only consider two widely used data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "score": 1.0, + "content": "stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "the specific hyper-parameters of the augmentation and regularization methods depend on model size", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "score": 1.0, + "content": "and data scale, where strong regularization is usually applied for larger models and smaller dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "Under the general principle, a complication under the current paradigm is how to adjust the regular-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "ization for pre-training and finetuning as data size can change. Specifically, we have an interesting", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "observation that if a certain type of augmentation is entirely disabled during pre-training, simply", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "score": 1.0, + "content": "turning it on during fine-tuning would most likely harm the performance rather than improving.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "We conjecture this could be related to data distribution shift. As a result, for certain runs of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "score": 1.0, + "content": "harm the pre-training metrics, this allows more versatile regularization and augmentation during", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "score": 1.0, + "content": "finetuning, leading to improved down-stream performances.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 187, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "4.2 Main Results", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "score": 0.97, + "type": "image", + "image_path": "cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 110, + 476, + 293, + 489.27272727272725 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 110, + 489.27272727272725, + 293, + 502.5454545454545 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 110, + 502.5454545454545, + 293, + 515.8181818181818 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 110, + 515.8181818181818, + 293, + 529.090909090909 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 110, + 529.090909090909, + 293, + 542.3636363636363 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 110, + 542.3636363636363, + 293, + 555.6363636363635 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 110, + 555.6363636363635, + 293, + 568.9090909090908 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 110, + 568.9090909090908, + 293, + 582.181818181818 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 110, + 582.181818181818, + 293, + 595.4545454545453 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 595.4545454545453, + 293, + 608.7272727272725 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 110, + 608.7272727272725, + 293, + 621.9999999999998 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 632, + 299, + 654 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "score": 1.0, + "content": "Figure 2: Accuracy-to-FLOPs scaling curve un-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 642, + 278, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 237, + 655 + ], + "score": 1.0, + "content": "der ImageNet-1K only setting at", + "type": "text" + }, + { + "bbox": [ + 238, + 642, + 274, + 653 + ], + "score": 0.64, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 642, + 278, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.0 + } + ], + "index": 43.5 + }, + { + "type": "image", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "spans": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "score": 0.972, + "type": "image", + "image_path": "f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 314, + 477, + 498, + 490.1818181818182 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 490.1818181818182, + 498, + 503.3636363636364 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 503.3636363636364, + 498, + 516.5454545454545 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 516.5454545454545, + 498, + 529.7272727272726 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 529.7272727272726, + 498, + 542.9090909090908 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 542.9090909090908, + 498, + 556.0909090909089 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 556.0909090909089, + 498, + 569.272727272727 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 569.272727272727, + 498, + 582.4545454545452 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 582.4545454545452, + 498, + 595.6363636363633 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 595.6363636363633, + 498, + 608.8181818181814 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 608.8181818181814, + 498, + 621.9999999999995 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 632, + 503, + 654 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "score": 1.0, + "content": "Figure 3: Accuracy-to-Params scaling curve un-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 309, + 640, + 489, + 657 + ], + "spans": [ + { + "bbox": [ + 309, + 640, + 367, + 657 + ], + "score": 1.0, + "content": "der ImageNet-", + "type": "text" + }, + { + "bbox": [ + 368, + 643, + 399, + 653 + ], + "score": 0.65, + "content": "2 1 \\mathrm { K } \\Rightarrow", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 640, + 489, + 657 + ], + "score": 1.0, + "content": "ImageNet-1K setting.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.0 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "score": 1.0, + "content": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 273, + 713 + ], + "score": 1.0, + "content": "also visualize the all results at resolution", + "type": "text" + }, + { + "bbox": [ + 273, + 700, + 310, + 711 + ], + "score": 0.51, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "in Fig. 2. As we can see, CoAtNet scales much", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "score": 1.0, + "content": "better than previous model with attention modules.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 55 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 77, + 506, + 121 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 90 + ], + "score": 1.0, + "content": "Table 3: L denotes the number of blocks and D denotes the hidden dimension (#channels). For all", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 505, + 100 + ], + "score": 1.0, + "content": "Conv and MBConv blocks, we always use the kernel size 3. For all Transformer blocks, we set the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "size of each attention head to 32, following [22]. The expansion rate for the inverted bottleneck is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 374, + 122 + ], + "score": 1.0, + "content": "always 4 and the expansion (shrink) rate for the SE is always 0.25.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 122, + 506, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 194 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
", + "type": "table", + "image_path": "84f510eacc36a4509902c6b3ea9d4f6ed24dfc3c9e12f559c758703dee925573.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 122, + 506, + 146.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.0, + 506, + 170.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 170.0, + 506, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 506, + 263 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 105, + 208, + 507, + 264 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "Data Augmentation & Regularization. In this work, we only consider two widely used data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "augmentations, namely RandAugment [45] and MixUp [46], and three common techniques, including", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 311 + ], + "score": 1.0, + "content": "stochastic depth [47], label smoothing [48] and weight decay [49], to regularize the model. Intuitively,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "the specific hyper-parameters of the augmentation and regularization methods depend on model size", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 504, + 332 + ], + "score": 1.0, + "content": "and data scale, where strong regularization is usually applied for larger models and smaller dataset.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 275, + 507, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "Under the general principle, a complication under the current paradigm is how to adjust the regular-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "ization for pre-training and finetuning as data size can change. Specifically, we have an interesting", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "observation that if a certain type of augmentation is entirely disabled during pre-training, simply", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 507, + 382 + ], + "score": 1.0, + "content": "turning it on during fine-tuning would most likely harm the performance rather than improving.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "We conjecture this could be related to data distribution shift. As a result, for certain runs of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "proposed model, we deliberately apply RandAugment and stochastic depth of a small degree when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "pre-training on the two larger datasets, ImageNet21-K and JFT. Although such regularization can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 426 + ], + "score": 1.0, + "content": "harm the pre-training metrics, this allows more versatile regularization and augmentation during", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 348, + 435 + ], + "score": 1.0, + "content": "finetuning, leading to improved down-stream performances.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 335, + 507, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 187, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "4.2 Main Results", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 476, + 293, + 622 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 293, + 622 + ], + "score": 0.97, + "type": "image", + "image_path": "cf1567b93b834a38bb5d149ee37f969799ca7bcd6b3f63af756a7cd673e8c469.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 110, + 476, + 293, + 489.27272727272725 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 110, + 489.27272727272725, + 293, + 502.5454545454545 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 110, + 502.5454545454545, + 293, + 515.8181818181818 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 110, + 515.8181818181818, + 293, + 529.090909090909 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 110, + 529.090909090909, + 293, + 542.3636363636363 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 110, + 542.3636363636363, + 293, + 555.6363636363635 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 110, + 555.6363636363635, + 293, + 568.9090909090908 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 110, + 568.9090909090908, + 293, + 582.181818181818 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 110, + 582.181818181818, + 293, + 595.4545454545453 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 595.4545454545453, + 293, + 608.7272727272725 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 110, + 608.7272727272725, + 293, + 621.9999999999998 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 632, + 299, + 654 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 300, + 644 + ], + "score": 1.0, + "content": "Figure 2: Accuracy-to-FLOPs scaling curve un-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 642, + 278, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 237, + 655 + ], + "score": 1.0, + "content": "der ImageNet-1K only setting at", + "type": "text" + }, + { + "bbox": [ + 238, + 642, + 274, + 653 + ], + "score": 0.64, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 642, + 278, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.0 + } + ], + "index": 43.5 + }, + { + "type": "image", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 314, + 477, + 498, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "spans": [ + { + "bbox": [ + 314, + 477, + 498, + 622 + ], + "score": 0.972, + "type": "image", + "image_path": "f8c09d4a039db4e8c22000a3a3a66bae5de7e541a68ec3f2c6a6234546bf4ac2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 314, + 477, + 498, + 490.1818181818182 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 490.1818181818182, + 498, + 503.3636363636364 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 503.3636363636364, + 498, + 516.5454545454545 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 516.5454545454545, + 498, + 529.7272727272726 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 529.7272727272726, + 498, + 542.9090909090908 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 542.9090909090908, + 498, + 556.0909090909089 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 556.0909090909089, + 498, + 569.272727272727 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 569.272727272727, + 498, + 582.4545454545452 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 582.4545454545452, + 498, + 595.6363636363633 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 595.6363636363633, + 498, + 608.8181818181814 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 608.8181818181814, + 498, + 621.9999999999995 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 632, + 503, + 654 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 309, + 631, + 504, + 644 + ], + "score": 1.0, + "content": "Figure 3: Accuracy-to-Params scaling curve un-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 309, + 640, + 489, + 657 + ], + "spans": [ + { + "bbox": [ + 309, + 640, + 367, + 657 + ], + "score": 1.0, + "content": "der ImageNet-", + "type": "text" + }, + { + "bbox": [ + 368, + 643, + 399, + 653 + ], + "score": 0.65, + "content": "2 1 \\mathrm { K } \\Rightarrow", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 640, + 489, + 657 + ], + "score": 1.0, + "content": "ImageNet-1K setting.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.0 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 507, + 680 + ], + "score": 1.0, + "content": "ImageNet-1K The experiment results with only the ImageNet-1K dataset are shown in Table 4.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "Under similar conditions, the proposed CoAtNet models not only outperform ViT variants, but also", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "match the best convolution-only architectures, i.e., EfficientNet-V2 and NFNets. Additionally, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 273, + 713 + ], + "score": 1.0, + "content": "also visualize the all results at resolution", + "type": "text" + }, + { + "bbox": [ + 273, + 700, + 310, + 711 + ], + "score": 0.51, + "content": "2 2 4 \\mathbf { x } 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "in Fig. 2. As we can see, CoAtNet scales much", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 311, + 723 + ], + "score": 1.0, + "content": "better than previous model with attention modules.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 55, + "bbox_fs": [ + 105, + 667, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 68, + 506, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 471, + 82 + ], + "score": 1.0, + "content": "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only;", + "type": "text" + }, + { + "bbox": [ + 471, + 69, + 505, + 79 + ], + "score": 0.83, + "content": "2 1 \\mathtt { K } + 1 \\mathtt { K }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "score": 1.0, + "content": "denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "score": 1.0, + "content": "RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "score": 1.0, + "content": "longer than the standard 90 epochs. More results are in Appendix A.3.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "type": "table", + "image_path": "07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 105, + 111, + 516, + 244.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 105, + 244.33333333333334, + 516, + 377.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 377.6666666666667, + 516, + 511.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "score": 1.0, + "content": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "training, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 562, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 396, + 575 + ], + "score": 1.0, + "content": "models. Notably, the best CoAtNet variant achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 396, + 563, + 428, + 573 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 562, + 507, + 575 + ], + "score": 1.0, + "content": ", matching the ViT-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "H/14 performance of", + "type": "text" + }, + { + "bbox": [ + 192, + 574, + 224, + 584 + ], + "score": 0.89, + "content": "8 8 . 5 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 573, + 352, + 586 + ], + "score": 1.0, + "content": ", which requires pre-training the", + "type": "text" + }, + { + "bbox": [ + 352, + 574, + 372, + 584 + ], + "score": 0.76, + "content": "2 . 3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 573, + 462, + 586 + ], + "score": 1.0, + "content": "larger ViT model on a", + "type": "text" + }, + { + "bbox": [ + 462, + 574, + 479, + 584 + ], + "score": 0.76, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 282, + 597 + ], + "score": 1.0, + "content": "proprietary weakly labeled dataset (JFT) for", + "type": "text" + }, + { + "bbox": [ + 282, + 585, + 301, + 595 + ], + "score": 0.82, + "content": "2 . 2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "more steps. This marks a dramatic improvement in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "score": 1.0, + "content": "both data efficiency and computation efficiency.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 648, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 232, + 665 + ], + "score": 1.0, + "content": "with JFT-300M set by NFNet-", + "type": "text" + }, + { + "bbox": [ + 232, + 651, + 249, + 661 + ], + "score": 0.64, + "content": "\\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 648, + 305, + 665 + ], + "score": 1.0, + "content": ", while being", + "type": "text" + }, + { + "bbox": [ + 305, + 651, + 317, + 661 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 648, + 506, + 665 + ], + "score": 1.0, + "content": "more efficient in terms of both TPU training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "time and parameter count. When we scale up the model to consume similar training resource as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 137, + 685 + ], + "score": 1.0, + "content": "NFNet-", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 155, + 683 + ], + "score": 0.82, + "content": ". \\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 672, + 240, + 685 + ], + "score": 1.0, + "content": ", CoAtNet-5 reaches", + "type": "text" + }, + { + "bbox": [ + 240, + 673, + 273, + 683 + ], + "score": 0.87, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "on top-1 accuracy, outperforming previous results under", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "score": 1.0, + "content": "comparable settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 337, + 723 + ], + "score": 1.0, + "content": "same JFT-3B dataset of an even larger size [26], with over", + "type": "text" + }, + { + "bbox": [ + 337, + 711, + 349, + 721 + ], + "score": 0.39, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "less computation, CoAtNet-6 is able to", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 68, + 506, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 68, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 68, + 471, + 82 + ], + "score": 1.0, + "content": "Table 4: Model performance on ImageNet. 1K only denotes training on ImageNet-1K only;", + "type": "text" + }, + { + "bbox": [ + 471, + 69, + 505, + 79 + ], + "score": 0.83, + "content": "2 1 \\mathtt { K } + 1 \\mathtt { K }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 94 + ], + "score": 1.0, + "content": "denotes pre-training on ImageNet-21K and finetuning on ImageNet-1K; PT-RA denotes applying", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 103 + ], + "score": 1.0, + "content": "RandAugment during 21K pre-training, and E150 means 150 epochs of 21K pre-training, which is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 390, + 114 + ], + "score": 1.0, + "content": "longer than the standard 90 epochs. More results are in Appendix A.3.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 111, + 516, + 511 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 516, + 511 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
", + "type": "table", + "image_path": "07c0ff9e9c5c785f3c33e97ba94f2023e40f027155a317dec4e0af0e0e53d4b3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 105, + 111, + 516, + 244.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 105, + 244.33333333333334, + 516, + 377.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 377.6666666666667, + 516, + 511.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 507, + 554 + ], + "score": 1.0, + "content": "ImageNet-21K As we can see from Table 4 and Fig. 3, when ImageNet-21K is used for pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "training, the advantage of CoAtNet becomes more obvious, substantially outperforming all previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 562, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 396, + 575 + ], + "score": 1.0, + "content": "models. Notably, the best CoAtNet variant achieves a top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 396, + 563, + 428, + 573 + ], + "score": 0.88, + "content": "8 8 . 5 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 562, + 507, + 575 + ], + "score": 1.0, + "content": ", matching the ViT-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "H/14 performance of", + "type": "text" + }, + { + "bbox": [ + 192, + 574, + 224, + 584 + ], + "score": 0.89, + "content": "8 8 . 5 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 573, + 352, + 586 + ], + "score": 1.0, + "content": ", which requires pre-training the", + "type": "text" + }, + { + "bbox": [ + 352, + 574, + 372, + 584 + ], + "score": 0.76, + "content": "2 . 3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 573, + 462, + 586 + ], + "score": 1.0, + "content": "larger ViT model on a", + "type": "text" + }, + { + "bbox": [ + 462, + 574, + 479, + 584 + ], + "score": 0.76, + "content": "2 3 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 282, + 597 + ], + "score": 1.0, + "content": "proprietary weakly labeled dataset (JFT) for", + "type": "text" + }, + { + "bbox": [ + 282, + 585, + 301, + 595 + ], + "score": 0.82, + "content": "2 . 2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "more steps. This marks a dramatic improvement in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 300, + 609 + ], + "score": 1.0, + "content": "both data efficiency and computation efficiency.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 540, + 507, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "JFT Finally, in Table 5, we further evaluate CoAtNet under the large-scale data regime with JFT-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "300M and JFT-3B. Encouragingly, our CoAtNet-4 can almost match the best previous performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 648, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 232, + 665 + ], + "score": 1.0, + "content": "with JFT-300M set by NFNet-", + "type": "text" + }, + { + "bbox": [ + 232, + 651, + 249, + 661 + ], + "score": 0.64, + "content": "\\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 648, + 305, + 665 + ], + "score": 1.0, + "content": ", while being", + "type": "text" + }, + { + "bbox": [ + 305, + 651, + 317, + 661 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 648, + 506, + 665 + ], + "score": 1.0, + "content": "more efficient in terms of both TPU training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "time and parameter count. When we scale up the model to consume similar training resource as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 137, + 685 + ], + "score": 1.0, + "content": "NFNet-", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 155, + 683 + ], + "score": 0.82, + "content": ". \\mathrm { F 4 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 672, + 240, + 685 + ], + "score": 1.0, + "content": ", CoAtNet-5 reaches", + "type": "text" + }, + { + "bbox": [ + 240, + 673, + 273, + 683 + ], + "score": 0.87, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "on top-1 accuracy, outperforming previous results under", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 191, + 698 + ], + "score": 1.0, + "content": "comparable settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 629, + 506, + 698 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Moreover, as we further push the training resource towards the level used by ViT-G/14 and utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 337, + 723 + ], + "score": 1.0, + "content": "same JFT-3B dataset of an even larger size [26], with over", + "type": "text" + }, + { + "bbox": [ + 337, + 711, + 349, + 721 + ], + "score": 0.39, + "content": "4 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "less computation, CoAtNet-6 is able to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 210, + 308 + ], + "score": 1.0, + "content": "match the performance of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 210, + 295, + 248, + 306 + ], + "score": 0.25, + "content": "\\mathrm { V i T - G } / 1 4", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 249, + 295, + 260, + 308 + ], + "score": 1.0, + "content": "of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 261, + 295, + 292, + 306 + ], + "score": 0.89, + "content": "9 0 . 4 5 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 292, + 295, + 332, + 308 + ], + "score": 1.0, + "content": ", and with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 333, + 295, + 351, + 306 + ], + "score": 0.74, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "less computation, CoAtNet-7 achieves", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 306, + 441, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 138, + 317 + ], + "score": 0.86, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 139, + 306, + 213, + 319 + ], + "score": 1.0, + "content": "on top-1 accuracy", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 213, + 306, + 245, + 317 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 245, + 306, + 441, + 319 + ], + "score": 1.0, + "content": ", achieving the new state-of-the-art performance.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 699, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 67, + 506, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "score": 1.0, + "content": "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pre-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "score": 1.0, + "content": "training time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "score": 1.0, + "content": "for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26].", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "type": "table", + "image_path": "4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 124, + 511, + 177.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 177.33333333333334, + 511, + 230.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 230.66666666666669, + 511, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 210, + 308 + ], + "score": 1.0, + "content": "match the performance of", + "type": "text" + }, + { + "bbox": [ + 210, + 295, + 248, + 306 + ], + "score": 0.25, + "content": "\\mathrm { V i T - G } / 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 295, + 260, + 308 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 261, + 295, + 292, + 306 + ], + "score": 0.89, + "content": "9 0 . 4 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 295, + 332, + 308 + ], + "score": 1.0, + "content": ", and with", + "type": "text" + }, + { + "bbox": [ + 333, + 295, + 351, + 306 + ], + "score": 0.74, + "content": "1 . 5 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "less computation, CoAtNet-7 achieves", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 306, + 441, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 138, + 317 + ], + "score": 0.86, + "content": "8 9 . 7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 306, + 213, + 319 + ], + "score": 1.0, + "content": "on top-1 accuracy", + "type": "text" + }, + { + "bbox": [ + 213, + 306, + 245, + 317 + ], + "score": 0.87, + "content": "9 0 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 306, + 441, + 319 + ], + "score": 1.0, + "content": ", achieving the new state-of-the-art performance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 201, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "score": 1.0, + "content": "4.3 Ablation Studies", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 356, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "score": 1.0, + "content": "In this section, we will ablate our design choices for CoAtNet.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Firstly, we study the importance of the relative attention from combining convolution and attention", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "into a single computation unit. Specifically, we compare two models, one with the relative attention", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "setting, the relative attention variant achieves a substantially better transfer accuracy, despite their", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "score": 1.0, + "content": "very close pre-training performances. This suggests the main advantage of relative attention in visual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "score": 1.0, + "content": "processing is not in higher capacity but in better generalization.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "table", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 228, + 462, + 383, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "spans": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "score": 1.0, + "content": "Table 6: Ablation on relative attention.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "spans": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "type": "table", + "image_path": "00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 118, + 473, + 490, + 498.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 118, + 498.0, + 490, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 118, + 523.0, + 490, + 548.0 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "table", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 561, + 386, + 572 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "spans": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "score": 1.0, + "content": "Table 7: Ablation on architecture layout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "spans": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "type": "table", + "image_path": "06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 139, + 573, + 469, + 600.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 139, + 600.6666666666666, + 469, + 628.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 139, + 628.3333333333333, + 469, + 655.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "score": 1.0, + "content": "we compare a few different layouts that we experimented with in Table 7.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 67, + 506, + 123 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "spans": [ + { + "bbox": [ + 106, + 66, + 506, + 79 + ], + "score": 1.0, + "content": "Table 5: Performance Comparison on large-scale JFT dataset. TPUv3-core-days denotes the pre-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 90 + ], + "score": 1.0, + "content": "training time, Top-1 Accuracy denotes the finetuned accuracy on ImageNet. Note that the last 3 rows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 89, + 506, + 102 + ], + "score": 1.0, + "content": "use a larger dataset JFT-3B [26] for pre-training, while others use JFT-300M [15]. See Appendix A.2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 113 + ], + "score": 1.0, + "content": "for the size details of CoAtNet-5/6/7. †: Down-sampling in the MBConv block is achieved by stride-2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Depthwise Convolution. ⇧: ViT-G/14 computation consumption is read from Fig. 1 of the paper [26].", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 124, + 511, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 511, + 284 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
", + "type": "table", + "image_path": "4da8c9ad6e7a2eb2d4e66c521d47f928929362333fe2c47dcf4ccbd3f89040eb.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 124, + 511, + 177.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 177.33333333333334, + 511, + 230.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 230.66666666666669, + 511, + 284.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 106, + 295, + 505, + 319 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 201, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 203, + 343 + ], + "score": 1.0, + "content": "4.3 Ablation Studies", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 356, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 363 + ], + "score": 1.0, + "content": "In this section, we will ablate our design choices for CoAtNet.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 350, + 357, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Firstly, we study the importance of the relative attention from combining convolution and attention", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "into a single computation unit. Specifically, we compare two models, one with the relative attention", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "and the other without, under both the ImageNet-1K alone and ImageNet-21K transfer setting. As we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "can see from Table 6, when only the ImageNet-1K is used, relative attention clearly outperforms the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "standard attention, indicating a better generalization. In addition, under the ImageNet-21K transfer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "setting, the relative attention variant achieves a substantially better transfer accuracy, despite their", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 444 + ], + "score": 1.0, + "content": "very close pre-training performances. This suggests the main advantage of relative attention in visual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 362, + 456 + ], + "score": 1.0, + "content": "processing is not in higher capacity but in better generalization.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 366, + 506, + 456 + ] + }, + { + "type": "table", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 228, + 462, + 383, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "spans": [ + { + "bbox": [ + 226, + 460, + 384, + 474 + ], + "score": 1.0, + "content": "Table 6: Ablation on relative attention.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 118, + 473, + 490, + 548 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "spans": [ + { + "bbox": [ + 118, + 473, + 490, + 548 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
", + "type": "table", + "image_path": "00ceb486f1a8197ca19a9f75354b351e896ee887a8c0a4bb90f5cf09fdd07a32.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 118, + 473, + 490, + 498.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 118, + 498.0, + 490, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 118, + 523.0, + 490, + 548.0 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "table", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 561, + 386, + 572 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "spans": [ + { + "bbox": [ + 223, + 560, + 388, + 573 + ], + "score": 1.0, + "content": "Table 7: Ablation on architecture layout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 139, + 573, + 469, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "spans": [ + { + "bbox": [ + 139, + 573, + 469, + 656 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
", + "type": "table", + "image_path": "06fc157c275539a26e5cec13a54703dca4447c0c9a577af5fa97836a983d1abe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 139, + 573, + 469, + 600.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 139, + 600.6666666666666, + 469, + 628.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 139, + 628.3333333333333, + 469, + 655.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Secondly, as S2 with MBConv blocks and S3 with relative Transformer blocks occupy most of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "computation of the CoAtNet, a question to ask is how to split the computation between S2 (MBConv)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "and S3 (Transformer) to achieve a good performance. In practice, it boils down to deciding the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "number of blocks to have in each stage, which we will refer to as “layout” design. For this purpose,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 402, + 723 + ], + "score": 1.0, + "content": "we compare a few different layouts that we experimented with in Table 7.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 667, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 195, + 68, + 415, + 78 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "spans": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "score": 1.0, + "content": "Table 8: Ablation on head size and normalization type.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "spans": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "type": "table", + "image_path": "622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 79, + 470, + 107.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 107.66666666666667, + 470, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 136.33333333333334, + 470, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "score": 1.0, + "content": "S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "spans": [ + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "score": 1.0, + "content": "generalize well.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "capacity is often regarded more important, we further compare V0 and V1 under the ImageNet-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "V0. Again, this suggests the importance of convolution in achieving good transferability and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "spans": [ + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "score": 1.0, + "content": "generalization.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "Lastly, we study two choices of model details, namely the dimension of each attention (default to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 493, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 245, + 369 + ], + "score": 1.0, + "content": "performance, while BatchNorm is", + "type": "text" + }, + { + "bbox": [ + 245, + 356, + 283, + 367 + ], + "score": 0.88, + "content": "10 - 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 355, + 493, + 369 + ], + "score": 1.0, + "content": "faster on TPU depending on the per-core batch size.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 383, + 183, + 396 + ], + "lines": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "In this paper, we systematically study the properties of convolutions and Transformers, which leads", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "to a principled way to combine them into a new family of models named CoAtNet. Extensive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "capacity like Transformers, achieving state-of-the-art performances under different data sizes and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "score": 1.0, + "content": "computation budgets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "Note that this paper currently focuses on ImageNet classification for model development. However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "we believe our approach is applicable to broader applications like object detection and semantic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "score": 1.0, + "content": "segmentation. We will leave them for future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 195, + 68, + 415, + 78 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "spans": [ + { + "bbox": [ + 194, + 65, + 416, + 81 + ], + "score": 1.0, + "content": "Table 8: Ablation on head size and normalization type.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 79, + 470, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "spans": [ + { + "bbox": [ + 138, + 79, + 470, + 165 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
", + "type": "table", + "image_path": "622bb1939958732b44fe6505260003f83b893fe0388e4f1de344e047e3c173b0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 79, + 470, + 107.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 107.66666666666667, + 470, + 136.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 136.33333333333334, + 470, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "• If we keep the total number of blocks in S2 and S3 fixed and vary the number in each stage, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "observe that V0 is a sweet spot between V1 and V2. Basically, having more Transformer blocks in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 207, + 506, + 219 + ], + "score": 1.0, + "content": "S3 generally leads to better performance until the number of MBConv blocks in S2 is too small to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "spans": [ + { + "bbox": [ + 114, + 219, + 181, + 229 + ], + "score": 1.0, + "content": "generalize well.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 184, + 506, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "• To further evaluate whether the sweet spot also holds in the transfer setting, where a higher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "capacity is often regarded more important, we further compare V0 and V1 under the ImageNet-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "21K transferring to ImageNet-1K setup. Interestingly, despite that V1 and V0 have the same", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 113, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "performance during ImageNet-21K pre-training, the transfer accuracy of V1 clearly falls behind", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 113, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "V0. Again, this suggests the importance of convolution in achieving good transferability and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "spans": [ + { + "bbox": [ + 113, + 286, + 177, + 297 + ], + "score": 1.0, + "content": "generalization.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 230, + 506, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "Lastly, we study two choices of model details, namely the dimension of each attention (default to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "32) head as well as the type of normalization (default to BatchNorm) used in MBConv blocks. From", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "Table 8, we can see increasing head size from 32 to 64 can slightly hurt performance, though it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "actually improves the TPU speed by a significant amount. In practice, this will be a quality-speed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "trade-off one can make. On the other hand, BatchNorm and LayerNorm have almost the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 493, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 245, + 369 + ], + "score": 1.0, + "content": "performance, while BatchNorm is", + "type": "text" + }, + { + "bbox": [ + 245, + 356, + 283, + 367 + ], + "score": 0.88, + "content": "10 - 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 355, + 493, + 369 + ], + "score": 1.0, + "content": "faster on TPU depending on the per-core batch size.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 302, + 506, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 383, + 183, + 396 + ], + "lines": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 185, + 399 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 407, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "In this paper, we systematically study the properties of convolutions and Transformers, which leads", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "to a principled way to combine them into a new family of models named CoAtNet. Extensive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "experiments show that CoAtNet enjoys both good generalization like ConvNets and superior model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "capacity like Transformers, achieving state-of-the-art performances under different data sizes and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 195, + 465 + ], + "score": 1.0, + "content": "computation budgets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 407, + 506, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "Note that this paper currently focuses on ImageNet classification for model development. However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "we believe our approach is applicable to broader applications like object detection and semantic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 310, + 501 + ], + "score": 1.0, + "content": "segmentation. We will leave them for future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 466, + 506, + 501 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 163, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 95, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "score": 1.0, + "content": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "score": 1.0, + "content": "convolutional neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "spans": [ + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "score": 1.0, + "content": "1097–1105, 2012.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "score": 1.0, + "content": "[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "score": 1.0, + "content": "image recognition. In ICLR, 2015.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "score": 1.0, + "content": "[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "spans": [ + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "score": 1.0, + "content": "recognition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "score": 1.0, + "content": "networks. ICML, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "score": 1.0, + "content": "[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "score": 1.0, + "content": "7794–7803, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "score": 1.0, + "content": "on Computer Vision, pages 3286–3295, 2019.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "spans": [ + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "score": 1.0, + "content": "[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "spans": [ + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "score": 1.0, + "content": "Applications of Computer Vision, pages 3531–3539, 2021.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "score": 1.0, + "content": "An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "spans": [ + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "score": 1.0, + "content": "arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "spans": [ + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "score": 1.0, + "content": "recognition, pages 248–255. Ieee, 2009.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "score": 1.0, + "content": "[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "effectiveness of data in deep learning era. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "spans": [ + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "score": 1.0, + "content": "on computer vision, pages 843–852, 2017.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "spans": [ + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "score": 1.0, + "content": "Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 26 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 163, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 106, + 95, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 107 + ], + "score": 1.0, + "content": "[1] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 126, + 102, + 506, + 118 + ], + "score": 1.0, + "content": "convolutional neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "spans": [ + { + "bbox": [ + 128, + 114, + 203, + 127 + ], + "score": 1.0, + "content": "1097–1105, 2012.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 506, + 144 + ], + "score": 1.0, + "content": "[2] Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 140, + 269, + 154 + ], + "score": 1.0, + "content": "image recognition. In ICLR, 2015.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 506, + 170 + ], + "score": 1.0, + "content": "[3] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "spans": [ + { + "bbox": [ + 126, + 166, + 246, + 181 + ], + "score": 1.0, + "content": "recognition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[4] Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov,", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 128, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 154, + 228 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 111, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "[5] Mingxing Tan and Quoc V. Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 225, + 254 + ], + "score": 1.0, + "content": "networks. ICML, 2019.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 110, + 254, + 506, + 269 + ], + "score": 1.0, + "content": "[6] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 127, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. arXiv preprint arXiv:1706.03762,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 154, + 291 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "[7] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 155, + 328 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 110, + 329, + 507, + 343 + ], + "score": 1.0, + "content": "[8] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 127, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 352, + 363, + 365 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 110, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "[9] Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 126, + 377, + 506, + 393 + ], + "score": 1.0, + "content": "In Proceedings of the IEEE conference on computer vision and pattern recognition, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 204, + 402 + ], + "score": 1.0, + "content": "7794–7803, 2018.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "[10] Irwan Bello, Barret Zoph, Ashish Vaswani, Jonathon Shlens, and Quoc V Le. Attention", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "augmented convolutional networks. In Proceedings of the IEEE/CVF International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 426, + 313, + 439 + ], + "score": 1.0, + "content": "on Computer Vision, pages 3286–3295, 2019.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "[11] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 450, + 507, + 466 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "spans": [ + { + "bbox": [ + 126, + 462, + 155, + 477 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 507, + 492 + ], + "score": 1.0, + "content": "[12] Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Efficient attention:", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 126, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Attention with linear complexities. In Proceedings of the IEEE/CVF Winter Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "spans": [ + { + "bbox": [ + 125, + 499, + 363, + 513 + ], + "score": 1.0, + "content": "Applications of Computer Vision, pages 3531–3539, 2021.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "[13] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 507, + 540 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 506, + 551 + ], + "score": 1.0, + "content": "An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "spans": [ + { + "bbox": [ + 126, + 548, + 231, + 561 + ], + "score": 1.0, + "content": "arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "spans": [ + { + "bbox": [ + 126, + 584, + 291, + 598 + ], + "score": 1.0, + "content": "recognition, pages 248–255. Ieee, 2009.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 614 + ], + "score": 1.0, + "content": "[15] Chen Sun, Abhinav Shrivastava, Saurabh Singh, and Abhinav Gupta. Revisiting unreasonable", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 127, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "effectiveness of data in deep learning era. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "spans": [ + { + "bbox": [ + 126, + 621, + 300, + 635 + ], + "score": 1.0, + "content": "on computer vision, pages 843–852, 2017.", + "type": "text" + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "[16] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 126, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 658, + 266, + 672 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "[17] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "spans": [ + { + "bbox": [ + 126, + 684, + 451, + 699 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text" + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[18] Daquan Zhou, Bingyi Kang, Xiaojie Jin, Linjie Yang, Xiaochen Lian, Qibin Hou, and Jiashi", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 499, + 725 + ], + "score": 1.0, + "content": "Feng. Deepvit: Towards deeper vision transformer. arXiv preprint arXiv:2103.11886, 2021.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "score": 1.0, + "content": "[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance large-", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "score": 1.0, + "content": "scale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "spans": [ + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "score": 1.0, + "content": "preprint arXiv:2103.12731, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "score": 1.0, + "content": "[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "score": 1.0, + "content": "arXiv:2103.14030, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "score": 1.0, + "content": "[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou,", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "spans": [ + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "score": 1.0, + "content": "preprint arXiv:2104.01136, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "score": 1.0, + "content": "Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "score": 1.0, + "content": "[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transform-", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "score": 1.0, + "content": "ers. arXiv preprint arXiv:2106.04560, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "spans": [ + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 4510–4520, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "score": 1.0, + "content": "efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "score": 1.0, + "content": "[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position repre-", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "spans": [ + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1803.02155, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "score": 1.0, + "content": "[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "spans": [ + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "score": 1.0, + "content": "text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "are rnns: Fast autoregressive transformers with linear attention. In International Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "spans": [ + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "score": 1.0, + "content": "Machine Learning, pages 5156–5165. PMLR, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "score": 1.0, + "content": "[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane,", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "score": 1.0, + "content": "Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "score": 1.0, + "content": "attention with performers. arXiv preprint arXiv:2009.14794, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "score": 1.0, + "content": "Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909,", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "spans": [ + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings", + "type": "text", + "cross_page": true + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828,", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 44 + }, + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "spans": [ + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "score": 1.0, + "content": "arXiv:2012.12556, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan,", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "spans": [ + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "score": 1.0, + "content": "and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis", + "type": "text", + "cross_page": true + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text", + "cross_page": true + } + ], + "index": 49 + }, + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:1809.04281, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 50, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "spans": [ + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "score": 1.0, + "content": "arXiv:1901.02860, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "score": 1.0, + "content": "the lens of kernel. arXiv preprint arXiv:1908.11775, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "preprint arXiv:2102.08602, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "score": 1.0, + "content": "conference on computer vision and pattern recognition, pages 7132–7141, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "spans": [ + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "score": 1.0, + "content": "convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "spans": [ + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "spans": [ + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "score": 1.0, + "content": "empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "score": 1.0, + "content": "stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Re-", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. In Proceedings of the IEEE conference", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 2818–2826, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "score": 1.0, + "content": "[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:1711.05101, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "score": 1.0, + "content": "networks. In European conference on computer vision, pages 630–645. Springer, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "spans": [ + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "score": 1.0, + "content": "arXiv:1606.08415, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "score": 1.0, + "content": "sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236,", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + } + ], + "index": 26, + "bbox_fs": [ + 105, + 90, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 36, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "[19] Mingxing Tan and Quoc V Le. Efficientnetv2: Smaller models and faster training. ICML, 2021.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 103, + 86, + 507, + 104 + ], + "score": 1.0, + "content": "[20] Andrew Brock, Soham De, Samuel L Smith, and Karen Simonyan. High-performance large-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 482, + 114 + ], + "score": 1.0, + "content": "scale image recognition without normalization. arXiv preprint arXiv:2102.06171, 2021.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "[21] Ashish Vaswani, Prajit Ramachandran, Aravind Srinivas, Niki Parmar, Blake Hechtman, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "Jonathon Shlens. Scaling local self-attention for parameter efficient visual backbones. arXiv", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "spans": [ + { + "bbox": [ + 124, + 136, + 266, + 150 + ], + "score": 1.0, + "content": "preprint arXiv:2103.12731, 2021.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 167 + ], + "score": 1.0, + "content": "[22] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 175, + 231, + 187 + ], + "score": 1.0, + "content": "arXiv:2103.14030, 2021.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 104, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "[23] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 126, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "Cvt: Introducing convolutions to vision transformers. arXiv preprint arXiv:2103.15808, 2021.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 507, + 231 + ], + "score": 1.0, + "content": "[24] Ben Graham, Alaaeldin El-Nouby, Hugo Touvron, Pierre Stock, Armand Joulin, Hervé Jégou,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 127, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "and Matthijs Douze. Levit: a vision transformer in convnet’s clothing for faster inference. arXiv", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "spans": [ + { + "bbox": [ + 125, + 239, + 267, + 252 + ], + "score": 1.0, + "content": "preprint arXiv:2104.01136, 2021.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "[25] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis EH Tay, Jiashi Feng, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 265, + 507, + 280 + ], + "score": 1.0, + "content": "Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 277, + 292, + 291 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 507, + 306 + ], + "score": 1.0, + "content": "[26] Xiaohua Zhai, Alexander Kolesnikov, Neil Houlsby, and Lucas Beyer. Scaling vision transform-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 308, + 317 + ], + "score": 1.0, + "content": "ers. arXiv preprint arXiv:2106.04560, 2021.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "[27] Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Mobilenetv2: Inverted residuals and linear bottlenecks. In Proceedings of the IEEE conference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "spans": [ + { + "bbox": [ + 125, + 341, + 407, + 354 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 4510–4520, 2018.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "[28] Laurent Sifre. Rigid-motion scattering for image classification. Ph.D. thesis section 6.2, 2014.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "[29] Mirgahney Mohamed, Gabriele Cesa, Taco S Cohen, and Max Welling. A data and compute", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 383, + 501, + 396 + ], + "score": 1.0, + "content": "efficient design for limited-resources deep learning. arXiv preprint arXiv:2004.09691, 2020.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 413 + ], + "score": 1.0, + "content": "[30] Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position repre-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "spans": [ + { + "bbox": [ + 127, + 411, + 336, + 423 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1803.02155, 2018.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 507, + 439 + ], + "score": 1.0, + "content": "[31] Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 128, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "spans": [ + { + "bbox": [ + 126, + 447, + 390, + 461 + ], + "score": 1.0, + "content": "text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "[32] Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "are rnns: Fast autoregressive transformers with linear attention. In International Conference on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "spans": [ + { + "bbox": [ + 126, + 485, + 339, + 499 + ], + "score": 1.0, + "content": "Machine Learning, pages 5156–5165. PMLR, 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 507, + 514 + ], + "score": 1.0, + "content": "[33] Krzysztof Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 509, + 507, + 527 + ], + "score": 1.0, + "content": "Tamas Sarlos, Peter Hawkins, Jared Davis, Afroz Mohiuddin, Lukasz Kaiser, et al. Rethinking", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 397, + 536 + ], + "score": 1.0, + "content": "attention with performers. arXiv preprint arXiv:2009.14794, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "[34] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 126, + 549, + 507, + 564 + ], + "score": 1.0, + "content": "Jonathon Shlens. Stand-alone self-attention in vision models. arXiv preprint arXiv:1906.05909,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "spans": [ + { + "bbox": [ + 126, + 559, + 155, + 574 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "[35] Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 126, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Quoc V Le. Mnasnet: Platform-aware neural architecture search for mobile. In Proceedings", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 126, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2820–2828,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 155, + 623 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "[36] Kai Han, Yunhe Wang, Hanting Chen, Xinghao Chen, Jianyuan Guo, Zhenhua Liu, Yehui", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 127, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Tang, An Xiao, Chunjing Xu, Yixing Xu, et al. A survey on visual transformer. arXiv preprint", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "spans": [ + { + "bbox": [ + 125, + 645, + 232, + 659 + ], + "score": 1.0, + "content": "arXiv:2012.12556, 2020.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "[37] Salman Khan, Muzammal Naseer, Munawar Hayat, Syed Waqas Zamir, Fahad Shahbaz Khan,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "spans": [ + { + "bbox": [ + 126, + 673, + 507, + 687 + ], + "score": 1.0, + "content": "and Mubarak Shah. Transformers in vision: A survey. arXiv preprint arXiv:2101.01169, 2021.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[38] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Noam Shazeer, Ian Simon, Curtis", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 126, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Hawthorne, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 342, + 723 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:1809.04281, 2018.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 25 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 36, + 507, + 727 + ], + "lines": [], + "index": 25, + "bbox_fs": [ + 103, + 72, + 507, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 68, + 507, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "[39] Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "spans": [ + { + "bbox": [ + 128, + 95, + 230, + 106 + ], + "score": 1.0, + "content": "arXiv:1901.02860, 2019.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "[40] Yao-Hung Hubert Tsai, Shaojie Bai, Makoto Yamada, Louis-Philippe Morency, and Ruslan", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 127, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Salakhutdinov. Transformer dissection: A unified understanding of transformer’s attention via", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 365, + 143 + ], + "score": 1.0, + "content": "the lens of kernel. arXiv preprint arXiv:1908.11775, 2019.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "[41] Irwan Bello. Lambdanetworks: Modeling long-range interactions without attention. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 127, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "preprint arXiv:2102.08602, 2021.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "[42] Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Proceedings of the IEEE", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 452, + 195 + ], + "score": 1.0, + "content": "conference on computer vision and pattern recognition, pages 7132–7141, 2018.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "[43] Kun Yuan, Shaopeng Guo, Ziwei Liu, Aojun Zhou, Fengwei Yu, and Wei Wu. Incorporating", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "spans": [ + { + "bbox": [ + 126, + 208, + 473, + 222 + ], + "score": 1.0, + "content": "convolution designs into visual transformers. arXiv preprint arXiv:2103.11816, 2021.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "[44] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 128, + 235, + 504, + 246 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 127, + 245, + 380, + 258 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "[45] Ekin D Cubuk, Barret Zoph, Jonathon Shlens, and Quoc V Le. Randaugment: Practical", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 127, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "automated data augmentation with a reduced search space. In Proceedings of the IEEE/CVF", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "spans": [ + { + "bbox": [ + 128, + 282, + 496, + 295 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops, pages 702–703, 2020.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "[46] Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "spans": [ + { + "bbox": [ + 127, + 308, + 407, + 320 + ], + "score": 1.0, + "content": "empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "[47] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Q Weinberger. Deep networks with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 127, + 334, + 507, + 347 + ], + "score": 1.0, + "content": "stochastic depth. In European conference on computer vision, pages 646–661. Springer, 2016.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "[48] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Re-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "thinking the inception architecture for computer vision. In Proceedings of the IEEE conference", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 371, + 406, + 383 + ], + "score": 1.0, + "content": "on computer vision and pattern recognition, pages 2818–2826, 2016.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 399 + ], + "score": 1.0, + "content": "[49] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 397, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:1711.05101, 2017.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "[50] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 479, + 435 + ], + "score": 1.0, + "content": "networks. In European conference on computer vision, pages 630–645. Springer, 2016.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "[51] Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "spans": [ + { + "bbox": [ + 127, + 448, + 231, + 460 + ], + "score": 1.0, + "content": "arXiv:1606.08415, 2016.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "[52] Zihang Dai, Guokun Lai, Yiming Yang, and Quoc V Le. Funnel-transformer: Filtering out", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 127, + 474, + 507, + 487 + ], + "score": 1.0, + "content": "sequential redundancy for efficient language processing. arXiv preprint arXiv:2006.03236,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 484, + 154, + 497 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 16.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 68, + 507, + 500 + ], + "lines": [], + "index": 16.5, + "bbox_fs": [ + 105, + 73, + 507, + 497 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_model.json b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3edf7db30115a1a834a0e42d78eb3820c55457d5 --- /dev/null +++ b/parse/train/dUk5Foj5CLf/dUk5Foj5CLf_model.json @@ -0,0 +1,13431 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 732, + 1303, + 732, + 1303, + 1214, + 398, + 1214 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1338, + 1404, + 1338, + 1404, + 1612, + 299, + 1612 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1626, + 1406, + 1626, + 1406, + 1931, + 298, + 1931 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 365, + 271, + 1337, + 271, + 1337, + 380, + 365, + 380 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 524, + 488, + 1177, + 488, + 1177, + 583, + 524, + 583 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 330, + 1955, + 1261, + 1955, + 1261, + 1984, + 330, + 1984 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 300, + 1269, + 530, + 1269, + 530, + 1307, + 300, + 1307 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1070, + 2033, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 788, + 660, + 912, + 660, + 912, + 697, + 788, + 697 + ], + "score": 0.892 + }, + { + "category_id": 13, + "poly": [ + 1038, + 1094, + 1128, + 1094, + 1128, + 1123, + 1038, + 1123 + ], + "score": 0.88, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 668, + 1064, + 744, + 1064, + 744, + 1093, + 668, + 1093 + ], + "score": 0.87, + "latex": "8 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1185, + 486, + 1185, + 486, + 1215, + 396, + 1215 + ], + "score": 0.85, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1155, + 442, + 1155, + 442, + 1183, + 396, + 1183 + ], + "score": 0.7, + "latex": "2 3 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 269.0, + 1340.0, + 269.0, + 1340.0, + 330.0, + 361.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 324.0, + 1035.0, + 324.0, + 1035.0, + 383.0, + 663.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1947.0, + 1267.0, + 1947.0, + 1267.0, + 1992.0, + 334.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 536.0, + 1266.0, + 536.0, + 1314.0, + 292.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 660.0, + 917.0, + 660.0, + 917.0, + 699.0, + 784.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 729.0, + 1304.0, + 729.0, + 1304.0, + 764.0, + 394.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 759.0, + 1306.0, + 759.0, + 1306.0, + 793.0, + 393.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 791.0, + 1306.0, + 791.0, + 1306.0, + 824.0, + 394.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 821.0, + 1305.0, + 821.0, + 1305.0, + 853.0, + 392.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 851.0, + 1307.0, + 851.0, + 1307.0, + 887.0, + 394.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 882.0, + 1307.0, + 882.0, + 1307.0, + 915.0, + 395.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 911.0, + 1305.0, + 911.0, + 1305.0, + 946.0, + 393.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 942.0, + 1304.0, + 942.0, + 1304.0, + 977.0, + 393.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 973.0, + 1306.0, + 973.0, + 1306.0, + 1008.0, + 392.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1002.0, + 1308.0, + 1002.0, + 1308.0, + 1038.0, + 394.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1035.0, + 1306.0, + 1035.0, + 1306.0, + 1068.0, + 394.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1063.0, + 667.0, + 1063.0, + 667.0, + 1098.0, + 393.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1063.0, + 1305.0, + 1063.0, + 1305.0, + 1098.0, + 745.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1093.0, + 1037.0, + 1093.0, + 1037.0, + 1129.0, + 393.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1093.0, + 1308.0, + 1093.0, + 1308.0, + 1129.0, + 1129.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1122.0, + 1305.0, + 1122.0, + 1305.0, + 1160.0, + 393.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1155.0, + 1306.0, + 1155.0, + 1306.0, + 1188.0, + 443.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1184.0, + 1273.0, + 1184.0, + 1273.0, + 1219.0, + 487.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1340.0, + 1404.0, + 1340.0, + 1404.0, + 1372.0, + 297.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 1406.0, + 1369.0, + 1406.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1431.0, + 1404.0, + 1431.0, + 1404.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1408.0, + 1459.0, + 1408.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1527.0, + 294.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1555.0, + 293.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1549.0, + 1406.0, + 1549.0, + 1406.0, + 1587.0, + 293.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1583.0, + 663.0, + 1583.0, + 663.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 1406.0, + 1624.0, + 1406.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1652.0, + 1408.0, + 1652.0, + 1408.0, + 1696.0, + 292.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1723.0, + 295.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1404.0, + 1718.0, + 1404.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 1406.0, + 1748.0, + 1406.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1777.0, + 1406.0, + 1777.0, + 1406.0, + 1814.0, + 292.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1844.0, + 295.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1838.0, + 1407.0, + 1838.0, + 1407.0, + 1876.0, + 292.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1870.0, + 1408.0, + 1870.0, + 1408.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1899.0, + 1404.0, + 1899.0, + 1404.0, + 1935.0, + 293.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 489.0, + 1162.0, + 489.0, + 1162.0, + 525.0, + 536.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 521.0, + 1020.0, + 521.0, + 1020.0, + 553.0, + 680.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 553.0, + 1181.0, + 553.0, + 1181.0, + 587.0, + 521.0, + 587.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 339, + 1404, + 339, + 1404, + 703, + 298, + 703 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 717, + 1405, + 717, + 1405, + 1054, + 297, + 1054 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1531, + 1404, + 1531, + 1404, + 1686, + 297, + 1686 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1699, + 1403, + 1699, + 1403, + 1821, + 297, + 1821 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 325, + 298, + 325 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1944, + 1400, + 1944, + 1400, + 2009, + 298, + 2009 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 568, + 1834, + 1127, + 1834, + 1127, + 1911, + 568, + 1911 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1470, + 841, + 1470, + 841, + 1504, + 300, + 1504 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 295, + 1190, + 1402, + 1190, + 1402, + 1253, + 295, + 1253 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 298, + 1112, + 442, + 1112, + 442, + 1149, + 298, + 1149 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1845, + 1399, + 1845, + 1399, + 1874, + 1366, + 1874 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 291, + 1385, + 1390, + 1385, + 1390, + 1420, + 291, + 1420 + ], + "score": 0.764 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 342, + 1266, + 1404, + 1266, + 1404, + 1372, + 342, + 1372 + ], + "score": 0.728 + }, + { + "category_id": 13, + "poly": [ + 375, + 1943, + 520, + 1943, + 520, + 1977, + 375, + 1977 + ], + "score": 0.92, + "latex": "x _ { i } , y _ { i } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1945, + 1218, + 1945, + 1218, + 1979, + 1165, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { L } ( i )" + }, + { + "category_id": 14, + "poly": [ + 568, + 1832, + 1127, + 1832, + 1127, + 1913, + 568, + 1913 + ], + "score": 0.91, + "latex": "y _ { i } = \\sum _ { j \\in \\mathcal { L } ( i ) } w _ { i - j } \\odot x _ { j } \\quad \\mathrm { ( d e p t h w i s e c o n v o l u t i o n ) } ," + }, + { + "category_id": 13, + "poly": [ + 449, + 961, + 503, + 961, + 503, + 990, + 449, + 990 + ], + "score": 0.88, + "latex": "2 3 \\times" + }, + { + "category_id": 13, + "poly": [ + 297, + 931, + 388, + 931, + 388, + 960, + 297, + 960 + ], + "score": 0.87, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1239, + 992, + 1331, + 992, + 1331, + 1021, + 1239, + 1021 + ], + "score": 0.87, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1327, + 839, + 1403, + 839, + 1403, + 870, + 1327, + 870 + ], + "score": 0.86, + "latex": "8 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 812, + 1979, + 824, + 1979, + 824, + 2003, + 812, + 2003 + ], + "score": 0.81, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 488, + 1979, + 500, + 1979, + 500, + 2003, + 488, + 2003 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 945, + 1949, + 958, + 1949, + 958, + 1973, + 945, + 1973 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 365, + 1022, + 417, + 1022, + 417, + 1051, + 365, + 1051 + ], + "score": 0.67, + "latex": "1 . 5 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 619, + 1626, + 652, + 1626, + 652, + 1653, + 619, + 1653 + ], + "score": 0.56, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1626, + 964, + 1626, + 964, + 1653, + 932, + 1653 + ], + "score": 0.46, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1469.0, + 844.0, + 1469.0, + 844.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1107.0, + 447.0, + 1107.0, + 447.0, + 1156.0, + 291.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 371.0, + 1404.0, + 371.0, + 1404.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1405.0, + 399.0, + 1405.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 432.0, + 1405.0, + 432.0, + 1405.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1405.0, + 461.0, + 1405.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1406.0, + 492.0, + 1406.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1404.0, + 521.0, + 1404.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1404.0, + 552.0, + 1404.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 1406.0, + 584.0, + 1406.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 647.0, + 293.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 639.0, + 1405.0, + 639.0, + 1405.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 886.0, + 673.0, + 886.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 754.0, + 295.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 1407.0, + 809.0, + 1407.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 1326.0, + 838.0, + 1326.0, + 873.0, + 295.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 908.0, + 292.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 898.0, + 1406.0, + 898.0, + 1406.0, + 938.0, + 292.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 931.0, + 1403.0, + 931.0, + 1403.0, + 966.0, + 389.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 448.0, + 959.0, + 448.0, + 997.0, + 292.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 997.0, + 504.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1238.0, + 991.0, + 1238.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 991.0, + 1403.0, + 991.0, + 1403.0, + 1026.0, + 1332.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 364.0, + 1022.0, + 364.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1022.0, + 1025.0, + 1022.0, + 1025.0, + 1057.0, + 418.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1566.0, + 296.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1563.0, + 1404.0, + 1563.0, + 1404.0, + 1597.0, + 297.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1623.0, + 618.0, + 1623.0, + 618.0, + 1660.0, + 295.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1623.0, + 931.0, + 1623.0, + 931.0, + 1660.0, + 653.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1660.0, + 965.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1654.0, + 775.0, + 1654.0, + 775.0, + 1688.0, + 295.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1733.0, + 295.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 1405.0, + 1731.0, + 1405.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1796.0, + 292.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1789.0, + 358.0, + 1789.0, + 358.0, + 1825.0, + 291.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 202.0, + 1406.0, + 202.0, + 1406.0, + 237.0, + 293.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 233.0, + 1406.0, + 233.0, + 1406.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 295.0, + 589.0, + 295.0, + 589.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 374.0, + 1942.0, + 374.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1942.0, + 944.0, + 1942.0, + 944.0, + 1982.0, + 521.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1942.0, + 1164.0, + 1942.0, + 1164.0, + 1982.0, + 959.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1982.0, + 1219.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 487.0, + 1971.0, + 487.0, + 2014.0, + 293.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1971.0, + 811.0, + 1971.0, + 811.0, + 2014.0, + 501.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1971.0, + 1063.0, + 1971.0, + 1063.0, + 2014.0, + 825.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1224.0, + 297.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1079.0, + 1220.0, + 1079.0, + 1257.0, + 295.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1381.0, + 1389.0, + 1381.0, + 1389.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1266.0, + 1400.0, + 1266.0, + 1400.0, + 1302.0, + 361.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1307.0, + 1404.0, + 1307.0, + 1404.0, + 1345.0, + 359.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1341.0, + 508.0, + 1341.0, + 508.0, + 1372.0, + 392.0, + 1372.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 303, + 1348, + 1399, + 1348, + 1399, + 1471, + 303, + 1471 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 487, + 1157, + 1197, + 1157, + 1197, + 1312, + 487, + 1312 + ], + "score": 0.974, + "html": "
PropertiesConvolutionSelf-Attention
Translation Equivariance
Input-adaptive Weighting
Global Receptive Field
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1604, + 1405, + 1604, + 1405, + 1918, + 296, + 1918 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 432, + 1405, + 432, + 1405, + 525, + 298, + 525 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 566, + 286, + 1130, + 286, + 1130, + 412, + 566, + 412 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 291, + 201, + 1402, + 201, + 1402, + 266, + 291, + 266 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 310, + 1490, + 1343, + 1490, + 1343, + 1585, + 310, + 1585 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 297, + 1949, + 1402, + 1949, + 1402, + 2008, + 297, + 2008 + ], + "score": 0.937 + }, + { + "category_id": 6, + "poly": [ + 470, + 1124, + 1224, + 1124, + 1224, + 1154, + 470, + 1154 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 295, + 536, + 1406, + 536, + 1406, + 1072, + 295, + 1072 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1366, + 314, + 1400, + 314, + 1400, + 344, + 1366, + 344 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1521, + 1400, + 1521, + 1400, + 1552, + 1368, + 1552 + ], + "score": 0.797 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.689 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.352 + }, + { + "category_id": 14, + "poly": [ + 567, + 284, + 1130, + 284, + 1130, + 414, + 567, + 414 + ], + "score": 0.94, + "latex": "y _ { i } = \\sum _ { j \\in \\mathcal { G } } \\underbrace { \\frac { \\exp { \\left( x _ { i } ^ { \\top } x _ { j } \\right) } } { \\sum _ { k \\in \\mathcal { G } } \\exp { \\left( x _ { i } ^ { \\top } x _ { k } \\right) } } } _ { A _ { i , j } } x _ { j } \\quad \\mathrm { ( s e l f - a t t e n t i o n ) } ," + }, + { + "category_id": 14, + "poly": [ + 309, + 1489, + 1362, + 1489, + 1362, + 1588, + 309, + 1588 + ], + "score": 0.92, + "latex": "y _ { i } ^ { \\mathrm { p o s t } } = \\sum _ { j \\in \\mathcal { G } } \\left( \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } \\right) } + w _ { i - j } \\right) x _ { j } \\ \\mathrm { ~ o r ~ } \\ y _ { i } ^ { \\mathrm { p e } } = \\sum _ { j \\in \\mathcal { G } } \\frac { \\exp \\left( x _ { i } ^ { \\top } x _ { j } + w _ { i - j } \\right) } { \\sum _ { k \\in \\mathcal { G } } \\exp \\left( x _ { i } ^ { \\top } x _ { k } + w _ { i - k } \\right) } x _ { j } ." + }, + { + "category_id": 13, + "poly": [ + 1201, + 1668, + 1266, + 1668, + 1266, + 1705, + 1201, + 1705 + ], + "score": 0.92, + "latex": "x _ { i } ^ { \\top } x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1795, + 1005, + 1795, + 1005, + 1828, + 947, + 1828 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 1144, + 233, + 1230, + 233, + 1230, + 268, + 1144, + 268 + ], + "score": 0.92, + "latex": "( x _ { i } , x _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 609, + 570, + 659, + 570, + 659, + 603, + 609, + 603 + ], + "score": 0.91, + "latex": "A _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 805, + 698, + 862, + 698, + 862, + 731, + 805, + 731 + ], + "score": 0.91, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1638, + 1373, + 1638, + 1373, + 1671, + 1324, + 1671 + ], + "score": 0.91, + "latex": "A _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 660, + 1761, + 800, + 1761, + 800, + 1793, + 660, + 1793 + ], + "score": 0.91, + "latex": "w \\in \\mathbb { R } ^ { O ( | \\mathcal { G } | ) }" + }, + { + "category_id": 13, + "poly": [ + 843, + 731, + 903, + 731, + 903, + 760, + 843, + 760 + ], + "score": 0.9, + "latex": "i - j" + }, + { + "category_id": 13, + "poly": [ + 805, + 1799, + 865, + 1799, + 865, + 1829, + 805, + 1829 + ], + "score": 0.89, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1607, + 1261, + 1607, + 1261, + 1638, + 1217, + 1638 + ], + "score": 0.89, + "latex": "y ^ { \\mathrm { p r e } }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1768, + 481, + 1768, + 481, + 1798, + 422, + 1798 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 703, + 1347, + 703, + 1347, + 732, + 1288, + 732 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 808, + 542, + 867, + 542, + 867, + 572, + 808, + 572 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1675, + 618, + 1675, + 618, + 1705, + 558, + 1705 + ], + "score": 0.88, + "latex": "w _ { i - j }" + }, + { + "category_id": 13, + "poly": [ + 371, + 434, + 393, + 434, + 393, + 463, + 371, + 463 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1799, + 608, + 1799, + 608, + 1822, + 585, + 1822 + ], + "score": 0.8, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 1321, + 732, + 1336, + 732, + 1336, + 760, + 1321, + 760 + ], + "score": 0.78, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1274, + 732, + 1288, + 732, + 1288, + 756, + 1274, + 756 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1986.0, + 327.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 1018.0, + 1976.0, + 1018.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1122.0, + 1227.0, + 1122.0, + 1227.0, + 1157.0, + 471.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1407.0, + 1346.0, + 1407.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1407.0, + 1377.0, + 1407.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1441.0, + 297.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1439.0, + 1220.0, + 1439.0, + 1220.0, + 1473.0, + 297.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1602.0, + 1216.0, + 1602.0, + 1216.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1602.0, + 1406.0, + 1602.0, + 1406.0, + 1641.0, + 1262.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1633.0, + 1323.0, + 1633.0, + 1323.0, + 1676.0, + 291.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1676.0, + 1374.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 557.0, + 1668.0, + 557.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1668.0, + 1200.0, + 1668.0, + 1200.0, + 1707.0, + 619.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1707.0, + 1267.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 1406.0, + 1731.0, + 1406.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1758.0, + 421.0, + 1758.0, + 421.0, + 1802.0, + 290.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1758.0, + 659.0, + 1758.0, + 659.0, + 1802.0, + 482.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1758.0, + 1410.0, + 1758.0, + 1410.0, + 1802.0, + 801.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 584.0, + 1789.0, + 584.0, + 1833.0, + 294.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1789.0, + 804.0, + 1789.0, + 804.0, + 1833.0, + 609.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1789.0, + 946.0, + 1789.0, + 946.0, + 1833.0, + 866.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1833.0, + 1006.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1826.0, + 1407.0, + 1826.0, + 1407.0, + 1858.0, + 296.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1885.0, + 1122.0, + 1885.0, + 1122.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 429.0, + 370.0, + 429.0, + 370.0, + 468.0, + 293.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 468.0, + 394.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 463.0, + 1405.0, + 463.0, + 1405.0, + 497.0, + 295.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 494.0, + 722.0, + 494.0, + 722.0, + 528.0, + 296.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 200.0, + 1404.0, + 200.0, + 1404.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 230.0, + 1143.0, + 230.0, + 1143.0, + 271.0, + 291.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 230.0, + 1256.0, + 230.0, + 1256.0, + 271.0, + 1231.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 534.0, + 807.0, + 534.0, + 807.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 534.0, + 1409.0, + 534.0, + 1409.0, + 575.0, + 868.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 569.0, + 608.0, + 569.0, + 608.0, + 604.0, + 317.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 604.0, + 660.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 634.0, + 317.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 629.0, + 1411.0, + 629.0, + 1411.0, + 666.0, + 316.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 660.0, + 1260.0, + 660.0, + 1260.0, + 695.0, + 317.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 804.0, + 695.0, + 804.0, + 736.0, + 295.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 695.0, + 1287.0, + 695.0, + 1287.0, + 736.0, + 863.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 695.0, + 1406.0, + 695.0, + 1406.0, + 736.0, + 1348.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 728.0, + 842.0, + 728.0, + 842.0, + 763.0, + 316.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 728.0, + 1273.0, + 728.0, + 1273.0, + 763.0, + 904.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 728.0, + 1320.0, + 728.0, + 1320.0, + 763.0, + 1289.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 728.0, + 1406.0, + 728.0, + 1406.0, + 763.0, + 1337.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 759.0, + 1404.0, + 759.0, + 1404.0, + 794.0, + 318.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 790.0, + 1403.0, + 790.0, + 1403.0, + 821.0, + 318.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 854.0, + 316.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 847.0, + 940.0, + 847.0, + 940.0, + 886.0, + 316.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 887.0, + 1406.0, + 887.0, + 1406.0, + 922.0, + 297.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 918.0, + 1407.0, + 918.0, + 1407.0, + 953.0, + 316.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 946.0, + 1406.0, + 946.0, + 1406.0, + 987.0, + 316.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1014.0, + 317.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1008.0, + 1409.0, + 1008.0, + 1409.0, + 1044.0, + 316.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1041.0, + 1143.0, + 1041.0, + 1143.0, + 1072.0, + 319.0, + 1072.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 338, + 1405, + 338, + 1405, + 462, + 297, + 462 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 695, + 1405, + 695, + 1405, + 878, + 297, + 878 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1747, + 1404, + 1747, + 1404, + 1871, + 298, + 1871 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 1429, + 1404, + 1429, + 1404, + 1734, + 297, + 1734 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 300, + 475, + 1405, + 475, + 1405, + 682, + 300, + 682 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 297, + 263, + 1402, + 263, + 1402, + 324, + 297, + 324 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 891, + 1401, + 891, + 1401, + 985, + 299, + 985 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 290, + 1883, + 1405, + 1883, + 1405, + 1946, + 290, + 1946 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 520, + 1972, + 1197, + 1972, + 1197, + 2009, + 520, + 2009 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 299, + 203, + 634, + 203, + 634, + 236, + 299, + 236 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 294, + 998, + 1405, + 998, + 1405, + 1416, + 294, + 1416 + ], + "score": 0.744 + }, + { + "category_id": 13, + "poly": [ + 470, + 1029, + 554, + 1029, + 554, + 1060, + 470, + 1060 + ], + "score": 0.87, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 1059, + 549, + 1081, + 549, + 1081, + 577, + 1059, + 577 + ], + "score": 0.82, + "latex": "\\mathcal { G }" + }, + { + "category_id": 14, + "poly": [ + 521, + 1973, + 1197, + 1973, + 1197, + 2009, + 521, + 2009 + ], + "score": 0.79, + "latex": "\\mathrm { C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\approx C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T \\ge C \\mathrm { - } C \\mathrm { - } T \\mathrm { - } T > C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T \\gg V \\mathrm { I } \\mathrm { T } _ { \\mathrm { R E L } } . }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1779, + 756, + 1779, + 756, + 1809, + 655, + 1809 + ], + "score": 0.76, + "latex": "\\left( > 3 0 0 \\mathbf { M } \\right)" + }, + { + "category_id": 13, + "poly": [ + 829, + 1000, + 851, + 1000, + 851, + 1026, + 829, + 1026 + ], + "score": 0.72, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1378, + 548, + 1401, + 548, + 1401, + 575, + 1378, + 575 + ], + "score": 0.62, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 897, + 1132, + 931, + 1132, + 931, + 1160, + 897, + 1160 + ], + "score": 0.57, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 198.0, + 637.0, + 198.0, + 637.0, + 243.0, + 293.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 337.0, + 1410.0, + 337.0, + 1410.0, + 376.0, + 291.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 1405.0, + 368.0, + 1405.0, + 404.0, + 292.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 402.0, + 1405.0, + 402.0, + 1405.0, + 435.0, + 295.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 1157.0, + 430.0, + 1157.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1405.0, + 693.0, + 1405.0, + 731.0, + 294.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1406.0, + 726.0, + 1406.0, + 761.0, + 294.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 756.0, + 1405.0, + 756.0, + 1405.0, + 790.0, + 292.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 822.0, + 295.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 848.0, + 1303.0, + 848.0, + 1303.0, + 880.0, + 296.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 1404.0, + 1748.0, + 1404.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1776.0, + 654.0, + 1776.0, + 654.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1814.0, + 757.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1809.0, + 1405.0, + 1809.0, + 1405.0, + 1844.0, + 293.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1841.0, + 575.0, + 1841.0, + 575.0, + 1873.0, + 296.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1492.0, + 1402.0, + 1492.0, + 1402.0, + 1523.0, + 295.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1518.0, + 1406.0, + 1518.0, + 1406.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1590.0, + 291.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1617.0, + 294.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1647.0, + 292.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1641.0, + 1405.0, + 1641.0, + 1405.0, + 1675.0, + 292.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1708.0, + 291.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1704.0, + 725.0, + 1704.0, + 725.0, + 1736.0, + 296.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 475.0, + 1404.0, + 475.0, + 1404.0, + 509.0, + 299.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 505.0, + 884.0, + 505.0, + 884.0, + 539.0, + 352.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 545.0, + 1058.0, + 545.0, + 1058.0, + 582.0, + 299.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 545.0, + 1377.0, + 545.0, + 1377.0, + 582.0, + 1082.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 545.0, + 1406.0, + 545.0, + 1406.0, + 582.0, + 1402.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 579.0, + 714.0, + 579.0, + 714.0, + 611.0, + 348.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 618.0, + 1406.0, + 618.0, + 1406.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 647.0, + 928.0, + 647.0, + 928.0, + 685.0, + 350.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 596.0, + 294.0, + 596.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 1405.0, + 891.0, + 1405.0, + 928.0, + 294.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1405.0, + 923.0, + 1405.0, + 957.0, + 295.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 950.0, + 1405.0, + 950.0, + 1405.0, + 988.0, + 294.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1879.0, + 1408.0, + 1879.0, + 1408.0, + 1922.0, + 291.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1913.0, + 894.0, + 1913.0, + 894.0, + 1950.0, + 316.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 995.0, + 828.0, + 995.0, + 828.0, + 1033.0, + 292.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 995.0, + 1403.0, + 995.0, + 1403.0, + 1033.0, + 852.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1025.0, + 469.0, + 1025.0, + 469.0, + 1065.0, + 315.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1025.0, + 567.0, + 1025.0, + 567.0, + 1065.0, + 555.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1069.0, + 1407.0, + 1069.0, + 1407.0, + 1105.0, + 294.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1096.0, + 1406.0, + 1096.0, + 1406.0, + 1139.0, + 313.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1129.0, + 896.0, + 1129.0, + 896.0, + 1165.0, + 316.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1165.0, + 932.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1161.0, + 1031.0, + 1161.0, + 1031.0, + 1196.0, + 318.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1237.0, + 317.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1233.0, + 1406.0, + 1233.0, + 1406.0, + 1268.0, + 317.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1295.0, + 320.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1295.0, + 1406.0, + 1295.0, + 1406.0, + 1327.0, + 318.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1323.0, + 1405.0, + 1323.0, + 1405.0, + 1358.0, + 317.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1388.0, + 316.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1383.0, + 1170.0, + 1383.0, + 1170.0, + 1420.0, + 317.0, + 1420.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 512, + 1348, + 1178, + 1348, + 1178, + 1505, + 512, + 1505 + ], + "score": 0.978, + "html": "
MetricC-C-T-TC-T-T-T
Pre-training Precision@1 (JFT)34.4034.36
Transfer Accuracy 224x22482.3981.78
Transfer Accuracy 384x38484.2384.02
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1708, + 1406, + 1708, + 1406, + 1955, + 297, + 1955 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 318, + 914, + 1404, + 914, + 1404, + 1160, + 318, + 1160 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1172, + 1404, + 1172, + 1404, + 1296, + 300, + 1296 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 303, + 202, + 1396, + 202, + 1396, + 518, + 303, + 518 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 317, + 657, + 1404, + 657, + 1404, + 782, + 317, + 782 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 1535, + 1404, + 1535, + 1404, + 1599, + 297, + 1599 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 300, + 786, + 1401, + 786, + 1401, + 848, + 300, + 848 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 522, + 862, + 1196, + 862, + 1196, + 899, + 522, + 899 + ], + "score": 0.934 + }, + { + "category_id": 4, + "poly": [ + 294, + 535, + 1403, + 535, + 1403, + 598, + 294, + 598 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 298, + 1639, + 549, + 1639, + 549, + 1678, + 298, + 1678 + ], + "score": 0.924 + }, + { + "category_id": 6, + "poly": [ + 652, + 1317, + 1045, + 1317, + 1045, + 1346, + 652, + 1346 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 327, + 1977, + 1286, + 1977, + 1286, + 2008, + 327, + 2008 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.735 + }, + { + "category_id": 13, + "poly": [ + 1200, + 946, + 1283, + 946, + 1283, + 977, + 1200, + 977 + ], + "score": 0.89, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 465, + 659, + 551, + 659, + 551, + 690, + 465, + 690 + ], + "score": 0.89, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1007, + 1400, + 1007, + 1400, + 1038, + 1316, + 1038 + ], + "score": 0.88, + "latex": "\\mathrm { V I T } _ { \\mathrm { R E L } }" + }, + { + "category_id": 14, + "poly": [ + 523, + 863, + 1196, + 863, + 1196, + 898, + 523, + 898 + ], + "score": 0.82, + "latex": "\\mathrm { C - C \\mathrm { - } T \\mathrm { - } T \\approx C \\mathrm { - } T \\mathrm { - } T \\mathrm { - } T > V I T _ { R E L } > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } T > C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { - } C \\mathrm { . } }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1067, + 1132, + 1067, + 1132, + 1095, + 1077, + 1095 + ], + "score": 0.37, + "latex": "\\approx \\mathbf { C }" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 201.0, + 1179.0, + 201.0, + 1179.0, + 226.0, + 1101.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 231.0, + 340.0, + 231.0, + 340.0, + 253.0, + 305.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 224.0, + 836.0, + 224.0, + 836.0, + 274.0, + 796.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 244.0, + 892.0, + 244.0, + 892.0, + 268.0, + 854.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 224.0, + 1385.0, + 224.0, + 1385.0, + 274.0, + 1347.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 270.0, + 339.0, + 270.0, + 339.0, + 292.0, + 304.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 265.0, + 836.0, + 265.0, + 836.0, + 287.0, + 797.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 265.0, + 1386.0, + 265.0, + 1386.0, + 287.0, + 1348.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 279.0, + 837.0, + 279.0, + 837.0, + 302.0, + 797.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 279.0, + 1386.0, + 279.0, + 1386.0, + 302.0, + 1348.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 291.0, + 892.0, + 291.0, + 892.0, + 313.0, + 854.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 309.0, + 341.0, + 309.0, + 341.0, + 333.0, + 305.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 331.0, + 646.0, + 331.0, + 646.0, + 352.0, + 531.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 330.0, + 1201.0, + 330.0, + 1201.0, + 351.0, + 1074.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 372.0, + 340.0, + 372.0, + 340.0, + 395.0, + 305.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 364.0, + 891.0, + 364.0, + 891.0, + 386.0, + 856.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 392.0, + 892.0, + 392.0, + 892.0, + 416.0, + 854.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 412.0, + 340.0, + 412.0, + 340.0, + 435.0, + 305.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 422.0, + 893.0, + 422.0, + 893.0, + 446.0, + 854.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 444.0, + 822.0, + 444.0, + 822.0, + 469.0, + 323.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 446.0, + 932.0, + 446.0, + 932.0, + 469.0, + 899.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 448.0, + 980.0, + 448.0, + 980.0, + 468.0, + 950.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 446.0, + 1030.0, + 446.0, + 1030.0, + 469.0, + 997.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 448.0, + 1081.0, + 448.0, + 1081.0, + 467.0, + 1045.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 446.0, + 1132.0, + 446.0, + 1132.0, + 468.0, + 1093.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 448.0, + 1180.0, + 448.0, + 1180.0, + 467.0, + 1143.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 448.0, + 1230.0, + 448.0, + 1230.0, + 467.0, + 1191.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 448.0, + 1278.0, + 448.0, + 1278.0, + 467.0, + 1241.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 448.0, + 1328.0, + 448.0, + 1328.0, + 467.0, + 1289.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 448.0, + 1375.0, + 448.0, + 1375.0, + 467.0, + 1339.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 485.0, + 666.0, + 485.0, + 666.0, + 520.0, + 481.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 484.0, + 1170.0, + 484.0, + 1170.0, + 522.0, + 1079.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 203.5, + 626.0, + 203.5, + 626.0, + 225.5, + 552.0, + 225.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 233.0, + 955.0, + 233.0, + 955.0, + 259.5, + 915.0, + 259.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 535.0, + 1406.0, + 535.0, + 1406.0, + 570.0, + 296.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 1142.0, + 565.0, + 1142.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1637.0, + 552.0, + 1637.0, + 552.0, + 1682.0, + 291.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1311.0, + 1051.0, + 1311.0, + 1051.0, + 1353.0, + 647.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 1287.0, + 1973.0, + 1287.0, + 2012.0, + 332.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1707.0, + 1407.0, + 1707.0, + 1407.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1775.0, + 295.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1801.0, + 1407.0, + 1801.0, + 1407.0, + 1835.0, + 295.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1865.0, + 295.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1858.0, + 1407.0, + 1858.0, + 1407.0, + 1897.0, + 292.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1406.0, + 1892.0, + 1406.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1923.0, + 1010.0, + 1923.0, + 1010.0, + 1957.0, + 292.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 914.0, + 1405.0, + 914.0, + 1405.0, + 952.0, + 319.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 948.0, + 1199.0, + 948.0, + 1199.0, + 978.0, + 320.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 948.0, + 1403.0, + 948.0, + 1403.0, + 978.0, + 1284.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1009.0, + 319.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 998.0, + 1315.0, + 998.0, + 1315.0, + 1047.0, + 315.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 998.0, + 1407.0, + 998.0, + 1407.0, + 1047.0, + 1401.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1036.0, + 1406.0, + 1036.0, + 1406.0, + 1071.0, + 315.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1063.0, + 1076.0, + 1063.0, + 1076.0, + 1102.0, + 316.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1063.0, + 1407.0, + 1063.0, + 1407.0, + 1102.0, + 1133.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1097.0, + 1406.0, + 1097.0, + 1406.0, + 1133.0, + 316.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1127.0, + 1400.0, + 1127.0, + 1400.0, + 1163.0, + 317.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1170.0, + 1405.0, + 1170.0, + 1405.0, + 1208.0, + 293.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 1406.0, + 1202.0, + 1406.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1054.0, + 1264.0, + 1054.0, + 1300.0, + 295.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 656.0, + 464.0, + 656.0, + 464.0, + 695.0, + 317.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 656.0, + 1405.0, + 656.0, + 1405.0, + 695.0, + 552.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 687.0, + 1406.0, + 687.0, + 1406.0, + 725.0, + 315.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 752.0, + 318.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 750.0, + 861.0, + 750.0, + 861.0, + 785.0, + 317.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1536.0, + 1402.0, + 1536.0, + 1402.0, + 1568.0, + 296.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1566.0, + 1337.0, + 1566.0, + 1337.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1406.0, + 780.0, + 1406.0, + 821.0, + 295.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 811.0, + 828.0, + 811.0, + 828.0, + 854.0, + 315.0, + 854.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 508, + 1405, + 508, + 1405, + 812, + 297, + 812 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1405, + 202, + 1405, + 477, + 298, + 477 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1133, + 1405, + 1133, + 1405, + 1407, + 298, + 1407 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 844, + 1404, + 844, + 1404, + 1119, + 298, + 1119 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 1820, + 298, + 1820 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1853, + 1402, + 1853, + 1402, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1516, + 1401, + 1516, + 1401, + 1578, + 299, + 1578 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 299, + 1613, + 594, + 1613, + 594, + 1646, + 299, + 1646 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 298, + 1448, + 533, + 1448, + 533, + 1486, + 298, + 1486 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 819, + 691, + 915, + 691, + 915, + 724, + 819, + 724 + ], + "score": 0.93, + "latex": "f ( i - j )" + }, + { + "category_id": 13, + "poly": [ + 1004, + 599, + 1104, + 599, + 1104, + 633, + 1004, + 633 + ], + "score": 0.93, + "latex": "f ( i - j )" + }, + { + "category_id": 13, + "poly": [ + 370, + 599, + 546, + 599, + 546, + 634, + 370, + 634 + ], + "score": 0.93, + "latex": "f ( \\bar { x } _ { i } , x _ { j } , \\bar { i } - j )" + }, + { + "category_id": 13, + "poly": [ + 996, + 691, + 1054, + 691, + 1054, + 724, + 996, + 724 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1607.0, + 599.0, + 1607.0, + 599.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1443.0, + 537.0, + 1443.0, + 537.0, + 1494.0, + 289.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 543.0, + 295.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 535.0, + 1408.0, + 535.0, + 1408.0, + 577.0, + 291.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 1405.0, + 569.0, + 1405.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 599.0, + 369.0, + 599.0, + 369.0, + 633.0, + 292.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 599.0, + 1003.0, + 599.0, + 1003.0, + 633.0, + 547.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 633.0, + 1105.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 665.0, + 294.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 818.0, + 690.0, + 818.0, + 726.0, + 294.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 690.0, + 995.0, + 690.0, + 995.0, + 726.0, + 916.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 726.0, + 1055.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 785.0, + 296.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 783.0, + 1069.0, + 783.0, + 1069.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 204.0, + 1403.0, + 204.0, + 1403.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 1407.0, + 231.0, + 1407.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 295.0, + 1405.0, + 295.0, + 1405.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 324.0, + 1406.0, + 324.0, + 1406.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 355.0, + 1407.0, + 355.0, + 1407.0, + 388.0, + 296.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 420.0, + 293.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 416.0, + 1406.0, + 416.0, + 1406.0, + 449.0, + 296.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 446.0, + 757.0, + 446.0, + 757.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1135.0, + 1406.0, + 1135.0, + 1406.0, + 1167.0, + 296.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1230.0, + 295.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1263.0, + 292.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1406.0, + 1279.0, + 1406.0, + 1323.0, + 293.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1341.0, + 1410.0, + 1341.0, + 1410.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1375.0, + 1006.0, + 1375.0, + 1006.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 846.0, + 1405.0, + 846.0, + 1405.0, + 879.0, + 297.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 909.0, + 294.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 941.0, + 293.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1001.0, + 293.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 997.0, + 1404.0, + 997.0, + 1404.0, + 1030.0, + 296.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1061.0, + 293.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1090.0, + 1086.0, + 1090.0, + 1122.0, + 294.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1668.0, + 1408.0, + 1668.0, + 1408.0, + 1705.0, + 296.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1734.0, + 296.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1731.0, + 1408.0, + 1731.0, + 1408.0, + 1764.0, + 296.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1405.0, + 1761.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 424.0, + 1790.0, + 424.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1921.0, + 294.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1954.0, + 292.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1406.0, + 1945.0, + 1406.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1406.0, + 1975.0, + 1406.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1515.0, + 1405.0, + 1515.0, + 1405.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1547.0, + 1197.0, + 1547.0, + 1197.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 931, + 1406, + 931, + 1406, + 1207, + 297, + 1207 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 297, + 339, + 1406, + 339, + 1406, + 540, + 297, + 540 + ], + "score": 0.981, + "html": "
StagesSizeCoAtNet-0CoAtNet-1CoAtNet-2CoAtNet-3CoAtNet-4
S0-Conv1/2L=2 D=64L=2D=64L=2D=128 L=2D=192L=2 D=192
S1-MbConv1/4L=2 D=96L=2D=96L=2 D=128L=2D=192L=2 D=192
S2-MBConv1/8L=3 D=192L=6D=192L=6 D=256L=6D=384L=12 D=384
S3-TFMRel1/16L=5 D=384L=14D=384L=14 D=512L=14D=768L=28 D=768
S4-TFMRel1/32L=2 D=768L=2D=768L=2 D=1024L=2D=1536L=2 D=1536
" + }, + { + "category_id": 1, + "poly": [ + 298, + 765, + 1405, + 765, + 1405, + 918, + 298, + 918 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 577, + 1406, + 577, + 1406, + 731, + 297, + 731 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1854, + 1404, + 1854, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 873, + 1326, + 1384, + 1326, + 1384, + 1728, + 873, + 1728 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 307, + 1323, + 816, + 1323, + 816, + 1729, + 307, + 1729 + ], + "score": 0.97 + }, + { + "category_id": 6, + "poly": [ + 294, + 215, + 1406, + 215, + 1406, + 337, + 294, + 337 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 860, + 1756, + 1398, + 1756, + 1398, + 1817, + 860, + 1817 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 295, + 1756, + 832, + 1756, + 832, + 1817, + 295, + 1817 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 298, + 1245, + 520, + 1245, + 520, + 1276, + 298, + 1276 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.732 + }, + { + "category_id": 13, + "poly": [ + 1023, + 1787, + 1111, + 1787, + 1111, + 1815, + 1023, + 1815 + ], + "score": 0.65, + "latex": "2 1 \\mathrm { K } \\Rightarrow" + }, + { + "category_id": 13, + "poly": [ + 662, + 1786, + 763, + 1786, + 763, + 1815, + 662, + 1815 + ], + "score": 0.64, + "latex": "2 2 4 \\mathbf { x } 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 760, + 1946, + 863, + 1946, + 863, + 1975, + 760, + 1975 + ], + "score": 0.51, + "latex": "2 2 4 \\mathbf { x } 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 477, + 504, + 519, + 504, + 519, + 531, + 477, + 531 + ], + "score": 0.37, + "latex": "^ 1 / 3 2" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1788, + 1110, + 1788, + 1110, + 1814, + 1075, + 1814 + ], + "score": 0.34, + "latex": "\\Rightarrow" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1323.0, + 918.0, + 1323.0, + 918.0, + 1345.0, + 885.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1342.0, + 1110.0, + 1342.0, + 1110.0, + 1363.0, + 929.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1341.0, + 1370.0, + 1341.0, + 1370.0, + 1364.0, + 1271.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1383.0, + 916.0, + 1383.0, + 916.0, + 1405.0, + 886.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1390.0, + 1338.0, + 1390.0, + 1338.0, + 1422.0, + 1301.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1417.0, + 898.0, + 1417.0, + 898.0, + 1608.0, + 869.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1419.0, + 1295.0, + 1419.0, + 1295.0, + 1427.0, + 1287.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1433.0, + 1041.0, + 1433.0, + 1041.0, + 1441.0, + 1032.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1435.0, + 1263.0, + 1435.0, + 1263.0, + 1443.0, + 1255.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1443.0, + 912.0, + 1443.0, + 912.0, + 1466.0, + 885.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1451.0, + 1235.0, + 1451.0, + 1235.0, + 1458.0, + 1222.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1456.0, + 1164.0, + 1456.0, + 1164.0, + 1479.0, + 1101.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1462.0, + 1104.0, + 1462.0, + 1104.0, + 1470.0, + 1095.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1482.0, + 1268.0, + 1482.0, + 1268.0, + 1502.0, + 1206.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1486.0, + 1208.0, + 1486.0, + 1208.0, + 1495.0, + 1199.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1504.0, + 912.0, + 1504.0, + 912.0, + 1524.0, + 887.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1515.0, + 1063.0, + 1515.0, + 1063.0, + 1546.0, + 998.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1537.0, + 1368.0, + 1537.0, + 1368.0, + 1555.0, + 1342.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1553.0, + 1356.0, + 1553.0, + 1356.0, + 1560.0, + 1348.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1563.0, + 912.0, + 1563.0, + 912.0, + 1586.0, + 886.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1578.0, + 982.0, + 1578.0, + 982.0, + 1587.0, + 974.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1624.0, + 915.0, + 1624.0, + 915.0, + 1647.0, + 886.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1658.0, + 968.0, + 1658.0, + 968.0, + 1666.0, + 961.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1667.0, + 968.0, + 1667.0, + 968.0, + 1682.0, + 956.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1686.0, + 912.0, + 1686.0, + 912.0, + 1705.0, + 887.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1696.0, + 942.0, + 1696.0, + 942.0, + 1714.0, + 926.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1694.0, + 1016.0, + 1694.0, + 1016.0, + 1716.0, + 989.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1693.0, + 1089.0, + 1693.0, + 1089.0, + 1717.0, + 1053.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1693.0, + 1157.0, + 1693.0, + 1157.0, + 1715.0, + 1123.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1693.0, + 1227.0, + 1693.0, + 1227.0, + 1717.0, + 1190.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1693.0, + 1295.0, + 1693.0, + 1295.0, + 1717.0, + 1258.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1693.0, + 1364.0, + 1693.0, + 1364.0, + 1717.0, + 1327.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1706.0, + 1202.0, + 1706.0, + 1202.0, + 1731.0, + 1091.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1333.0, + 759.0, + 1333.0, + 759.0, + 1356.0, + 689.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1362.0, + 547.0, + 1362.0, + 547.0, + 1382.0, + 478.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1379.0, + 349.0, + 1379.0, + 349.0, + 1401.0, + 321.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1402.0, + 602.0, + 1402.0, + 602.0, + 1423.0, + 565.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1415.0, + 332.0, + 1415.0, + 332.0, + 1606.0, + 304.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1416.0, + 465.0, + 1416.0, + 465.0, + 1436.0, + 397.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1428.0, + 598.0, + 1428.0, + 598.0, + 1451.0, + 508.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1447.0, + 348.0, + 1447.0, + 348.0, + 1471.0, + 322.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1451.0, + 558.0, + 1451.0, + 558.0, + 1470.0, + 496.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1470.0, + 586.0, + 1470.0, + 586.0, + 1492.0, + 527.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1470.0, + 740.0, + 1470.0, + 740.0, + 1492.0, + 687.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1516.0, + 346.0, + 1516.0, + 346.0, + 1536.0, + 323.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1532.0, + 416.0, + 1532.0, + 416.0, + 1552.0, + 351.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1503.0, + 454.0, + 1503.0, + 454.0, + 1546.0, + 432.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1526.0, + 493.0, + 1526.0, + 493.0, + 1544.0, + 463.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1519.0, + 590.0, + 1519.0, + 590.0, + 1537.0, + 554.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1548.0, + 446.0, + 1548.0, + 446.0, + 1556.0, + 439.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1542.0, + 478.0, + 1542.0, + 478.0, + 1554.0, + 466.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1549.0, + 548.0, + 1549.0, + 548.0, + 1554.0, + 543.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1582.0, + 347.0, + 1582.0, + 347.0, + 1605.0, + 321.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1645.0, + 419.0, + 1645.0, + 419.0, + 1653.0, + 411.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1650.0, + 349.0, + 1650.0, + 349.0, + 1673.0, + 321.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1668.0, + 411.0, + 1668.0, + 411.0, + 1677.0, + 403.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1696.0, + 372.0, + 1696.0, + 372.0, + 1714.0, + 356.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1695.0, + 427.0, + 1695.0, + 427.0, + 1715.0, + 411.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1694.0, + 489.0, + 1694.0, + 489.0, + 1716.0, + 461.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1695.0, + 543.0, + 1695.0, + 543.0, + 1715.0, + 518.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1693.0, + 600.0, + 1693.0, + 600.0, + 1716.0, + 572.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1693.0, + 656.0, + 1693.0, + 656.0, + 1716.0, + 628.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1693.0, + 711.0, + 1693.0, + 711.0, + 1717.0, + 684.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1693.0, + 766.0, + 1693.0, + 766.0, + 1717.0, + 739.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1693.0, + 821.0, + 1693.0, + 821.0, + 1716.0, + 794.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1707.0, + 628.0, + 1707.0, + 628.0, + 1732.0, + 526.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1522.5, + 476.0, + 1522.5, + 476.0, + 1533.5, + 442.0, + 1533.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1535.0, + 566.0, + 1535.0, + 566.0, + 1545.0, + 546.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 214.0, + 1404.0, + 214.0, + 1404.0, + 251.0, + 293.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 245.0, + 1404.0, + 245.0, + 1404.0, + 280.0, + 296.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 276.0, + 1404.0, + 276.0, + 1404.0, + 311.0, + 296.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 307.0, + 1039.0, + 307.0, + 1039.0, + 341.0, + 296.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1753.0, + 1400.0, + 1753.0, + 1400.0, + 1790.0, + 860.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1780.0, + 1022.0, + 1780.0, + 1022.0, + 1825.0, + 859.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1780.0, + 1359.0, + 1780.0, + 1359.0, + 1825.0, + 1112.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1753.0, + 834.0, + 1753.0, + 834.0, + 1791.0, + 295.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1784.0, + 661.0, + 1784.0, + 661.0, + 1820.0, + 297.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1784.0, + 773.0, + 1784.0, + 773.0, + 1820.0, + 764.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 524.0, + 1240.0, + 524.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 1000.0, + 292.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1404.0, + 989.0, + 1404.0, + 1030.0, + 294.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1019.0, + 1409.0, + 1019.0, + 1409.0, + 1063.0, + 291.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1053.0, + 1403.0, + 1053.0, + 1403.0, + 1086.0, + 296.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1121.0, + 292.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1113.0, + 1407.0, + 1113.0, + 1407.0, + 1153.0, + 292.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 967.0, + 1175.0, + 967.0, + 1211.0, + 295.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 834.0, + 293.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 820.0, + 1409.0, + 820.0, + 1409.0, + 865.0, + 292.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 1405.0, + 856.0, + 1405.0, + 893.0, + 295.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1402.0, + 884.0, + 1402.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 1404.0, + 579.0, + 1404.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1408.0, + 604.0, + 1408.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 637.0, + 1404.0, + 637.0, + 1404.0, + 673.0, + 294.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 663.0, + 1409.0, + 663.0, + 1409.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1037.0, + 698.0, + 1037.0, + 736.0, + 294.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1409.0, + 1853.0, + 1409.0, + 1890.0, + 294.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1917.0, + 296.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 759.0, + 1944.0, + 759.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1981.0, + 864.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 866.0, + 1977.0, + 866.0, + 2010.0, + 296.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 294, + 309, + 1435, + 309, + 1435, + 1420, + 294, + 1420 + ], + "score": 0.985, + "html": "
ModelsEval Size#Params#FLOPsImageNet Top-1 Accuracy
Conv Only1K only21K+1K
EfficientNet-B7600²66M37B84.7-
EfficientNetV2-L480²121M53B85.786.8
NFNet-F34162²255M114.8B85.7=
NFNet-F55442377M289.8B86.01
ViT-Stem TFMDeiT-B384286M55.4B83.1-
ViT-L/16384²304M190.7B-85.3
CaiT-S-36384²68M48.0B85.0
DeepViT-L224²55M12.5B83.1-
Multi-stage TFMSwin-B384²88M47.0B84.286.0
Swin-L384²197M103.9B-86.4
Conv+TFMBotNet-T7384275.1M45.8B84.7-
LambdaResNet-420320²-=84.8
T2T-ViT-24224²64.1M15.0B82.6=
CvT-21384²32M24.9B83.3-
CvT-W243842277M193.2B-87.7
Conv+TFM (ours)CoAtNet-0 CoAtNet-1224²25M4.2B81.6=
224²42M8.4B83.3-
CoAtNet-2 CoAtNet-3224²75M15.7B84.187.1
2242168M34.7B84.587.6
CoAtNet-0384²25M13.4B83.9-
CoAtNet-1384242M27.4B85.1-
CoAtNet-2384²75M49.8B85.787.1
CoAtNet-3384²168M107.4B85.887.6
CoAtNet-4384²275M189.5B-87.9
+ PT-RA384²275M189.5B88.3
+ PT-RA-E1503842275M189.5B88.4
CoAtNet-2512275M96.7B85.987.3
CoAtNet-3512²168M203.1B86.087.9
CoAtNet-4512²275M360.9B-88.1
+ PT-RA512²275M360.9B=88.4
+ PT-RA-E1505122275M360.9B=88.56
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1747, + 1404, + 1747, + 1404, + 1931, + 298, + 1931 + ], + "score": 0.978 + }, + { + "category_id": 6, + "poly": [ + 296, + 191, + 1408, + 191, + 1408, + 313, + 296, + 313 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1945, + 1398, + 1945, + 1398, + 2007, + 299, + 2007 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 298, + 1502, + 1407, + 1502, + 1407, + 1688, + 298, + 1688 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.802 + }, + { + "category_id": 6, + "poly": [ + 298, + 1502, + 1407, + 1502, + 1407, + 1688, + 298, + 1688 + ], + "score": 0.097 + }, + { + "category_id": 13, + "poly": [ + 536, + 1595, + 623, + 1595, + 623, + 1624, + 536, + 1624 + ], + "score": 0.89, + "latex": "8 8 . 5 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1565, + 1189, + 1565, + 1189, + 1594, + 1101, + 1594 + ], + "score": 0.88, + "latex": "8 8 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 668, + 1870, + 759, + 1870, + 759, + 1899, + 668, + 1899 + ], + "score": 0.87, + "latex": "8 9 . 7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1311, + 193, + 1403, + 193, + 1403, + 221, + 1311, + 221 + ], + "score": 0.83, + "latex": "2 1 \\mathtt { K } + 1 \\mathtt { K }" + }, + { + "category_id": 13, + "poly": [ + 786, + 1626, + 838, + 1626, + 838, + 1654, + 786, + 1654 + ], + "score": 0.82, + "latex": "2 . 2 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 383, + 1871, + 433, + 1871, + 433, + 1899, + 383, + 1899 + ], + "score": 0.82, + "latex": ". \\mathrm { F 4 + }" + }, + { + "category_id": 13, + "poly": [ + 980, + 1595, + 1034, + 1595, + 1034, + 1624, + 980, + 1624 + ], + "score": 0.76, + "latex": "2 . 3 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1596, + 1332, + 1596, + 1332, + 1624, + 1285, + 1624 + ], + "score": 0.76, + "latex": "2 3 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1810, + 694, + 1810, + 694, + 1838, + 646, + 1838 + ], + "score": 0.64, + "latex": "\\mathrm { F 4 + }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1977, + 970, + 1977, + 970, + 2004, + 938, + 2004 + ], + "score": 0.39, + "latex": "4 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 849, + 1810, + 883, + 1810, + 883, + 1837, + 849, + 1837 + ], + "score": 0.29, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 190.0, + 1310.0, + 190.0, + 1310.0, + 228.0, + 294.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 216.0, + 1406.0, + 216.0, + 1406.0, + 262.0, + 292.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 248.0, + 1406.0, + 248.0, + 1406.0, + 288.0, + 293.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 280.0, + 1084.0, + 280.0, + 1084.0, + 317.0, + 293.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2090.0, + 838.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1409.0, + 1501.0, + 1409.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1100.0, + 1563.0, + 1100.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1563.0, + 1409.0, + 1563.0, + 1409.0, + 1599.0, + 1190.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 535.0, + 1594.0, + 535.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1594.0, + 979.0, + 1594.0, + 979.0, + 1629.0, + 624.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1594.0, + 1284.0, + 1594.0, + 1284.0, + 1629.0, + 1035.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 1333.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 785.0, + 1624.0, + 785.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1659.0, + 839.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 834.0, + 1652.0, + 834.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1406.0, + 1749.0, + 1406.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1815.0, + 293.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 645.0, + 1802.0, + 645.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1802.0, + 848.0, + 1802.0, + 848.0, + 1848.0, + 695.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1848.0, + 884.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1836.0, + 1406.0, + 1836.0, + 1406.0, + 1876.0, + 293.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1867.0, + 382.0, + 1867.0, + 382.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1867.0, + 667.0, + 1867.0, + 667.0, + 1905.0, + 434.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1867.0, + 1408.0, + 1867.0, + 1408.0, + 1905.0, + 760.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1896.0, + 533.0, + 1896.0, + 533.0, + 1939.0, + 292.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 937.0, + 1977.0, + 937.0, + 2009.0, + 296.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1977.0, + 1404.0, + 1977.0, + 1404.0, + 2009.0, + 971.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1409.0, + 1501.0, + 1409.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1100.0, + 1563.0, + 1100.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1563.0, + 1409.0, + 1563.0, + 1409.0, + 1599.0, + 1190.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 535.0, + 1594.0, + 535.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1594.0, + 979.0, + 1594.0, + 979.0, + 1629.0, + 624.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1594.0, + 1284.0, + 1594.0, + 1284.0, + 1629.0, + 1035.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 1333.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 785.0, + 1624.0, + 785.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1659.0, + 839.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 834.0, + 1652.0, + 834.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 345, + 1421, + 345, + 1421, + 790, + 296, + 790 + ], + "score": 0.983, + "html": "
ModelsEval Size#Params#FLOPsTPUv3-core-daysTop-1 Accuracy
ResNet + ViT-L/163842330M=187.12
ViT-L/165122307M364B0.68K87.76
ViT-H/145182632M1021B2.5K88.55
NFNet-F4+5122527M367B1.86K89.2
CoAtNet-3t3842168M114B0.58K88.52
CoAtNet-3t5122168M214B0.58K88.81
CoAtNet-45122275M361B0.95K89.11
CoAtNet-55122688M812B1.82K89.77
ViT-G/1451821.84B5160B>30K90.45
CoAtNet-651221.47B1521B6.6K90.45
CoAtNet-751222.44B2586B20.1K90.88
" + }, + { + "category_id": 5, + "poly": [ + 329, + 1316, + 1363, + 1316, + 1363, + 1523, + 329, + 1523 + ], + "score": 0.981, + "html": "
SetingMetricWith Rel-AttnWithout Rel-Attn
ImageNet-1KAccuracy (2242)84.183.8
Accuracy (3842)85.785.3
ImageNet-21K →ImageNet-1KPre-train Precision@1 (224²)53.052.8
Finetune Accuracy (384²)87.987.4
" + }, + { + "category_id": 5, + "poly": [ + 388, + 1592, + 1305, + 1592, + 1305, + 1823, + 388, + 1823 + ], + "score": 0.978, + "html": "
SettingModelsLayoutTop-1 Accuracy
ImageNet-1KVO: CoAtNet-2[2,2,6,14,2]84.1
V1: S2← S3[2,2, 2,18,2]83.4
V2: S2→ S3[2,2,8,12,2]84.0
ImageNet-21KVO: CoAtNet-3[2,2,6,14,2]53.0 -→87.6
⇒ImageNet-1KV1: S2 ← S3[2,2,2,18,2]53.0 -→87.4
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1019, + 1405, + 1019, + 1405, + 1265, + 297, + 1265 + ], + "score": 0.977 + }, + { + "category_id": 6, + "poly": [ + 295, + 187, + 1408, + 187, + 1408, + 343, + 295, + 343 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1854, + 1407, + 1854, + 1407, + 2008, + 298, + 2008 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 973, + 990, + 973, + 990, + 1006, + 298, + 1006 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 918, + 561, + 918, + 561, + 951, + 298, + 951 + ], + "score": 0.914 + }, + { + "category_id": 6, + "poly": [ + 634, + 1285, + 1064, + 1285, + 1064, + 1314, + 634, + 1314 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 624, + 1560, + 1073, + 1560, + 1073, + 1590, + 624, + 1590 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 299, + 821, + 1402, + 821, + 1402, + 884, + 299, + 884 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.814 + }, + { + "category_id": 7, + "poly": [ + 299, + 821, + 1402, + 821, + 1402, + 884, + 299, + 884 + ], + "score": 0.201 + }, + { + "category_id": 13, + "poly": [ + 725, + 822, + 812, + 822, + 812, + 851, + 725, + 851 + ], + "score": 0.89, + "latex": "9 0 . 4 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 593, + 852, + 682, + 852, + 682, + 882, + 593, + 882 + ], + "score": 0.87, + "latex": "9 0 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 852, + 386, + 852, + 386, + 881, + 297, + 881 + ], + "score": 0.86, + "latex": "8 9 . 7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 925, + 822, + 977, + 822, + 977, + 851, + 925, + 851 + ], + "score": 0.74, + "latex": "1 . 5 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1480, + 876, + 1480, + 876, + 1512, + 810, + 1512 + ], + "score": 0.55, + "latex": "( 3 8 4 ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 827, + 1447, + 901, + 1447, + 901, + 1479, + 827, + 1479 + ], + "score": 0.31, + "latex": "( 2 2 4 ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 343, + 1481, + 378, + 1481, + 378, + 1508, + 343, + 1508 + ], + "score": 0.28, + "latex": "\\Rightarrow" + }, + { + "category_id": 13, + "poly": [ + 586, + 821, + 691, + 821, + 691, + 850, + 586, + 850 + ], + "score": 0.25, + "latex": "\\mathrm { V i T - G } / 1 4" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 186.0, + 1407.0, + 186.0, + 1407.0, + 220.0, + 297.0, + 220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 218.0, + 1405.0, + 218.0, + 1405.0, + 252.0, + 296.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 248.0, + 1406.0, + 248.0, + 1406.0, + 285.0, + 294.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1406.0, + 277.0, + 1406.0, + 314.0, + 294.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 308.0, + 1405.0, + 308.0, + 1405.0, + 345.0, + 296.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 564.0, + 914.0, + 564.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1280.0, + 1067.0, + 1280.0, + 1067.0, + 1319.0, + 630.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1556.0, + 1078.0, + 1556.0, + 1078.0, + 1594.0, + 620.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 585.0, + 821.0, + 585.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 821.0, + 724.0, + 821.0, + 724.0, + 856.0, + 692.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 821.0, + 924.0, + 821.0, + 924.0, + 856.0, + 813.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 856.0, + 978.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 851.0, + 592.0, + 851.0, + 592.0, + 887.0, + 387.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 851.0, + 1225.0, + 851.0, + 1225.0, + 887.0, + 683.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1017.0, + 1406.0, + 1017.0, + 1406.0, + 1056.0, + 292.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1081.0, + 1403.0, + 1081.0, + 1403.0, + 1114.0, + 295.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1406.0, + 1142.0, + 1406.0, + 1176.0, + 295.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1172.0, + 1406.0, + 1172.0, + 1406.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1006.0, + 1235.0, + 1006.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1409.0, + 1939.0, + 1409.0, + 1985.0, + 292.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1118.0, + 1975.0, + 1118.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 973.0, + 992.0, + 973.0, + 992.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 585.0, + 821.0, + 585.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 821.0, + 724.0, + 821.0, + 724.0, + 856.0, + 692.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 821.0, + 924.0, + 821.0, + 924.0, + 856.0, + 813.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 856.0, + 978.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 851.0, + 592.0, + 851.0, + 592.0, + 887.0, + 387.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 851.0, + 1225.0, + 851.0, + 1225.0, + 887.0, + 683.0, + 887.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 385, + 220, + 1308, + 220, + 1308, + 460, + 385, + 460 + ], + "score": 0.983, + "html": "
SettingModelsImage SizeTop-1 Accuracy
ImageNet-1KCoAtNet-2224284.1
Head size: 32 → 64224283.9
Norm type: 1 BN →LN224284.1
ImageNet-21K ⇒ ImageNet-1KCoAtNet-3384287.9
Norm type: BN →→ LN384²87.8
" + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1404, + 839, + 1404, + 1022, + 298, + 1022 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1133, + 1403, + 1133, + 1403, + 1286, + 298, + 1286 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 515, + 1402, + 515, + 1402, + 637, + 299, + 637 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 643, + 1404, + 643, + 1404, + 824, + 297, + 824 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 1300, + 1400, + 1300, + 1400, + 1393, + 298, + 1393 + ], + "score": 0.946 + }, + { + "category_id": 6, + "poly": [ + 542, + 189, + 1154, + 189, + 1154, + 219, + 542, + 219 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 1064, + 509, + 1064, + 509, + 1102, + 298, + 1102 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 836, + 2062, + 865, + 2062, + 865, + 2085, + 836, + 2085 + ], + "score": 0.844 + }, + { + "category_id": 13, + "poly": [ + 683, + 991, + 787, + 991, + 787, + 1020, + 683, + 1020 + ], + "score": 0.88, + "latex": "10 - 2 0 \\%" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 181.0, + 1158.0, + 181.0, + 1158.0, + 227.0, + 539.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1058.0, + 514.0, + 1058.0, + 514.0, + 1109.0, + 289.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 871.0, + 2058.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1406.0, + 869.0, + 1406.0, + 904.0, + 294.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 899.0, + 1406.0, + 899.0, + 1406.0, + 934.0, + 294.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 966.0, + 294.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 958.0, + 1405.0, + 958.0, + 1405.0, + 996.0, + 293.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 682.0, + 987.0, + 682.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 987.0, + 1372.0, + 987.0, + 1372.0, + 1027.0, + 788.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1199.0, + 293.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1224.0, + 1406.0, + 1224.0, + 1406.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 542.0, + 1256.0, + 542.0, + 1293.0, + 294.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 1407.0, + 512.0, + 1407.0, + 551.0, + 294.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 577.0, + 318.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 575.0, + 1407.0, + 575.0, + 1407.0, + 611.0, + 318.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 609.0, + 503.0, + 609.0, + 503.0, + 638.0, + 318.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 639.0, + 1406.0, + 639.0, + 1406.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 672.0, + 1407.0, + 672.0, + 1407.0, + 707.0, + 317.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 736.0, + 317.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 731.0, + 1406.0, + 731.0, + 1406.0, + 767.0, + 315.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 760.0, + 1407.0, + 760.0, + 1407.0, + 800.0, + 316.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 795.0, + 492.0, + 795.0, + 492.0, + 827.0, + 316.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 1406.0, + 1297.0, + 1406.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1362.0, + 863.0, + 1362.0, + 863.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 264, + 1411, + 264, + 1411, + 2012, + 296, + 2012 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 200, + 455, + 200, + 455, + 235, + 299, + 235 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.826 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 196.0, + 460.0, + 196.0, + 460.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 252.0, + 1406.0, + 252.0, + 1406.0, + 299.0, + 307.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 330.0, + 350.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 318.0, + 565.0, + 318.0, + 565.0, + 355.0, + 356.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 358.0, + 1408.0, + 358.0, + 1408.0, + 401.0, + 307.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 389.0, + 749.0, + 389.0, + 749.0, + 430.0, + 350.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 432.0, + 1406.0, + 432.0, + 1406.0, + 474.0, + 307.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 462.0, + 684.0, + 462.0, + 684.0, + 503.0, + 352.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 503.0, + 1408.0, + 503.0, + 1408.0, + 545.0, + 307.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 537.0, + 1408.0, + 537.0, + 1408.0, + 574.0, + 356.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 566.0, + 1406.0, + 566.0, + 1406.0, + 603.0, + 354.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 595.0, + 430.0, + 595.0, + 430.0, + 636.0, + 352.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 639.0, + 1406.0, + 639.0, + 1406.0, + 676.0, + 309.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 670.0, + 626.0, + 670.0, + 626.0, + 707.0, + 352.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 707.0, + 1406.0, + 707.0, + 1406.0, + 749.0, + 307.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 780.0, + 354.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 770.0, + 430.0, + 770.0, + 430.0, + 811.0, + 352.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 813.0, + 1408.0, + 813.0, + 1408.0, + 855.0, + 307.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 843.0, + 1408.0, + 843.0, + 1408.0, + 886.0, + 352.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 874.0, + 432.0, + 874.0, + 432.0, + 913.0, + 352.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 915.0, + 1410.0, + 915.0, + 1410.0, + 955.0, + 307.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 947.0, + 1406.0, + 947.0, + 1406.0, + 984.0, + 354.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 978.0, + 1011.0, + 978.0, + 1011.0, + 1015.0, + 354.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1019.0, + 1408.0, + 1019.0, + 1408.0, + 1061.0, + 307.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1048.0, + 1406.0, + 1048.0, + 1406.0, + 1092.0, + 352.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1080.0, + 567.0, + 1080.0, + 567.0, + 1117.0, + 354.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1408.0, + 1119.0, + 1408.0, + 1161.0, + 293.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1151.0, + 1406.0, + 1151.0, + 1406.0, + 1194.0, + 352.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1184.0, + 871.0, + 1184.0, + 871.0, + 1221.0, + 354.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 1408.0, + 1223.0, + 1408.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1252.0, + 1410.0, + 1252.0, + 1410.0, + 1296.0, + 352.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1284.0, + 432.0, + 1284.0, + 432.0, + 1325.0, + 352.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 1410.0, + 1327.0, + 1410.0, + 1367.0, + 292.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1398.0, + 352.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1388.0, + 1011.0, + 1388.0, + 1011.0, + 1427.0, + 348.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 1408.0, + 1429.0, + 1408.0, + 1469.0, + 292.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1458.0, + 1410.0, + 1458.0, + 1410.0, + 1502.0, + 352.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1488.0, + 1408.0, + 1488.0, + 1408.0, + 1533.0, + 350.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1523.0, + 643.0, + 1523.0, + 643.0, + 1560.0, + 352.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1560.0, + 1408.0, + 1560.0, + 1408.0, + 1604.0, + 292.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1590.0, + 1408.0, + 1590.0, + 1408.0, + 1635.0, + 351.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1623.0, + 810.0, + 1623.0, + 810.0, + 1663.0, + 350.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1406.0, + 1665.0, + 1406.0, + 1708.0, + 293.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1735.0, + 354.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1727.0, + 836.0, + 1727.0, + 836.0, + 1765.0, + 350.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 1406.0, + 1769.0, + 1406.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1841.0, + 350.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1829.0, + 741.0, + 1829.0, + 741.0, + 1869.0, + 348.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1873.0, + 1408.0, + 1873.0, + 1408.0, + 1910.0, + 295.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1900.0, + 1254.0, + 1900.0, + 1254.0, + 1943.0, + 352.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1985.0, + 293.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1973.0, + 1387.0, + 1973.0, + 1387.0, + 2016.0, + 352.0, + 2016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 294, + 102, + 1410, + 102, + 1410, + 2022, + 294, + 2022 + ], + "score": 0.779 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 201.0, + 1409.0, + 201.0, + 1409.0, + 241.0, + 293.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 241.0, + 1411.0, + 241.0, + 1411.0, + 290.0, + 288.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 277.0, + 1340.0, + 277.0, + 1340.0, + 317.0, + 352.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 351.0, + 1407.0, + 351.0, + 1407.0, + 391.0, + 352.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 380.0, + 740.0, + 380.0, + 740.0, + 418.0, + 347.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 422.0, + 1407.0, + 422.0, + 1407.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 452.0, + 1407.0, + 452.0, + 1407.0, + 494.0, + 350.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 488.0, + 643.0, + 488.0, + 643.0, + 521.0, + 354.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 528.0, + 1407.0, + 528.0, + 1407.0, + 570.0, + 290.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 559.0, + 1407.0, + 559.0, + 1407.0, + 597.0, + 352.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 603.0, + 1409.0, + 603.0, + 1409.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 637.0, + 1405.0, + 637.0, + 1405.0, + 671.0, + 354.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 664.0, + 742.0, + 664.0, + 742.0, + 702.0, + 349.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 1407.0, + 706.0, + 1407.0, + 746.0, + 293.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 738.0, + 1409.0, + 738.0, + 1409.0, + 778.0, + 352.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 770.0, + 812.0, + 770.0, + 812.0, + 810.0, + 352.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 812.0, + 1409.0, + 812.0, + 1409.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 843.0, + 858.0, + 843.0, + 858.0, + 883.0, + 352.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 889.0, + 1407.0, + 889.0, + 1407.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 917.0, + 1407.0, + 917.0, + 1407.0, + 957.0, + 352.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 948.0, + 1131.0, + 948.0, + 1131.0, + 984.0, + 349.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 993.0, + 1407.0, + 993.0, + 1407.0, + 1026.0, + 297.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 1407.0, + 1035.0, + 1407.0, + 1075.0, + 295.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1064.0, + 1392.0, + 1064.0, + 1392.0, + 1102.0, + 352.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1108.0, + 1407.0, + 1108.0, + 1407.0, + 1148.0, + 295.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1142.0, + 934.0, + 1142.0, + 934.0, + 1176.0, + 354.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 1409.0, + 1182.0, + 1409.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1216.0, + 1405.0, + 1216.0, + 1405.0, + 1249.0, + 358.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1243.0, + 1084.0, + 1243.0, + 1084.0, + 1281.0, + 350.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1287.0, + 1407.0, + 1287.0, + 1407.0, + 1327.0, + 295.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1354.0, + 354.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1348.0, + 943.0, + 1348.0, + 943.0, + 1388.0, + 352.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1409.0, + 1390.0, + 1409.0, + 1430.0, + 293.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1415.0, + 1409.0, + 1415.0, + 1409.0, + 1466.0, + 350.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1455.0, + 1105.0, + 1455.0, + 1105.0, + 1489.0, + 354.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1527.0, + 1409.0, + 1527.0, + 1409.0, + 1567.0, + 352.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1554.0, + 432.0, + 1554.0, + 432.0, + 1596.0, + 350.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1407.0, + 1601.0, + 1407.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1628.0, + 1407.0, + 1628.0, + 1407.0, + 1670.0, + 352.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1662.0, + 1407.0, + 1662.0, + 1407.0, + 1702.0, + 352.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1689.0, + 432.0, + 1689.0, + 432.0, + 1731.0, + 350.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1771.0, + 297.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1765.0, + 1405.0, + 1765.0, + 1405.0, + 1805.0, + 354.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1794.0, + 645.0, + 1794.0, + 645.0, + 1832.0, + 349.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1838.0, + 1409.0, + 1838.0, + 1409.0, + 1878.0, + 295.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1870.0, + 1409.0, + 1870.0, + 1409.0, + 1910.0, + 352.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1984.0, + 352.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1977.0, + 951.0, + 1977.0, + 951.0, + 2011.0, + 354.0, + 2011.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 191, + 1409, + 191, + 1409, + 1390, + 293, + 1390 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.823 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 870.0, + 2057.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1407.0, + 203.0, + 1407.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 271.0, + 353.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 265.0, + 641.0, + 265.0, + 641.0, + 295.0, + 357.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 303.0, + 1405.0, + 303.0, + 1405.0, + 343.0, + 293.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 334.0, + 1405.0, + 334.0, + 1405.0, + 371.0, + 354.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 366.0, + 1015.0, + 366.0, + 1015.0, + 399.0, + 353.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 406.0, + 1403.0, + 406.0, + 1403.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 439.0, + 735.0, + 439.0, + 735.0, + 471.0, + 353.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 479.0, + 1403.0, + 479.0, + 1403.0, + 513.0, + 296.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 512.0, + 1257.0, + 512.0, + 1257.0, + 544.0, + 354.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 548.0, + 1403.0, + 548.0, + 1403.0, + 586.0, + 297.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 579.0, + 1315.0, + 579.0, + 1315.0, + 617.0, + 352.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 661.0, + 292.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 655.0, + 1401.0, + 655.0, + 1401.0, + 685.0, + 356.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 681.0, + 1057.0, + 681.0, + 1057.0, + 717.0, + 353.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 724.0, + 1403.0, + 724.0, + 1403.0, + 758.0, + 297.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 754.0, + 1406.0, + 754.0, + 1406.0, + 792.0, + 354.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 784.0, + 1379.0, + 784.0, + 1379.0, + 822.0, + 356.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 857.0, + 1133.0, + 857.0, + 1133.0, + 891.0, + 353.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 934.0, + 297.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 929.0, + 1409.0, + 929.0, + 1409.0, + 966.0, + 354.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 999.0, + 1403.0, + 999.0, + 1403.0, + 1035.0, + 354.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1033.0, + 1129.0, + 1033.0, + 1129.0, + 1064.0, + 353.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 1405.0, + 1069.0, + 1405.0, + 1109.0, + 292.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1103.0, + 642.0, + 1103.0, + 642.0, + 1133.0, + 354.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1405.0, + 1142.0, + 1405.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1175.0, + 1331.0, + 1175.0, + 1331.0, + 1209.0, + 353.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1252.0, + 296.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1245.0, + 642.0, + 1245.0, + 642.0, + 1278.0, + 353.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1287.0, + 1406.0, + 1287.0, + 1406.0, + 1321.0, + 297.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1317.0, + 1409.0, + 1317.0, + 1409.0, + 1355.0, + 353.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1345.0, + 428.0, + 1345.0, + 428.0, + 1382.0, + 353.0, + 1382.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/r6cNUjS8cm0/r6cNUjS8cm0.md b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0.md new file mode 100644 index 0000000000000000000000000000000000000000..53a7893d7f88d0f71f385d8a32d5027b40a7c6f6 --- /dev/null +++ b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0.md @@ -0,0 +1,487 @@ +# Closing the Gap: Tighter Analysis of Alternating Stochastic Gradient Methods for Bilevel Problems + +Tianyi Chen Rensselaer Polytechnic Institute chentianyi $1 9 @$ gmail.com + +Yuejiao Sun +UCLA +sunyj@math.ucla.edu + +Wotao Yin UCLA wotaoyin@math.ucla.edu + +# Abstract + +Stochastic nested optimization, including stochastic bilevel, min-max, and compositional optimization, is gaining popularity in many machine learning applications. While the three problems share a nested structure, existing works often treat them separately, thus developing problem-specific algorithms and analyses. Among various exciting developments, simple SGD-type updates (potentially on multiple variables) are still prevalent in solving this class of nested problems, but they are believed to have a slower convergence rate than non-nested problems. This paper unifies several SGD-type updates for stochastic nested problems into a single SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. By leveraging the hidden smoothness of the problem, this paper presents a tighter analysis of ALSET for stochastic nested problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, it requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total. Under certain regularity conditions, applying our results to stochastic compositional, min-max, and reinforcement learning problems either improves or matches the best-known sample complexity in the respective cases. Our results explain why simple SGD-type algorithms in stochastic nested problems all work very well in practice without the need for further modifications. + +# 1 Introduction + +Stochastic gradient descent (SGD) methods [1] are prevalent in solving large-scale machine learning problems. Often, SGD is applied to solve stochastic problems with a relatively simple structure. Specifically, applying SGD to minimize the function $\mathbb { E } _ { \xi } ^ { - } \left[ f ( x ; \xi ) \right]$ over the variable $x \in \mathbb { R } ^ { d }$ , we have the iterative update $\boldsymbol { x } ^ { k + 1 } = \boldsymbol { x } ^ { k } - \alpha \nabla f ( x ^ { k } ; \xi ^ { k } )$ , where $\alpha > 0$ is the stepsize and $\nabla f ( x ^ { k } ; \xi ^ { k } )$ is the stochastic gradient at the iterate $x ^ { k }$ and the sample $\xi ^ { k }$ . However, many problems in machine learning today, such as meta learning, deep learning, hyper-parameter optimization, and reinforcement learning, go beyond the above simple minimization structure (termed the non-nested problem thereafter). For example, the objective function may be the compositions of multiple functions, where each composition may introduce an additional expectation [2]; and, the objective function may depend on the solution of another optimization problem [3]. In these problems, how to apply SGD and the efficiency of running SGD are not fully understood. + +To answer these questions, in this paper, we consider the following form of stochastic nested optimization problems, which is a generalization of the non-nested problems, given by + +$$ +\begin{array} { r l } { \underset { x \in \mathbb { R } ^ { d } } { \operatorname* { m i n } } } & { F ( x ) : = \mathbb { E } _ { \xi } \left[ f \left( x , y ^ { * } ( x ) ; \xi \right) \right] } \\ { \mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \underset { y \in \mathbb { R } ^ { d ^ { \prime } } } { \operatorname { a r g m i n } } \ \mathbb { E } _ { \phi } [ g ( x , y ; \phi ) ] } \end{array} +$$ + +where $f$ and $g$ are differentiable functions; and, $\xi$ and $\phi$ are random variables. In the optimization literature [4–6], the problem (1) is referred to as the stochastic bilevel problem, where the upper-level optimization problem depends on the solution of the lower-level optimization over $y \in \mathbb { R } ^ { d ^ { \prime } }$ , denoted as $y ^ { \ast } ( x )$ , which depends on the value of upper-level variable $\boldsymbol { x } \in \mathbb { R } ^ { d }$ . + +The stochastic bilevel nested problem (1) encompasses two popular formulations with the nested structure: stochastic min-max problems and stochastic compositional problems. Therefore, results on the general nested problem (1) will also imply the results in the special cases. For example, if the lower-level objective $g$ is the negative of the upper-level objective $f$ , i.e., $g ( x , y ; \phi ) : = - \bar { f } ( x , y ; \xi )$ , the stochastic bilevel problem (1) reduces to the stochastic min-max problem + +$$ +\operatorname { I f } g ( x , y ; \phi ) : = - f ( x , y ; \xi ) \quad \Rightarrow \quad \operatorname* { m i n } _ { x \in \mathbb { R } ^ { d } } F ( x ) : = \operatorname* { m a x } _ { y \in \mathbb { R } ^ { d ^ { \prime } } } \mathbb { E } _ { \xi } \left[ f ( x , y ; \xi ) \right] . +$$ + +Motivated by applications in zero-sum games, adversarial learning and training GANs, significant efforts have been recently made for solving the stochastic min-max problem; see e.g., [7–11]. + +For example, if the upper-level objective $f$ is only a function of $y$ , i.e., $f ( x , y ; \xi ) : = f ( y ; \xi )$ , and the lower-level objective $g$ is a quadratic function of $y$ , i.e., $g ( x , y ; \phi ) : = \| y - h ( x ; \phi ) \| ^ { 2 }$ with a smooth function $h$ of $x$ , then the variable $y ^ { * } ( x )$ admits a closed-form solution, and thus the stochastic bilevel problem (1) reduces to the stochastic compositional problem [12–14] + +$$ +\mathrm { I f } \ g ( x , y ; \phi ) : = \| y - h ( x ; \phi ) \| ^ { 2 } \quad \Rightarrow \quad \operatorname* { m i n } _ { x \in \mathbb { R } ^ { d } } \ F ( x ) : = \mathbb { E } _ { \xi } \left[ f \big ( \mathbb { E } _ { \phi } [ h ( x ; \phi ) ] ; \xi \big ) \right] . +$$ + +Stochastic compositional problems in the form of (3) have been studied in the applications in model-agnostic meta learning and policy evaluation in reinforcement learning; see e.g., [2, 15]. + +To solve the nested problem (1) by SGD, one natural solution is to apply alternating SGD updates on $x$ and $y$ based on their stochastic gradients + +$$ +y ^ { k + 1 } = y ^ { k } - \beta _ { k } h _ { g } ^ { k } ~ \mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } +$$ + +where $h _ { g } ^ { k }$ is the unbiased stochastic gradient of $\mathbb { E } _ { \phi } [ g ( x ^ { k } , y ^ { k } ; \phi ) ]$ and $h _ { f } ^ { k }$ is the (possibly biased) stochastic gradient of $F ( x ^ { k } )$ ; and, $\beta _ { k }$ and $\alpha _ { k }$ are the stepsizes. A key challenge of running (4) for the nested problem is that (stochastic) gradient of the upper-level variable $x$ is prohibitively expensive to compute. As we will show later, computing an unbiased stochastic gradient of $F ( x )$ requires solving the lower-level problem exactly to obtain $y ^ { * } ( x )$ . + +An accurate stochastic gradient $h _ { f } ^ { k }$ can be obtained in roughly three ways. One way is to run SGD updates on $y ^ { k }$ multiple times before updating $x ^ { k }$ , which yields a double-loop algorithm. To guarantee convergence, it typically requires either the increasing number of lower-level $y$ -update or the growing number of batch size to estimate $h _ { g } ^ { k }$ ; see e.g., [16, 17]. The second way is to update $y ^ { k }$ in a timescale faster than that of $x ^ { k }$ so that $x ^ { k }$ is relatively static with respect to $y ^ { k }$ ; i.e., $\scriptstyle \operatorname* { l i m } _ { k \to \infty } \alpha _ { k } / \beta _ { k } = 0$ ; see e.g., [18]. The third way is to modify the direction $h _ { g } ^ { k }$ of $y ^ { k }$ by incorporating additional correction term, which adds extra computation burden; see e.g., [19]. At a high level, these modifications either deviate from the lightweight implementation of SGD or sacrifice the sample complexity of SGD. + +To this end, the main goal of this paper is to study the efficiency of running the vanilla alternating SGD (4) for the nested problem (1) and its implications on the special problem classes (2)-(3). + +# 1.1 Main results + +This paper analyzes a unifying algorithm for the stochastic bilevel problems that runs SGD on each variable alternatingly. We provide sample complexity that matches the complexity of SGD for single-level stochastic problems. Our results explain why SGD-type algorithms in stochastic bilevel, min-max, and compositional problems work very well in practice without modifications, including correction, increasing batch size, and two-timescale stepsizes. + +In the context of existing methods, our contributions can be summarized as follows. + +C1) We connect three different classes of stochastic nested optimization problems (stochastic compositional, min-max, and bilevel optimization), and unify three popular SGD-type updates for the respective problems into a single SGD-type method. We call it the ALternating Stochastic gradient dEscenT (ALSET) method. + +
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
+ +Table 1: Sample complexity of stochastic bilevel algorithms (BSA in [16], TTSA in [18], stocBiO in [17], STABLE in [19], SUSTAIN in [25], RSVRB in [26]) to achieve an $\epsilon$ -stationary point of $F ( x )$ ; the notation $\widetilde { \mathcal { O } } ( \cdot )$ hides the terms of $\log \epsilon ^ { - 1 }$ ; the notation $\kappa ^ { p }$ denotes a polynomial function of $\kappa$ since the dependence on $\kappa$ is not explicit in [18, 19, 25, 26]. + +C2) Under the same assumptions made in most of the previous work, we discover that the solution of the lower-level problem is smooth – a property that is overlooked by the previous analyses. By leveraging the hidden smoothness, we present a tighter analysis of ALSET for the stochastic bilevel problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, ALSET requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total, rather than the $\mathcal { O } \dot { ( \epsilon ^ { - 5 / 2 } ) }$ sample complexity in the existing literature. +C3) We further customize the analysis to the two special cases – the compositional and min-max problems, and establish the improved sample complexity relative to that in the literature. We apply a new analysis to the celebrated actor-critic method for reinforcement learning problems. Under some regularity conditions, we show that, to achieve an $\epsilon$ -stationary point, the single-loop actor-critic method requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples with i.i.d. sampling, which improves the best-known result of $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ in the literature. + +# 1.2 Other related works + +To put our work in context, we review prior art that we group in the following three categories. + +Stochastic bilevel optimization. We can trace the study of bilevel optimization to the 1950s [20]. Many recent efforts have been made to solve the bilevel problems. One successful approach is to reformulate the bilevel problem as a single-level problem by replacing the lower-level problem by its optimality conditions [4, 5]. Recently, gradient-based methods for bilevel optimization have gained popularity. They iteratively approximate the (stochastic) gradient of the upper-level problem either in a forward or backward manner [21, 3, 22, 23]. Recent work has also studied the case where the lower-level problem does not have a unique solution [24]. + +The non-asymptotic analysis of bilevel optimization algorithms has been recently studied in some pioneering works, e.g., [16, 18, 17], just to name a few. In both [16, 17], bilevel stochastic optimization algorithms have been developed that run in a double-loop manner. To achieve an $\epsilon$ -stationary point, they only need the sample complexities $\mathcal { O } ( \epsilon ^ { - 3 } )$ and $\mathcal { O } ( \epsilon ^ { - 2 } )$ , respectively, comparable to that of SGD for the single-level case. Recently, a single-loop two-timescale stochastic approximation algorithm has been developed in [18] for the bilevel problem (1). Due to the nature of the two-timescale update, it incurs the sub-optimal sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ . A single-loop single-timescale stochastic bilevel optimization method has been recently developed in [19]. While the method can achieve the sample complexity $\mathcal { O } ( \epsilon ^ { - 2 } )$ , the resultant update on $y$ needs extra matrix projection, which can be costly. Very recently, the momentum-based acceleration has been incorporated into both the $x$ - and $y$ -updates in [25, 26] and also in [27] after our submission to the conference, where the new algorithms therein enjoy an improved sample complexity $\mathcal { O } ( \epsilon ^ { - 3 / 2 } )$ . However, these results cannot imply the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity of the alternating SGD update (4), and are orthogonal to our results. A comparison of our results with prior work can be found in Table 1. + +Stochastic min-max optimization. In the context of min-max problems, the alternating version of the stochastic gradient descent ascent (GDA) method can be viewed as the alternating SGD updates (4) for the special nested problem (2). To mitigate the cycling behavior of GDA for convex-concave min-max problems, several variants have been developed by incorporating the idea of optimism; see e.g., [7, 8, 11, 29]. The analysis of stochastic GDA in the nonconvex-strongly concave setting is closely related to this paper; e.g., [9, 10, 30, 28]. Specifically, for stochastic GDA (SGDA), the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity has been established in [28] under an increasing batch size $\mathcal { O } ( \epsilon ^ { - 1 } )$ . As highlighted in [28], how to achieve the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity under an $\mathcal { O } ( 1 )$ constant batch size remains open. The reduction of our results to the min-max setting will provide an answer to this open question. In the same setting, accelerated GDA algorithms have been developed in [31–33]. Going beyond the one-side concave settings, algorithms and their convergence analysis have been studied for nonconvex-nonconcave min-max problems with certain benign structure; see e.g., [8, 34–36]. A comparison of our results with prior work can be found in Table 2. + +Stochastic compositional optimization. Stochastic compositional gradient algorithms developed in [12, 37] can be viewed as the alternating SGD updates (4) for the special compositional problem (3). However, to ensure convergence, the algorithms [12, 37] use two sequences of variables being updated in two different time scales, and thus the complexity of [12] and [37] is worse than $\mathcal { O } ( \epsilon ^ { - 2 } )$ of SGD for the non-compositional case. While most of existing algorithms rely on either two-timescale updates, the single-timescale single-loop approaches have been recently developed in [14, 38, 39], which achieve the sample complexity $\bar { \mathcal { O } } \bar { ( } \epsilon ^ { - 2 } \bar { ) }$ , same as SGD for the non-nested problems. However, the algorithms proposed therein are not the vanilla alternating SGD update in the sense of (4). Other related compositional algorithms also include [40–42]. A comparison can be found in Table 3. + +Organization. The basic background of bilevel optimization is reviewed, and the tighter analysis of the unifying ALSET method is presented in Section 2. The reduction of the main results to the special stochastic nested problems is provided in Section 3, and its applications to the actor-critic method are discussed in Section 4, followed by the conclusions in Section 5. + +# 2 Improved Analysis of Alternating Stochastic Gradient Method + +In this section, we will first provide background of bilevel problems and then introduce ALSET for stochastic nested problems. + +# 2.1 Preliminaries + +We use $\| \cdot \|$ to denote the $\ell _ { 2 }$ norm for vectors and Frobenius norm for matrices. For convenience, we define the deterministic functions as $g ( x , y ) : = \mathbb { E } _ { \phi } [ g ( x , y ; \phi ) ]$ and $f ( x , y ) : = \mathbb { E } _ { \xi } [ f ( x , y ; \xi ) ]$ . + +We also define $\nabla _ { y y } ^ { 2 } g \big ( x , y \big )$ as the Hessian matrix of $g$ with respect to $y$ and define $\nabla _ { x y } ^ { 2 } g \left( x , y \right)$ as + +$$ +\nabla _ { x y } ^ { 2 } g ( x , y ) : = \left[ \begin{array} { l l l } { \frac { \partial ^ { 2 } } { \partial x _ { 1 } \partial y _ { 1 } } g ( x , y ) } & { \cdot \cdot \cdot } & { \frac { \partial ^ { 2 } } { \partial x _ { 1 } \partial y _ { d ^ { \prime } } } g ( x , y ) } \\ & { \cdot \cdot \cdot } \\ { \frac { \partial ^ { 2 } } { \partial x _ { d } \partial y _ { 1 } } g ( x , y ) } & { \cdot \cdot \cdot } & { \frac { \partial ^ { 2 } } { \partial x _ { d } \partial y _ { d ^ { \prime } } } g ( x , y ) } \end{array} \right] . +$$ + +We make the following assumptions, which are common in the bilevel optimization literature [16– 18, 26]. + +Assumption 1 (Lipschitz continuity). Assume that $f , \nabla f , \nabla g , \nabla ^ { 2 } g$ are respectively $\ell _ { f , 0 } .$ , $\ell _ { f , 1 } , \ell _ { g , 1 } , \ell _ { g , 2 }$ -Lipschitz continuous; that is, for $z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]$ , $z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]$ , we have $\parallel f ( x _ { 1 } , y _ { 1 } ) -$ $\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \| ^ { - } \le } & { \ell _ { f , 0 } \| z _ { 1 } - z _ { 2 } \| , \| \nabla f ( x _ { 1 } , y _ { 1 } ) - \nabla f ( x _ { 2 } , y _ { 2 } ) \| } & { \le } & { \ell _ { f , 1 } \| z _ { 1 } - x _ { 2 } \| , } \end{array}$ $\nabla g ( x _ { 2 } , y _ { 2 } ) \| \leq \ell _ { g , 1 } \| z _ { 1 } - z _ { 2 } \|$ , $\begin{array} { r } { \| \nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \| \le \ell _ { g , 2 } \| z _ { 1 } - z _ { 2 } \| . } \end{array}$ . + +Assumption 2 (Strong convexity of $g$ in $y$ ). For any fixed $x$ , $g ( x , y )$ is $\mu _ { g }$ -strongly convex in $y$ + +Assumptions 1 and 2 together ensure that the first- and second-order derivations of $f ( x , y ) , g ( x , y )$ as well as the solution mapping $y ^ { \ast } ( x )$ , are well-behaved. Define the condition number $\kappa : = \ell _ { g , 1 } / \mu _ { g }$ + +Assumption 3 (Stochastic derivatives). The stochastic derivatives $\nabla f ( x , y ; \xi )$ , $\nabla g ( x , y ; \phi )$ , $\nabla ^ { 2 } g ( x , \mathbf { \bar { y } } , \phi )$ are unbiased estimators of $\nabla f ( x , y )$ , $\nabla g ( x , y )$ , $\nabla ^ { 2 } g ( x , y )$ , respectively; and their variances are bounded by $\sigma _ { f } ^ { 2 } , \sigma _ { g , 1 } ^ { 2 }$ , $\sigma _ { g , 2 } ^ { 2 }$ , respectively. + +
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
+ +Table 2: Sample complexity of stochastic minmax algorithms (BSA in [16], GDA in [28], SMD in [9]) to achieve an $\epsilon$ -stationary point of $F ( x )$ . + +
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
+ +Table 3: Sample complexity of stochastic compositional algorithms (SCGD in [12], NASA in [14]) to achieve an $\epsilon$ -stationary point of $F ( x )$ . + +Assumptions 2 and 3 together imply that the second moments are bounded by + +$$ +\begin{array} { r l } & { \mathbb { E } _ { \xi } [ \| \nabla f ( x , y ; \xi ) \| ^ { 2 } ] \le \ell _ { f , 0 } ^ { 2 } + \sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\ & { \mathbb { E } _ { \phi } [ \| \nabla ^ { 2 } g ( x , y ; \phi ) \| ^ { 2 } ] \le \ell _ { g , 1 } ^ { 2 } + \sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \end{array} +$$ + +Assumption 3 is the counterpart of the unbiasedness and bounded variance assumption in the singlelevel stochastic optimization. In addition, the bounded moments in Assumption 3 ensure the Lipschitz continuity of the upper-level gradient $\nabla F ( x )$ . + +We first highlight the inherent challenge of directly applying the alternating SGD method to the bilevel problem (1). To illustrate this point, we derive the gradient of the upper-level function $F ( x )$ in the next proposition; see the proof in the supplementary document. + +Proposition 1. Under Assumptions $_ { I - 3 }$ , we have the gradients + +$$ +\begin{array} { r } { \nabla F ( x ) = \nabla _ { x } f ( x , y ^ { * } ( x ) ) - \nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \left[ \nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \right] ^ { - 1 } \nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \end{array} +$$ + +urthermore, $\nabla F ( x )$ and $y ^ { * } ( x )$ are Lipschitz continuous with constants $L _ { F } , L _ { y }$ , respectively. + +Notice that obtaining an unbiased stochastic estimate of $\nabla F ( x )$ and applying SGD on $x$ face two main difficulties: i) the gradient $\nabla F ( x )$ at $x$ depends on the minimizer of the lower-level problem $y ^ { \ast } ( x )$ ; ii) even if $y ^ { * } ( x )$ is known, it is hard to apply the stochastic approximation to obtain an unbiased estimate of $\dot { \nabla } F ( { \boldsymbol { x } } )$ since $\nabla F ( x )$ is nonlinear in $\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )$ . + +Similar to some existing stochastic bilevel algorithms [16, 18, 17], we evaluate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Replacing the $y ^ { * } ( x )$ in definition (6) by $y$ , we define + +$$ +\overline { { \nabla } } _ { x } f \big ( x , y \big ) : = \nabla _ { x } f \big ( x , y \big ) - \nabla _ { x y } ^ { 2 } g \big ( x , y \big ) \left[ \nabla _ { y y } ^ { 2 } g \big ( x , y \big ) \right] ^ { - 1 } \nabla _ { y } f \big ( x , y \big ) . +$$ + +And to reduce the bias in (7), we estimate $\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 }$ via + +$$ +\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 } \approx \Big [ \frac { N } { \ell _ { g , 1 } } \prod _ { n = 1 } ^ { N ^ { \prime } } \Big ( I - \frac { 1 } { \ell _ { g , 1 } } \nabla _ { y y } ^ { 2 } g ( x , y ; \phi _ { ( n ) } ) \Big ) \Big ] +$$ + +where $N ^ { \prime }$ is drawn from $\{ 1 , 2 , \ldots , N \}$ uniformly at random and $\{ \phi ^ { ( 1 ) } , \dots , \phi ^ { ( N ^ { \prime } ) } \}$ are i.i.d. samples. It has been shown in [16] that using (8), the estimation bias of $\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 }$ exponentially decreases with the number of samples $N$ . + +# 2.2 Main results: Tighter analysis of ALSET + +In this subsection, we first describe the general ALSET algorithm for the stochastic bilevel problem, and then present its new convergence result. + +This algorithm is very simple to implement. At each iteration $k$ , ALSET alternates between the stochastic gradient update on $y ^ { k }$ and that on $x ^ { k }$ . Although it is possible that $T = 1$ , for generality, we run $T$ steps of SGD on + +# Algorithm 1 ALSET for the stochastic bilevel problem (1) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: for $t = 0 , 1 , \dots , T - 1$ do +4: update $y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } h _ { g } ^ { k , t }$ . set $y ^ { k , 0 } = y ^ { k }$ +5: end for +6: update $x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } \qquad \Join$ +7: end for + +the lower-level variable $y ^ { k }$ before updating upper-level variable $x ^ { k }$ . With $\alpha _ { k }$ and $\beta _ { k }$ denoting the stepsizes of $x ^ { k }$ and $y ^ { k }$ that decrease at the same rate as SGD, the ALSET update is + +$$ +\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } h _ { g } ^ { k , t } , t = 0 , \ldots , T \quad \mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\ & { x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } } \end{array} +$$ + +where the update direction of $y$ is the stochastic gradient $h _ { g } ^ { k , t } : = \nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \phi ^ { k , t } )$ ; and, with the Hessian inverse estimator (8), the update direction of $x$ is the slightly biased gradient + +$$ +\begin{array} { r l } & { \boldsymbol { h } _ { f } ^ { k } : = \nabla _ { \boldsymbol { x } } f ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \boldsymbol { \xi } ^ { k } ) } \\ & { \qquad - \nabla _ { \boldsymbol { x } \boldsymbol { y } } ^ { 2 } g ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ; \phi _ { ( 0 ) } ^ { k } ) \Bigl [ \frac { N } { \ell _ { g , 1 } } \displaystyle \prod _ { n = 1 } ^ { N ^ { \prime } } \left( I - \frac { 1 } { \ell _ { g , 1 } } \nabla _ { \boldsymbol { y } \boldsymbol { y } } ^ { 2 } g ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \phi _ { ( n ) } ^ { k } ) \right) \Bigr ] \nabla _ { \boldsymbol { y } } f ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \boldsymbol { \xi } ^ { k } ) . } \end{array} +$$ + +The alternating update (9) serves as a template for running SGD on stochastic nested problems. As we will show in the subsequent sections, we can generate stochastic algorithms for min-max, compositional, and even reinforcement learning problems following (9) as a template, but they differ in the particular forms of the stochastic gradients $h _ { g } ^ { k } , h _ { f } ^ { k }$ for the specific upper- and lower-level objective functions. See Algorithm 1 for a summary of ALSET for the bilevel problem. + +Comparison between ALSET with existing works. Readers who are familiar with recent developments on stochastic optimization for bilevel problems may readily recognize the similarities between the general ALSET update (1) that we will analyze and the SGD-based updates in BSA [16], TTSA [18] and stocBiO [17]. However, the update (1) is different from BSA in that the number of $y$ -update, denoted as $T$ , is a constant in (1) that does not grow with the accuracy $\epsilon ^ { - 1 }$ ; the update (1) is different from stocBiO in that the stochastic gradient $h _ { g } ^ { k , \bar { t } }$ used in the $y$ -update (9a) is obtained by a fixed batch size that does not depend on the accuracy $\epsilon ^ { - 1 }$ ; and, the update (1) is different from TTSA in that the stepsizes $\alpha _ { k }$ and $\beta _ { k }$ in (9) decrease at the same timescale. + +We next present the convergence result of ALSET. + +Theorem 1 (Bilevel problems). Suppose Assumptions $_ { I - 3 }$ hold. Define the constants as + +$$ +\bar { \alpha } _ { 1 } = \frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \frac { 2 L _ { f } L _ { y x } } { L _ { y } \eta } } , \bar { \alpha } _ { 2 } = \frac { 1 6 T \mu _ { g } \ell _ { g , 1 } } { ( \mu _ { g } + \ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } \bar { \alpha } _ { 1 } ) } +$$ + +where $\eta > 0$ is a control constant that will be specified in each special case to achieve the best sample complexity. With $\alpha > 0$ being a control constant that will be specified later, choose the stepsizes as + +$$ +\alpha _ { k } = \operatorname* { m i n } \left\{ \bar { \alpha } _ { 1 } , \bar { \alpha } _ { 2 } , \frac { \alpha } { \sqrt { K } } \right\} \mathrm { a n d } \beta _ { k } = \frac { 8 L _ { f } L _ { y } + 2 \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } \bar { \alpha } _ { 1 } } { 4 T \mu _ { g } } \alpha _ { k } . +$$ + +For any $T \geq 1$ and $N = \mathcal { O } ( \log K )$ , the iterates $\{ x ^ { k } , y ^ { k } \}$ generated by Algorithm $I$ satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \left. \nabla F ( x ^ { k } ) \right. ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) \ \mathrm { ~ a n d ~ } \ \mathbb { E } \left[ \left. y ^ { K } - y ^ { * } ( x ^ { K } ) \right. ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) +$$ + +where $y ^ { * } ( x ^ { K } )$ is the minimizer of the lower-level problem in (1b). + +Proposition 2. Under the same assumptions and the choice of parameters of Theorem $^ { l }$ , with $\begin{array} { r } { \kappa : = { \frac { \ell _ { g , 1 } } { \mu _ { g } } } } \end{array}$ \`g,1µg being the condition number, select α = Θ(κ−5/2), T = Θ(κ4), η = O(κ) in (12), and then + +$$ +\frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \mathbb { E } [ \| \nabla F ( x ^ { k } ) \| ^ { 2 } ] = \mathcal { O } \left( \frac { \kappa ^ { 3 } } { K } + \frac { \kappa ^ { \frac { 5 } { 2 } } } { \sqrt { K } } \right) . +$$ + +Discussion of Theorem 1. To achieve $\epsilon$ -stationary point, we need $K = \mathcal { O } ( \kappa ^ { 5 } \epsilon ^ { - 2 } )$ , and the number of evaluations of $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\mathcal { O } ( \kappa ^ { 5 } \epsilon ^ { - 2 } )$ and $\mathcal { O } ( \kappa ^ { 9 } \epsilon ^ { - 2 } )$ , respectively. Therefore, the sample complexity is on the same order of SGD’s sample complexity for the single-level nonconvex problems [43], and improves the state-of-the-art single-loop TTSA’s sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ [18]. Compared to [17], ALSET achieves the same sample complexity in terms of both $\epsilon$ and $\kappa$ , without using a growing batch size. Importantly, we obtain this tighter bound without introducing additional assumptions. + +# 2.3 Proof sketch + +In this subsection, we highlight the key steps of the proof towards Theorem 1, and highlight the differences between our analysis and the existing ones. + +For simplicity, we define the following Lyapunov function as $\begin{array} { r } { \mathbb { V } ^ { k } : = F ( x ^ { k } ) + \frac { L _ { f } } { L _ { y } } \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } . } \end{array}$ We first quantify the difference between two Lyapunov functions as + +$$ +\mathbb { V } ^ { k + 1 } - \mathbb { V } ^ { k } = \underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \mathrm { L e m m a ~ 1 } } + \ \frac { L _ { f } } { L _ { y } } ( \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } - \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ) . +$$ + +The difference in (15) consists of two difference terms: the first term quantifies the descent of the overall objective functions; the second term characterizes the descent of the lower-level errors. + +We will first analyze the descent of the upper-level objective in the next lemma. + +Lemma 1 (Descent of upper level). Suppose Assumptions $_ { I - 3 }$ hold. Define $\bar { h } _ { f } ^ { k } : = \mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]$ and $\| \bar { h } _ { f } ^ { k } - \overline { { \nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \| \leq b _ { k }$ . The sequence of $x ^ { k }$ generated by Algorithm $I$ satisfies + +$$ +\begin{array} { r } { \mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \mathbb { E } [ F ( { x } ^ { k } ) ] \le - \frac { \alpha _ { k } } { 2 } \mathbb { E } [ \| \nabla F ( { x } ^ { k } ) \| ^ { 2 } ] - \left( \frac { \alpha _ { k } } { 2 } - \frac { L _ { F } \alpha _ { k } ^ { 2 } } { 2 } \right) \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] } \\ { + L _ { f } ^ { 2 } \alpha _ { k } \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \| ^ { 2 } ] + \alpha _ { k } b _ { k } ^ { 2 } + \frac { L _ { F } \alpha _ { k } ^ { 2 } } { 2 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where constants $L _ { f } , L _ { F } , \sigma _ { f } ^ { 2 }$ are defined in Lemma 4 of the supplementary document. + +Lemma 1 implies that the descent of the upper-level objective functions depends on the error of the lower-level variable $y ^ { k }$ . We will next analyze the error of the lower-level variable, which is the key step to improving the existing results. + +Before we analyze the error of $y ^ { k }$ , we introduce a lemma that characterizes the smoothness of $y ^ { \ast } ( x )$ and the bounded moments of $h _ { f } ^ { k }$ . The smoothness and the bounded moments have not been explored by previous analysis such as [16–18], and they play an essential role in our improved analysis of $y ^ { k }$ . + +Lemma 2 (Smoothness and boundedness). Under Assumptions $^ { l }$ and 2, we have + +$$ +\begin{array} { r } { \| \nabla y ^ { * } ( x _ { 1 } ) - \nabla y ^ { * } ( x _ { 2 } ) \| \leq L _ { y x } \| x _ { 1 } - x _ { 2 } \| ; \quad \mathbb { E } [ \| h _ { f } ^ { k } \| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \leq \tilde { C } _ { f } ^ { 2 } } \end{array} +$$ + +where $L _ { y x }$ and $\tilde { C } _ { f } ^ { 2 }$ depend on the constants defined in Assumptions 1-2. + +Building upon Lemma 2, we establish the progress of the lower-level update. + +Lemma 3 (Error of lower level). Suppose that Assumptions 1–3 hold, and $y ^ { k + 1 }$ is generated by running iteration (9) given $x ^ { k }$ . If we choose $\begin{array} { r } { \beta _ { k } \le \frac { 2 ^ { \binom { - } { q } } } { \mu _ { g } + \ell _ { g , 1 } } } \end{array}$ , then $y ^ { k + 1 }$ satisfies + +$$ +\begin{array} { r l } & { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] \leq ( 1 - \mu _ { g } \beta _ { k } ) ^ { T } \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + T \beta _ { k } ^ { 2 } \sigma _ { g , 1 } ^ { 2 } } \\ & { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq \Big ( 1 + 4 L _ { f } L _ { y } \alpha _ { k } + \frac { \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } } { 2 } \alpha _ { k } ^ { 2 } \Big ) \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] } \\ & { \qquad + \Big ( L _ { y } ^ { 2 } + \frac { L _ { y } } { 4 L _ { f } \alpha _ { k } } + \frac { L _ { y x } } { 2 \eta } \Big ) \alpha _ { k } ^ { 2 } \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] + \Big ( L _ { y } ^ { 2 } + \frac { L _ { y x } } { 2 \eta } \Big ) \alpha _ { k } ^ { 2 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where $\eta > 0$ is a fixed constant that will be chosen to obtain the tighter complexity bound. + +The improved analysis of the lower-level problem. Next we explain where we can obtain improved analysis. Plugging (18a) into (18b), and selecting stepsizes $\alpha _ { k } , \beta _ { k }$ properly, we can show that + +$$ +\begin{array} { r } { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq ( 1 - \delta _ { 1 } ) \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + \delta _ { 2 } \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] + \delta _ { 3 } T \sigma _ { g , 1 } ^ { 2 } + \delta _ { 4 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where the constants are $\delta _ { 1 } \in [ 0 , 1 ) , \delta _ { 2 } = \mathcal { O } ( \alpha _ { k } ) , \delta _ { 3 } = \mathcal { O } ( \beta _ { k } ^ { 2 } ) , \delta _ { 4 } = \mathcal { O } ( \alpha _ { k } ^ { 2 } )$ . As we will show in our supplementary material, the term $\mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ]$ will be canceled when combined with (16) in our analysis. Hence, choosing $\alpha _ { k } = \mathcal { O } ( k ^ { - 1 / 2 } )$ and $\beta _ { k } = \mathcal { O } ( k ^ { - 1 / 2 } )$ makes the variance terms in (19) decrease at the same $\mathcal { O } ( k ^ { - 1 / 2 } )$ rate as the vanilla SGD for stochastic non-nested problems. + +As a comparison, the progress of the lower-level problem in [18, 17] can be summarized as + +$$ +\mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq ( 1 - \delta _ { 1 } ) \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + \delta _ { 5 } \sigma ^ { 2 } +$$ + +where $\sigma ^ { 2 }$ is some variance term, and the constant is $\delta _ { 5 } = \mathcal { O } ( \beta _ { k } ^ { 2 } + \alpha _ { k } ^ { 2 } / \beta _ { k } )$ or $\mathcal { O } ( 1 / B _ { k } )$ with $B _ { k }$ being the batch size at iteration $k$ . To balance the two terms in $\delta _ { 5 } = \mathcal { O } ( \beta _ { k } ^ { 2 } + \alpha _ { k } ^ { 2 } / \beta _ { k } )$ , two timescales of stepsizes $\begin{array} { r } { \operatorname* { l i m } _ { k \to \infty } \alpha _ { k } / \beta _ { k } = 0 } \end{array}$ are needed, which will make the variance term of the $y$ -update in (20) and that of the $x$ -update in (16) decrease at two different rates, slower than that of SGD; and to reduce $\delta _ { 5 } = \mathcal { O } ( 1 / B _ { k } )$ , a growing batch size $B _ { k } = \mathcal { O } ( k )$ is needed for the $y$ -update. + +# 3 Applications to Stochastic Min-Max and Compositional Problems + +Building upon the general results for the bilevel problems in Section 2, this section will identify special features of the stochastic min-max and stochastic compositional problems, and customize the general results to yield state-of-the-art convergence results for two special nested problems. + +# 3.1 Stochastic min-max problems + +We first apply our results to the stochastic min-max problem (2). In this special case, the lower-level function is $\bar { g ( x , y ; \phi ) } = - f ( x , y ; \xi )$ , and the bilevel gradient in (6) reduces to + +$$ +\nabla F ( x ) : = \nabla _ { x } f { \big ( } x , y ^ { * } ( x ) { \big ) } + \nabla _ { x } y ^ { * } ( x ) ^ { \top } \nabla _ { y } f { \big ( } x , y ^ { * } ( x ) { \big ) } = \nabla _ { x } f { \big ( } x , y ^ { * } ( x ) { \big ) } +$$ + +where the second equality follows from the optimality condition of the lower-level problem, i.e., $\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0$ . Similar to Section 2, we again approximate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Therefore, the alternating stochastic gradients for this special case are given by + +$$ +\begin{array} { r } { h _ { g } ^ { k , t } = - \nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \xi _ { 1 } ^ { k , t } ) ~ \mathrm { a n d } ~ h _ { f } ^ { k } = \nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \xi _ { 2 } ^ { k } ) . } \end{array} +$$ + +Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 2. +When the number of $y$ -update is $T = 1$ , the ALSET algorithm reduces to the SGDA method in [28]. + +Proposition 3 (Min-max problems). Choose the same choice of parameters as those in Theorem $I$ , and follow the same assumption as those in Theorem $^ { l }$ except that $f ( \cdot , y )$ is only Lipchitz over $x \in \mathbb { R } ^ { d }$ but not that $f ( x , \cdot )$ is Lipschitz continuous over $y \in \mathbb { R } ^ { d ^ { \prime } }$ . If we select $\alpha = \Theta ( \kappa ^ { - 1 } )$ , $T = \Theta ( \kappa )$ , $\eta = 1$ in (12), the iterates generated by Algorithm 2 satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \mathbb { E } \left[ \left. \nabla F ( x ^ { k } ) \right. ^ { 2 } \right] = \mathcal { O } \left( \frac { \kappa ^ { 2 } } { K } + \frac { \kappa } { \sqrt { K } } \right) . +$$ + +Proposition 3 implies that for the minmax problem, the convergence rate of ALSET to the stationary point of $\begin{array} { r } { F ( x ) \ \mathrel { \mathop : } = \ \operatorname* { m a x } _ { y \in \mathbb { R } ^ { d ^ { \prime } } } \mathbb { E } _ { \xi } \left[ f ( x , y ; \xi ) \right] } \end{array}$ is $\mathcal { O } ( K ^ { - 1 / 2 } )$ . To achieve $\epsilon$ -stationary point, we need $K = \mathcal { O } ( \kappa ^ { 2 } \epsilon ^ { - 2 } )$ . And the number of gradient evaluations for $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\mathcal { O } \bar { ( \kappa ^ { 2 } \epsilon ^ { - 2 } ) }$ and $\mathcal { O } ( \kappa ^ { 3 } \epsilon ^ { - 2 } )$ , respectively. Comparing with the results in [28], we achieve the same sample complexity without an increasing batch size $\mathsf { \bar { \mathcal { O } } } ( \epsilon ^ { - 1 } )$ , and improve their sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ under a fixed batch size. + +Algorithm 2 ALSET for the min-max problem (2) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: set $y ^ { k , 0 } = y ^ { k }$ +4: for $t = 0 , 1 , \dots , T - 1$ do +5: update $y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } \nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \xi _ { 1 } ^ { k , t } )$ +6: end for +7: set $y ^ { k + 1 } = y ^ { k , T }$ +8: update $\boldsymbol { x } ^ { k + \mathrm { i } } = x ^ { k } - \alpha _ { k } \nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \xi _ { 2 } ^ { k } )$ +9: end for + +However, it is also worth mentioning that compared with [28], our analysis requires the additional Lipschitz continuity assumption of $f ( \cdot , y )$ over $x \in \mathbb { R } ^ { d }$ , which inherits from the analysis for the general bilevel problem. Therefore, our result complements, rather than improves, the analysis in [28]. We view our contribution in min-max problems as a supplementary of existing results. + +# 3.2 Stochastic compositional problems + +In this section, we apply our results to the stochastic compositional problem (3). In this special case, the upper-level function is $f ( x , y ; \xi ) : = f ( y ; \xi )$ , and the lower-level function is $g ( x , y ; \phi ) =$ $\| y - h ( x ; \phi ) \| ^ { 2 }$ , and the bilevel gradient in (6) reduces to + +$$ +\begin{array} { r l } & { \nabla F ( x ) : = \nabla _ { x } f \big ( x , y ^ { * } ( x ) \big ) - \nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \big [ \nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \big ] ^ { - 1 } \nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\ & { \qquad = \nabla h ( x ; \phi ) ^ { \top } \nabla _ { y } f ( y ^ { * } ( x ) ) } \end{array} +$$ + +where we use the fact that $\nabla _ { y y } ^ { 2 } g ( x , y ; \phi ) = \mathbf { I } _ { d ^ { \prime } \times d ^ { \prime } } , \nabla _ { x y } ^ { 2 } g ( x , y ; \phi ) = - \nabla h ( x ; \phi ) ^ { \top }$ . Similar to Section 2, we again evaluate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { \ast } ( x )$ . Therefore, by choosing $T = 1$ , the alternating stochastic gradients $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ for this special case are much simpler, given by + +$$ +h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \phi ^ { k } ) ~ \mathrm { a n d } ~ h _ { f } ^ { k } = \nabla h ( x ^ { k } ; \phi ^ { k } ) \nabla f ( y ^ { k + 1 } ; \xi ^ { k } ) . +$$ + +Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 3. +When $T = 1$ , the ALSET algorithm reduces to SCGD proposed in [12]. + +In the supplementary document, we have verified that the standard assumptions of stochastic compositional optimization in [12, 37, 14, 41, 38] are sufficient for Assumptions 1–3 to hold. + +Proposition 4 (Compositional problems). Under the same assumptions and the parameters as those in Theorem $I$ , if we select $\begin{array} { r } { T ^ { } = 1 , \alpha = 1 , \eta = \frac { 1 } { L _ { y x } } } \end{array}$ in (12), the iterates of Algorithm 3 satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \left\| \nabla F ( x ^ { k } ) \right\| ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) . +$$ + +Since each iteration of ALSET only uses $\mathcal { O } ( 1 )$ samples (see Algorithm 3), Proposition 4 implies that the sample complexity to achieve an $\epsilon$ -stationary point of (3) is $\mathcal { O } ( \epsilon ^ { - 2 } )$ . Comparing with the results + +Algorithm 3 ALSET for the compositional problem (3) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: update $y ^ { k + 1 } = y ^ { k } - \beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \phi ^ { k } ) )$ +4: update $x ^ { k + 1 } = x ^ { k } - \alpha _ { k } \nabla f ( y ^ { k + 1 } ; \xi ^ { k } ) \nabla h ( x ^ { k } ; \phi ^ { k } )$ +5: end for + +of the SCGD method in [12], our result improves the sample complexity $\mathcal { O } ( \epsilon ^ { - 4 } )$ under a fixed batch size. Importantly, our analysis does not introduce additional assumption compared to [12]. + +# 4 Applications to Actor-Critic Methods + +In this section, we apply our tighter analysis to the actor-critic (AC) method with linear value function approximation [44], which can be viewed as a special case of the stochastic bilevel algorithm [45, 46]. + +Consider a Markov decision process described by $\mathcal { M } = \{ { \cal S } , \mathcal { A } , \mathcal { P } , { \cal R } , \gamma \}$ , where $s$ is the state space, $\mathcal { A }$ is the action space, $\mathcal { P } ( s ^ { \prime } | s , a )$ is the probability of transitioning to $s ^ { \prime } \in \mathcal { S }$ given state $s \in S$ and action $a \in { \mathcal { A } }$ , and $R ( s , a , s ^ { \prime } )$ is the reward associated with $( s , a , s ^ { \prime } )$ , and $\gamma \in [ 0 , 1 )$ is a discount factor. For a policy $\pi _ { \theta }$ , define the value function $V _ { \pi _ { \theta } } ( s )$ that satisfies the Bellman equation [47] + +$$ +\begin{array} { r } { V _ { \pi _ { \theta } } ( s ) = \mathbb { E } _ { a \sim \pi _ { \theta } ( . | s ) , s ^ { \prime } \sim \mathcal { P } ( \cdot | s , a ) } \left[ r ( s , a , s ^ { \prime } ) + \gamma V _ { \pi _ { \theta } } ( s ^ { \prime } ) \right] . } \end{array} +$$ + +Given the state feature mapping $\phi ( \cdot ) : \mathcal { S } \mathbb { R } ^ { d _ { y } }$ , we approximate the value function linearly as $V _ { \pi _ { \boldsymbol { \theta } } } ( s ) \approx \hat { V } _ { y } ( s ) : = \boldsymbol { \phi } ( s ) ^ { \top } \boldsymbol { y }$ , where $\boldsymbol { y } \in \mathbb { R } ^ { d _ { y } }$ is the critic parameter. The task of finding the best $y$ such that $V _ { \pi _ { \theta } } ( s ) \approx \hat { V } _ { y } ( s )$ is usually addressed by TD learning [48]. + +Defining the stationary distribution induced by the policy parameter $\theta _ { k }$ as $\mu _ { \theta _ { k } }$ and the $k$ th transition as $\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )$ , which is sampled from $s _ { k } \sim \mu _ { \theta _ { k } } , a \sim \pi _ { \theta _ { k } } , s _ { k + 1 } \sim \mathcal { P }$ , the TD-error is + +$$ +\hat { \delta } ( \xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \gamma \phi ( s _ { k + 1 } ) ^ { \top } y _ { k } - \phi ( s _ { k } ) ^ { \top } y _ { k } +$$ + +and the critic gradient $h _ { g } ( \xi _ { k } , y _ { k } ) : = \hat { \delta } ( \xi _ { k } , y _ { k } ) \nabla \hat { V } _ { y _ { k } } ( s _ { k } )$ . We update the parameter $y$ via + +$$ +y _ { k + 1 } = \Pi _ { R _ { y } } \big ( y _ { k } + \beta _ { k } h _ { g } ( \xi _ { k } , y _ { k } ) \big ) , +$$ + +where $\beta _ { k }$ is the critic stepsize, and $\Pi _ { R _ { y } }$ is the projection to control the norm of the gradient. A pre-defined constant $R _ { y }$ will be specified in the supplementary document. + +The goal of policy optimization is to solve ${ \mathrm { m a x } } _ { \theta \in \mathbb { R } ^ { d } } F ( \theta )$ with $F ( \theta ) : = \mathbb { E } _ { s \sim \eta } [ V _ { \pi _ { \theta } } ( s ) ]$ , where $\eta$ is the initial distribution. Leveraging the value function approximation and the policy gradient theorem [49], we have the policy gradient $h _ { f } ( \xi , \theta , y ) : = \hat { \delta } ( \xi , \bar { y ) \psi } _ { \theta } ( s , a )$ , which gives the policy update + +$$ +\theta _ { k + 1 } = \theta _ { k } + \alpha _ { k } h _ { f } ( \xi _ { k } ^ { \prime } , \theta _ { k } , y _ { k + 1 } ) , +$$ + +where $\alpha _ { k }$ is the stepsize and $\psi _ { \boldsymbol \theta } ( s , a ) : = \nabla \log \pi _ { \boldsymbol \theta } ( a | s )$ . Note that the sample $\xi _ { k } ^ { \prime } : = ( s _ { k } ^ { \prime } , a _ { k } ^ { \prime } , s _ { k + 1 } ^ { \prime } )$ used in (30) is independent from $\xi _ { k }$ in (29). Specifically, $\xi _ { k } ^ { \prime }$ is sampled from $s _ { k } ^ { \prime } \sim d _ { \theta _ { k } } , a _ { k } ^ { \prime } \sim$ $\pi _ { \boldsymbol { \theta } _ { k } } , s _ { k + 1 } ^ { \prime } \sim \mathcal { P }$ with $d _ { \theta _ { k } }$ being the discounted state action visitation measure under $\theta _ { k }$ . + +The alternating AC update (29)-(30) is a special case of ALSET, where the critic update is the lower-level update, and the actor update is the upper-level update. + +Due to space limitation, we will directly present the results of the alternating AC next, and defer presentation of the proof and the corresponding assumptions, which are the counterparts of Assumptions 1–3 in the context of AC, to the supplementary document. + +Theorem 2 (Actor-critic). Under the some regularity conditions that are specified in the supplementary document, selecting step size $\begin{array} { r } { \alpha _ { k } = \alpha = \overset { \cdot } { \mathcal { O } } ( \frac { 1 } { \sqrt { K } } ) } \end{array}$ , $\begin{array} { r } { \beta _ { k } = \beta = \mathcal { O } ( \frac { 1 } { \sqrt { K } } ) } \end{array}$ , it holds + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \| \nabla F ( \theta _ { k } ) \| ^ { 2 } \right] = \mathcal { O } \left( \frac { 1 } { \sqrt { K } } \right) + \epsilon _ { \mathrm { a p p } } +$$ + +where $\epsilon _ { \mathrm { a p p } }$ , defined in the supplementary document, captures the richness of the linear function class. + +Both sides of Theorem 2. As an application of our tighter analysis, Theorem 2 establishes for the first time that the sample complexity of the single-loop alternating actor-critic method is $\mathcal { O } ( \epsilon ^ { - 2 } )$ . On the positive side, this new result improves the previous complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ for the single-loop AC [50], and $\mathcal { O } ( \epsilon ^ { - 2 } \log \epsilon ^ { - 1 } )$ for the nested-loop AC [51], and matches $\mathcal { O } ( \epsilon ^ { - 2 } )$ for AC with an exact critic oracle [52]. In addition to using two independent samples, one limitation of our result is that inheriting from the analysis for the general bilevel case, our analysis of AC requires the smoothness of the critic fixed-point $y ^ { * } ( \theta )$ . As shown in the supplementary document, this implicitly requires the additional bounded and Lipschitz continuity assumption on the stationary distribution $\mu _ { \theta }$ . The removal of this assumption and the extension to Markovian sampling are left for future research. + +# 5 Preliminary Experiments + +To validate our new theoretical results, we have conducted the simple experiment using the riskaverse portfolio management task on a benchmark dataset - 100 Book-to-Market. This is a typical application of stochastic compositional optimization (3) that is used in [40, 41]. We compared the popular two-timescale SCGD approach [12] with our single-timescale ALSET approach. + +We use the same initialization of $x ^ { 0 } , y ^ { 0 }$ for both SCGD and ALSET, and tune the stepsizes $\alpha _ { k } , \beta _ { k }$ by following the suggested order in the original SCGD paper and then using a grid search for the multiplicative constant $c$ , that is + +
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
+ +The constant $c$ is chosen from the searching + +Table 4: Comparison of $\begin{array} { r l } { { \ln ( \frac { 1 } { K } \sum _ { k = 1 } ^ { K } \| \nabla F ( x ^ { k } ) \| ^ { 2 } ) } \quad } & { { } } \end{array}$ among the two-timescale and single-timescale algorithms. + +grid $\{ 1 0 ^ { - 3 } , 5 \times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \}$ and is optimized for each algorithm in terms of ergodic average gradient norm versus the number of iterations. In Table 4, we report the logarithmic value of the average gradient norm performance of SCGD, ALSET with both the above decreasing stepsizes and ALSETconst with the constant stepsizes (replacing $k$ with $K = 1 0 0 0$ ). Since SCGD and ALSET use the same number of samples and gradient evaluations per iteration, we report the progress in terms of iterations. By calculating the decay rate, we can observe that the empirical convergence rate of ALSET is no worse than the theoretical rate $\mathcal { O } ( k ^ { - 1 / 2 } )$ , and ALSET outperforms SCGD thanks to its single-timescale stepsizes. We will pursue more comprehensive experiments in our future work. + +# 6 Conclusions + +This paper unifies several SGD-type updates for stochastic nested problems into a single nested SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. ALSET runs in the single-timescale and uses a fixed batch size. This paper presents a tighter analysis for using ALSET to solve stochastic nested problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, ALSET requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total. As a by-product, this general result also improves the existing sample complexity of the min-max and compositional cases. It matches the sample complexity of SGD for single-level stochastic problems. Applying our analysis to an alternating version of the actor-critic algorithm also yields a state-of-the-art sample complexity. + +Potential limitations of our results include additional assumptions in the min-max and actor-critic cases, which inherit from the assumptions of general bilevel problems. Nevertheless, our work can also lead to promising future research in understanding the theoretical performance of many successful empirical nested optimization algorithms. To this end, our future work consists of relaxing the regularity conditions needed to achieve our theoretical results and Possible extensions include applying our the tighter analysis in this paper to the existing two-timescale Hessian-free bilevel optimization algorithms and decentralized stochastic nested optimization algorithms. + +# Acknowledgements + +The work of T. Chen was partially supported by NSF Grant 2047177 and the RPI-IBM Artificial Intelligence Research Collaboration (AIRC). The work of Y. Sun was partially supported by ONR + +Grant N000141712162 and AFOSR MURI FA9550-18-1-0502. We thank anonymous reviewers for their valuable feedback on improving the current paper. + +References +[1] H. Robbins and S. Monro, “A stochastic approximation method,” Annals of Mathematical Statistics, vol. 22, no. 3, pp. 400–407, Sep. 1951. +[2] C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep networks,” in Proc. Intl. Conf. Machine Learn., Sydney, Australia, Jun. 2017, pp. 1126–1135. +[3] L. Franceschi, P. Frasconi, S. Salzo, R. Grazzi, and M. Pontil, “Bilevel programming for hyperparameter optimization and meta-learning,” in Proc. Intl. Conf. Machine Learn., Vienna, Austria, Jun. 2018, pp. 1568–1577. +[4] B. Colson, P. Marcotte, and G. Savard, “An overview of bilevel optimization,” Annals of operations research, vol. 153, no. 1, pp. 235–256, 2007. +[5] G. Kunapuli, K. P. Bennett, J. Hu, and J.-S. Pang, “Classification model selection via bilevel programming,” Optimization Methods & Software, vol. 23, no. 4, pp. 475–489, 2008. +[6] S. Dempe and A. Zemkoho, Bilevel Optimization. Springer, 2020. +[7] C. Daskalakis and I. Panageas, “The limit points of (optimistic) gradient descent in min-max optimization,” in Proc. Advances in Neural Info. Process. Syst., Montreal, Canada, Dec. 2018, pp. 9256–9266. +[8] G. Gidel, H. Berard, G. Vignoud, P. Vincent, and S. Lacoste-Julien, “A variational inequality perspective on generative adversarial networks,” in Proc. Intl. Conf. Learn. Representations, Vancouver, Canada, Apr. 2018. +[9] H. Rafique, M. Liu, Q. Lin, and T. Yang, “Non-convex min-max optimization: Provable algorithms and applications in machine learning,” Optimization Methods and Software, Mar. 2021. +[10] K. K. Thekumparampil, P. Jain, P. Netrapalli, and S. Oh, “Efficient algorithms for smooth minimax optimization,” in NeurIPS, Vancouver, Canada, Dec. 2019. +[11] A. Mokhtari, A. Ozdaglar, and S. Pattathil, “A unified analysis of extra-gradient and optimistic gradient methods for saddle point problems: Proximal point approach,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Palermo, Italy, Aug. 2020, pp. 1497–1507. +[12] M. Wang, E. X. Fang, and H. Liu, “Stochastic compositional gradient descent: algorithms for minimizing compositions of expected-value functions,” Mathematical Programming, vol. 161, no. 1-2, pp. 419–449, Jan. 2017. +[13] B. Dai, N. He, Y. Pan, B. Boots, and L. Song, “Learning from conditional distributions via dual embeddings,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017, pp. 1458–1467. +[14] S. Ghadimi, A. Ruszczynski, and M. Wang, “A single timescale stochastic approximation method for nested stochastic optimization,” SIAM Journal on Optimization, vol. 30, no. 1, pp. 960–979, Mar. 2020. +[15] K. Ji, J. Yang, and Y. Liang, “Multi-step model-agnostic meta-learning: Convergence and improved algorithms,” arXiv preprint:2002.07836, Feb. 2020. +[16] S. Ghadimi and M. Wang, “Approximation methods for bilevel programming,” arXiv preprint:1802.02246, 2018. +[17] K. Ji, J. Yang, and Y. Liang, “Provably faster algorithms for bilevel optimization and applications to meta-learning,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. +[18] M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A two-timescale framework for bilevel optimization: Complexity analysis and application to actor-critic,” arXiv preprint:2007.05170, 2020. +[19] T. Chen, Y. Sun, and W. Yin, “A single-timescale stochastic bilevel optimization method,” arXiv preprint arXiv:2102.04671, 2021. +[20] H. V. Stackelberg, The Theory of Market Economy. Oxford University Press, 1952. +[21] S. Sabach and S. Shtern, “A first order method for solving convex bilevel optimization problems,” SIAM Journal on Optimization, vol. 27, no. 2, pp. 640–660, 2017. +[22] A. Shaban, C.-A. Cheng, N. Hatch, and B. Boots, “Truncated back-propagation for bilevel optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Naha, Okinawa, Japan, Apr. 2019, pp. 1723–1732. +[23] R. Grazzi, L. Franceschi, M. Pontil, and S. Salzo, “On the iteration complexity of hypergradient computation,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 3748–3758. +[24] R. Liu, P. Mu, X. Yuan, S. Zeng, and J. Zhang, “A generic first-order algorithmic framework for bi-level programming beyond lower-level singleton,” in Proc. of International Conference on Machine Learning, Virtual, July 2020, pp. 6305–6315. +[25] P. Khanduri, S. Zeng, M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A momentum-assisted single-timescale stochastic approximation algorithm for bilevel optimization,” arXiv preprint arXiv:2102.07367, Feb. 2021. +[26] Z. Guo and T. Yang, “Randomized stochastic variance-reduced methods for stochastic bilevel optimization,” arXiv preprint arXiv:2105.02266, May 2021. +[27] J. Yang, K. Ji, and Y. Liang, “Provably faster algorithms for bilevel optimization,” arXiv preprint arXiv:2106.04692, Jun. 2021. +[28] T. Lin, C. Jin, and M. Jordan, “On gradient descent ascent for nonconvex-concave minimax problems,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 6083–6093. +[29] T. Yoon and E. K. Ryu, “Accelerated algorithms for smooth convex-concave minimax problems with $O ( 1 / k ^ { 2 } )$ rate on squared gradient norm,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. +[30] M. Nouiehed, M. Sanjabi, T. Huang, J. D. Lee, and M. Razaviyayn, “Solving a class of nonconvex min-max games using iterative first order methods,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019, pp. 14 934–14 942. +[31] L. Luo, H. Ye, Z. Huang, and T. Zhang, “Stochastic recursive gradient descent ascent for stochastic nonconvex-strongly-concave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[32] Y. Yan, Y. Xu, Q. Lin, W. Liu, and T. Yang, “Optimal epoch stochastic gradient descent ascent methods for min-max optimization,” Proc. Advances in Neural Info. Process. Syst., vol. 33, Dec. 2020. +[33] Q. Tran Dinh, D. Liu, and L. Nguyen, “Hybrid variance-reduced sgd algorithms for minimax problems with nonconvex-linear function,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[34] M. Liu, Y. Mroueh, J. Ross, W. Zhang, X. Cui, P. Das, and T. Yang, “Towards better understanding of adaptive gradient algorithms in generative adversarial nets,” in Proc. Intl. Conf. Learn. Representations, Virtual, Apr. 2020. +[35] J. Yang, N. Kiyavash, and N. He, “Global convergence and variance reduction for a class of nonconvex-nonconcave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[36] J. Diakonikolas, C. Daskalakis, and M. Jordan, “Efficient methods for structured nonconvexnonconcave min-max optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Virtual, Apr. 2021. +[37] M. Wang, J. Liu, and E. Fang, “Accelerating stochastic composition optimization,” Journal Machine Learning Research, vol. 18, no. 1, pp. 3721–3743, 2017. +[38] T. Chen, Y. Sun, and W. Yin, “Solving stochastic compositional optimization is nearly as easy as solving stochastic optimization,” IEEE Trans. Sig. Proc., vol. 69, Aug. 2021. +[39] A. Ruszczynski, “A stochastic subgradient method for nonsmooth nonconvex multi-level composition optimization,” arXiv preprint:2001.10669, Jan. 2020. +[40] X. Lian, M. Wang, and J. Liu, “Finite-sum composition optimization via variance reduced gradient descent,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017. +[41] J. Zhang and L. Xiao, “A stochastic composite gradient method with incremental variance reduction,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019. +[42] Q. Tran-Dinh, N. Pham, and L. Nguyen, “Stochastic gauss-newton algorithms for nonconvex compositional optimization,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2020. +[43] S. Ghadimi and G. Lan, “Stochastic first-and zeroth-order methods for nonconvex stochastic programming,” SIAM Journal on Optimization, vol. 23, no. 4, pp. 2341–2368, 2013. +[44] V. Konda and V. Borkar, “Actor-critic-type learning algorithms for markov decision processes,” SIAM Journal on Control and Optimization, vol. 38, no. 1, pp. 94–123, 1999. +[45] J. Wen, S. Kumar, R. Gummadi, and D. Schuurmans, “Characterizing the gap between actorcritic and policy gradient,” in Proc. Intl. Conf. Machine Learn., Virtual, 2021. +[46] L. Zheng, T. Fiez, Z. Alumbaugh, B. Chasnov, and L. J. Ratliff, “Stackelberg actor-critic: Game-theoretic reinforcement learning algorithms,” arXiv preprint arXiv:2109.12286, 2021. +[47] R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction. MIT Press, 2018. +[48] R. Sutton, “Learning to predict by the methods of temporal differences,” Machine Learning, vol. 3, pp. 9–44, 1988. +[49] R. Sutton, D. McAllester, S. Singh, and Y. Mansour, “Policy gradient methods for reinforcement learning with function approximation.” in Proc. Advances in Neural Info. Process. Syst., 2000. +[50] Y. Wu, W. Zhang, P. Xu, and Q. Gu, “A finite time analysis of two time-scale actor critic methods,” in Proc. Advances in Neural Info. Process. Syst., 2020. +[51] T. Xu, Z. Wang, and Y. Liang, “Improving sample complexity bounds for (natural) actor-critic algorithms,” in Proc. Advances in Neural Info. Process. Syst., 2020. +[52] Z. Fu, Z. Yang, and Z. Wang, “Single-timescale actor-critic provably finds globally optimal policy,” in Proc. Intl. Conf. Learn. Representations, 2020. +[53] Y. Nesterov, Introductory Lectures on Convex Optimization: A basic course. Berlin, Germany: Springer, 2013, vol. 87. +[54] J. Bhandari, D. Russo, and R. Singal, “A finite time analysis of temporal difference learning with linear function approximation.” in COLT, 2018. +[55] T. Xu, Z. Wang, Y. Zhou, and Y. Liang, “Reanalysis of variance reduced temporal difference learning,” in Proc. Intl. Conf. Learn. Representations, 2020. +[56] K. Zhang, A. Koppel, H. Zhu, and T. Ba¸sar, “Global convergence of policy gradient methods to (almost) locally optimal policies,” arXiv preprint:1906.08383, 2019. +[57] A. Agarwal, S. M. Kakade, J. D. Lee, and G. Mahajan, “Optimality and approximation with policy gradient methods in markov decision processes.” in Proc. of Thirty Third Conference on Learning Theory, 2020. +[58] K. Doya, “Reinforcement learning in continuous time and space,” Neural Computation, vol. 12, no. 1, pp. 219–245, 2000. +[59] J. Baxter and P. L. Bartlett, “Infinite-horizon policy-gradient estimation,” J. Artificial Intelligence Res., vol. 15, pp. 319–350, 2001. +[60] A. Y. Mitrophanov, “Sensitivity and convergence of uniformly ergodic markov chains,” Journal of Applied Probability, vol. 42, no. 4, pp. 1003–1014, 2005. +[61] S. Qiu, Z. Yang, J. Ye, and Z. Wang, “On the finite-time convergence of actor-critic algorithm,” in Optimization Foundations for Reinforcement Learning Workshop at Advances in Neural Information Processing Systems, 2019. \ No newline at end of file diff --git a/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_content_list.json b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..c334a4b9be9e43ea93a74e5ab933f48f98c4256d --- /dev/null +++ b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_content_list.json @@ -0,0 +1,2011 @@ +[ + { + "type": "text", + "text": "Closing the Gap: Tighter Analysis of Alternating Stochastic Gradient Methods for Bilevel Problems ", + "text_level": 1, + "bbox": [ + 197, + 122, + 802, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Tianyi Chen Rensselaer Polytechnic Institute chentianyi $1 9 @$ gmail.com ", + "bbox": [ + 196, + 222, + 408, + 266 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Yuejiao Sun \nUCLA \nsunyj@math.ucla.edu ", + "bbox": [ + 442, + 222, + 588, + 266 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Wotao Yin UCLA wotaoyin@math.ucla.edu ", + "bbox": [ + 629, + 222, + 799, + 266 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 301, + 535, + 318 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Stochastic nested optimization, including stochastic bilevel, min-max, and compositional optimization, is gaining popularity in many machine learning applications. While the three problems share a nested structure, existing works often treat them separately, thus developing problem-specific algorithms and analyses. Among various exciting developments, simple SGD-type updates (potentially on multiple variables) are still prevalent in solving this class of nested problems, but they are believed to have a slower convergence rate than non-nested problems. This paper unifies several SGD-type updates for stochastic nested problems into a single SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. By leveraging the hidden smoothness of the problem, this paper presents a tighter analysis of ALSET for stochastic nested problems. Under the new analysis, to achieve an $\\epsilon$ -stationary point of the nested problem, it requires $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ samples in total. Under certain regularity conditions, applying our results to stochastic compositional, min-max, and reinforcement learning problems either improves or matches the best-known sample complexity in the respective cases. Our results explain why simple SGD-type algorithms in stochastic nested problems all work very well in practice without the need for further modifications. ", + "bbox": [ + 232, + 332, + 766, + 566 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 589, + 310, + 607 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Stochastic gradient descent (SGD) methods [1] are prevalent in solving large-scale machine learning problems. Often, SGD is applied to solve stochastic problems with a relatively simple structure. Specifically, applying SGD to minimize the function $\\mathbb { E } _ { \\xi } ^ { - } \\left[ f ( x ; \\xi ) \\right]$ over the variable $x \\in \\mathbb { R } ^ { d }$ , we have the iterative update $\\boldsymbol { x } ^ { k + 1 } = \\boldsymbol { x } ^ { k } - \\alpha \\nabla f ( x ^ { k } ; \\xi ^ { k } )$ , where $\\alpha > 0$ is the stepsize and $\\nabla f ( x ^ { k } ; \\xi ^ { k } )$ is the stochastic gradient at the iterate $x ^ { k }$ and the sample $\\xi ^ { k }$ . However, many problems in machine learning today, such as meta learning, deep learning, hyper-parameter optimization, and reinforcement learning, go beyond the above simple minimization structure (termed the non-nested problem thereafter). For example, the objective function may be the compositions of multiple functions, where each composition may introduce an additional expectation [2]; and, the objective function may depend on the solution of another optimization problem [3]. In these problems, how to apply SGD and the efficiency of running SGD are not fully understood. ", + "bbox": [ + 174, + 621, + 826, + 776 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To answer these questions, in this paper, we consider the following form of stochastic nested optimization problems, which is a generalization of the non-nested problems, given by ", + "bbox": [ + 174, + 782, + 821, + 810 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/36b9bee11e072ddf9e05191cc9cab5e73aa95757d1f339697eb289ccd9480ba8.jpg", + "text": "$$\n\\begin{array} { r l } { \\underset { x \\in \\mathbb { R } ^ { d } } { \\operatorname* { m i n } } } & { F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\left( x , y ^ { * } ( x ) ; \\xi \\right) \\right] } \\\\ { \\mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \\underset { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } { \\operatorname { a r g m i n } } \\ \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 814, + 580, + 869 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "where $f$ and $g$ are differentiable functions; and, $\\xi$ and $\\phi$ are random variables. In the optimization literature [4–6], the problem (1) is referred to as the stochastic bilevel problem, where the upper-level optimization problem depends on the solution of the lower-level optimization over $y \\in \\mathbb { R } ^ { d ^ { \\prime } }$ , denoted as $y ^ { \\ast } ( x )$ , which depends on the value of upper-level variable $\\boldsymbol { x } \\in \\mathbb { R } ^ { d }$ . ", + "bbox": [ + 174, + 875, + 825, + 904 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 90, + 823, + 119 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The stochastic bilevel nested problem (1) encompasses two popular formulations with the nested structure: stochastic min-max problems and stochastic compositional problems. Therefore, results on the general nested problem (1) will also imply the results in the special cases. For example, if the lower-level objective $g$ is the negative of the upper-level objective $f$ , i.e., $g ( x , y ; \\phi ) : = - \\bar { f } ( x , y ; \\xi )$ , the stochastic bilevel problem (1) reduces to the stochastic min-max problem ", + "bbox": [ + 173, + 126, + 825, + 195 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/c4cfeedc1e466e0aec4ff669f6b469cc4a2134aabc01ebe451fa1cf0fa948811.jpg", + "text": "$$\n\\operatorname { I f } g ( x , y ; \\phi ) : = - f ( x , y ; \\xi ) \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } F ( x ) : = \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 256, + 204, + 741, + 231 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Motivated by applications in zero-sum games, adversarial learning and training GANs, significant efforts have been recently made for solving the stochastic min-max problem; see e.g., [7–11]. ", + "bbox": [ + 171, + 239, + 823, + 267 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "For example, if the upper-level objective $f$ is only a function of $y$ , i.e., $f ( x , y ; \\xi ) : = f ( y ; \\xi )$ , and the lower-level objective $g$ is a quadratic function of $y$ , i.e., $g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 }$ with a smooth function $h$ of $x$ , then the variable $y ^ { * } ( x )$ admits a closed-form solution, and thus the stochastic bilevel problem (1) reduces to the stochastic compositional problem [12–14] ", + "bbox": [ + 173, + 272, + 825, + 329 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/d0cf1a3f94a49905cb848b0a4616cdd23538f7c56b5ab3eb9254d09ada427f99.jpg", + "text": "$$\n\\mathrm { I f } \\ g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 } \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } \\ F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\big ( \\mathbb { E } _ { \\phi } [ h ( x ; \\phi ) ] ; \\xi \\big ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 235, + 335, + 761, + 363 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Stochastic compositional problems in the form of (3) have been studied in the applications in model-agnostic meta learning and policy evaluation in reinforcement learning; see e.g., [2, 15]. ", + "bbox": [ + 174, + 371, + 825, + 400 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To solve the nested problem (1) by SGD, one natural solution is to apply alternating SGD updates on $x$ and $y$ based on their stochastic gradients ", + "bbox": [ + 174, + 405, + 821, + 434 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/bcb8cadc86c4aaa122e8cdcc5bf4d17b95784df4a34523321336f424fa37dbb0.jpg", + "text": "$$\ny ^ { k + 1 } = y ^ { k } - \\beta _ { k } h _ { g } ^ { k } ~ \\mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }\n$$", + "text_format": "latex", + "bbox": [ + 331, + 441, + 666, + 463 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $h _ { g } ^ { k }$ is the unbiased stochastic gradient of $\\mathbb { E } _ { \\phi } [ g ( x ^ { k } , y ^ { k } ; \\phi ) ]$ and $h _ { f } ^ { k }$ is the (possibly biased) stochastic gradient of $F ( x ^ { k } )$ ; and, $\\beta _ { k }$ and $\\alpha _ { k }$ are the stepsizes. A key challenge of running (4) for the nested problem is that (stochastic) gradient of the upper-level variable $x$ is prohibitively expensive to compute. As we will show later, computing an unbiased stochastic gradient of $F ( x )$ requires solving the lower-level problem exactly to obtain $y ^ { * } ( x )$ . ", + "bbox": [ + 173, + 470, + 825, + 546 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "An accurate stochastic gradient $h _ { f } ^ { k }$ can be obtained in roughly three ways. One way is to run SGD updates on $y ^ { k }$ multiple times before updating $x ^ { k }$ , which yields a double-loop algorithm. To guarantee convergence, it typically requires either the increasing number of lower-level $y$ -update or the growing number of batch size to estimate $h _ { g } ^ { k }$ ; see e.g., [16, 17]. The second way is to update $y ^ { k }$ in a timescale faster than that of $x ^ { k }$ so that $x ^ { k }$ is relatively static with respect to $y ^ { k }$ ; i.e., $\\scriptstyle \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0$ ; see e.g., [18]. The third way is to modify the direction $h _ { g } ^ { k }$ of $y ^ { k }$ by incorporating additional correction term, which adds extra computation burden; see e.g., [19]. At a high level, these modifications either deviate from the lightweight implementation of SGD or sacrifice the sample complexity of SGD. ", + "bbox": [ + 173, + 551, + 825, + 672 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To this end, the main goal of this paper is to study the efficiency of running the vanilla alternating SGD (4) for the nested problem (1) and its implications on the special problem classes (2)-(3). ", + "bbox": [ + 173, + 678, + 823, + 707 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 Main results ", + "text_level": 1, + "bbox": [ + 174, + 724, + 300, + 739 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper analyzes a unifying algorithm for the stochastic bilevel problems that runs SGD on each variable alternatingly. We provide sample complexity that matches the complexity of SGD for single-level stochastic problems. Our results explain why SGD-type algorithms in stochastic bilevel, min-max, and compositional problems work very well in practice without modifications, including correction, increasing batch size, and two-timescale stepsizes. ", + "bbox": [ + 174, + 751, + 825, + 820 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the context of existing methods, our contributions can be summarized as follows. ", + "bbox": [ + 174, + 827, + 720, + 842 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "C1) We connect three different classes of stochastic nested optimization problems (stochastic compositional, min-max, and bilevel optimization), and unify three popular SGD-type updates for the respective problems into a single SGD-type method. We call it the ALternating Stochastic gradient dEscenT (ALSET) method. ", + "bbox": [ + 200, + 856, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/174a2cf9e3fffe873c1d66d21f7a0d7d0d76cbe325b709aeb78d391005bf5402.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
", + "bbox": [ + 173, + 92, + 838, + 170 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Table 1: Sample complexity of stochastic bilevel algorithms (BSA in [16], TTSA in [18], stocBiO in [17], STABLE in [19], SUSTAIN in [25], RSVRB in [26]) to achieve an $\\epsilon$ -stationary point of $F ( x )$ ; the notation $\\widetilde { \\mathcal { O } } ( \\cdot )$ hides the terms of $\\log \\epsilon ^ { - 1 }$ ; the notation $\\kappa ^ { p }$ denotes a polynomial function of $\\kappa$ since the dependence on $\\kappa$ is not explicit in [18, 19, 25, 26]. ", + "bbox": [ + 173, + 176, + 826, + 236 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "C2) Under the same assumptions made in most of the previous work, we discover that the solution of the lower-level problem is smooth – a property that is overlooked by the previous analyses. By leveraging the hidden smoothness, we present a tighter analysis of ALSET for the stochastic bilevel problems. Under the new analysis, to achieve an $\\epsilon$ -stationary point of the nested problem, ALSET requires $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ samples in total, rather than the $\\mathcal { O } \\dot { ( \\epsilon ^ { - 5 / 2 } ) }$ sample complexity in the existing literature. \nC3) We further customize the analysis to the two special cases – the compositional and min-max problems, and establish the improved sample complexity relative to that in the literature. We apply a new analysis to the celebrated actor-critic method for reinforcement learning problems. Under some regularity conditions, we show that, to achieve an $\\epsilon$ -stationary point, the single-loop actor-critic method requires $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ samples with i.i.d. sampling, which improves the best-known result of $\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )$ in the literature. ", + "bbox": [ + 197, + 253, + 825, + 430 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "1.2 Other related works ", + "text_level": 1, + "bbox": [ + 174, + 446, + 352, + 462 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To put our work in context, we review prior art that we group in the following three categories. ", + "bbox": [ + 174, + 473, + 792, + 488 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Stochastic bilevel optimization. We can trace the study of bilevel optimization to the 1950s [20]. Many recent efforts have been made to solve the bilevel problems. One successful approach is to reformulate the bilevel problem as a single-level problem by replacing the lower-level problem by its optimality conditions [4, 5]. Recently, gradient-based methods for bilevel optimization have gained popularity. They iteratively approximate the (stochastic) gradient of the upper-level problem either in a forward or backward manner [21, 3, 22, 23]. Recent work has also studied the case where the lower-level problem does not have a unique solution [24]. ", + "bbox": [ + 174, + 494, + 825, + 592 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The non-asymptotic analysis of bilevel optimization algorithms has been recently studied in some pioneering works, e.g., [16, 18, 17], just to name a few. In both [16, 17], bilevel stochastic optimization algorithms have been developed that run in a double-loop manner. To achieve an $\\epsilon$ -stationary point, they only need the sample complexities $\\mathcal { O } ( \\epsilon ^ { - 3 } )$ and $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ , respectively, comparable to that of SGD for the single-level case. Recently, a single-loop two-timescale stochastic approximation algorithm has been developed in [18] for the bilevel problem (1). Due to the nature of the two-timescale update, it incurs the sub-optimal sample complexity $\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )$ . A single-loop single-timescale stochastic bilevel optimization method has been recently developed in [19]. While the method can achieve the sample complexity $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ , the resultant update on $y$ needs extra matrix projection, which can be costly. Very recently, the momentum-based acceleration has been incorporated into both the $x$ - and $y$ -updates in [25, 26] and also in [27] after our submission to the conference, where the new algorithms therein enjoy an improved sample complexity $\\mathcal { O } ( \\epsilon ^ { - 3 / 2 } )$ . However, these results cannot imply the $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ sample complexity of the alternating SGD update (4), and are orthogonal to our results. A comparison of our results with prior work can be found in Table 1. ", + "bbox": [ + 173, + 598, + 825, + 794 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Stochastic min-max optimization. In the context of min-max problems, the alternating version of the stochastic gradient descent ascent (GDA) method can be viewed as the alternating SGD updates (4) for the special nested problem (2). To mitigate the cycling behavior of GDA for convex-concave min-max problems, several variants have been developed by incorporating the idea of optimism; see e.g., [7, 8, 11, 29]. The analysis of stochastic GDA in the nonconvex-strongly concave setting is closely related to this paper; e.g., [9, 10, 30, 28]. Specifically, for stochastic GDA (SGDA), the $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ sample complexity has been established in [28] under an increasing batch size $\\mathcal { O } ( \\epsilon ^ { - 1 } )$ . As highlighted in [28], how to achieve the $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ sample complexity under an $\\mathcal { O } ( 1 )$ constant batch size remains open. The reduction of our results to the min-max setting will provide an answer to this open question. In the same setting, accelerated GDA algorithms have been developed in [31–33]. Going beyond the one-side concave settings, algorithms and their convergence analysis have been studied for nonconvex-nonconcave min-max problems with certain benign structure; see e.g., [8, 34–36]. A comparison of our results with prior work can be found in Table 2. ", + "bbox": [ + 174, + 800, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 161 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Stochastic compositional optimization. Stochastic compositional gradient algorithms developed in [12, 37] can be viewed as the alternating SGD updates (4) for the special compositional problem (3). However, to ensure convergence, the algorithms [12, 37] use two sequences of variables being updated in two different time scales, and thus the complexity of [12] and [37] is worse than $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ of SGD for the non-compositional case. While most of existing algorithms rely on either two-timescale updates, the single-timescale single-loop approaches have been recently developed in [14, 38, 39], which achieve the sample complexity $\\bar { \\mathcal { O } } \\bar { ( } \\epsilon ^ { - 2 } \\bar { ) }$ , same as SGD for the non-nested problems. However, the algorithms proposed therein are not the vanilla alternating SGD update in the sense of (4). Other related compositional algorithms also include [40–42]. A comparison can be found in Table 3. ", + "bbox": [ + 173, + 166, + 825, + 292 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Organization. The basic background of bilevel optimization is reviewed, and the tighter analysis of the unifying ALSET method is presented in Section 2. The reduction of the main results to the special stochastic nested problems is provided in Section 3, and its applications to the actor-critic method are discussed in Section 4, followed by the conclusions in Section 5. ", + "bbox": [ + 173, + 297, + 825, + 354 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2 Improved Analysis of Alternating Stochastic Gradient Method ", + "text_level": 1, + "bbox": [ + 173, + 372, + 725, + 390 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section, we will first provide background of bilevel problems and then introduce ALSET for stochastic nested problems. ", + "bbox": [ + 173, + 402, + 825, + 431 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.1 Preliminaries ", + "text_level": 1, + "bbox": [ + 174, + 443, + 307, + 458 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We use $\\| \\cdot \\|$ to denote the $\\ell _ { 2 }$ norm for vectors and Frobenius norm for matrices. For convenience, we define the deterministic functions as $g ( x , y ) : = \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ]$ and $f ( x , y ) : = \\mathbb { E } _ { \\xi } [ f ( x , y ; \\xi ) ]$ . ", + "bbox": [ + 173, + 468, + 823, + 500 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We also define $\\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big )$ as the Hessian matrix of $g$ with respect to $y$ and define $\\nabla _ { x y } ^ { 2 } g \\left( x , y \\right)$ as ", + "bbox": [ + 169, + 503, + 808, + 521 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/27938f06a6f1856a0d25bc255ac6fd5565cf91e5e2543a0e4d7b7d472548a07c.jpg", + "text": "$$\n\\nabla _ { x y } ^ { 2 } g ( x , y ) : = \\left[ \\begin{array} { l l l } { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\\\ & { \\cdot \\cdot \\cdot } \\\\ { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\end{array} \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 307, + 525, + 691, + 583 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We make the following assumptions, which are common in the bilevel optimization literature [16– 18, 26]. ", + "bbox": [ + 169, + 592, + 826, + 621 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 1 (Lipschitz continuity). Assume that $f , \\nabla f , \\nabla g , \\nabla ^ { 2 } g$ are respectively $\\ell _ { f , 0 } .$ , $\\ell _ { f , 1 } , \\ell _ { g , 1 } , \\ell _ { g , 2 }$ -Lipschitz continuous; that is, for $z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]$ , $z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]$ , we have $\\parallel f ( x _ { 1 } , y _ { 1 } ) -$ $\\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \\| ^ { - } \\le } & { \\ell _ { f , 0 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\le } & { \\ell _ { f , 1 } \\| z _ { 1 } - x _ { 2 } \\| , } \\end{array}$ $\\nabla g ( x _ { 2 } , y _ { 2 } ) \\| \\leq \\ell _ { g , 1 } \\| z _ { 1 } - z _ { 2 } \\|$ , $\\begin{array} { r } { \\| \\nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \\nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \\| \\le \\ell _ { g , 2 } \\| z _ { 1 } - z _ { 2 } \\| . } \\end{array}$ . ", + "bbox": [ + 173, + 626, + 826, + 686 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 2 (Strong convexity of $g$ in $y$ ). For any fixed $x$ , $g ( x , y )$ is $\\mu _ { g }$ -strongly convex in $y$ ", + "bbox": [ + 176, + 688, + 797, + 704 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumptions 1 and 2 together ensure that the first- and second-order derivations of $f ( x , y ) , g ( x , y )$ as well as the solution mapping $y ^ { \\ast } ( x )$ , are well-behaved. Define the condition number $\\kappa : = \\ell _ { g , 1 } / \\mu _ { g }$ ", + "bbox": [ + 174, + 712, + 823, + 741 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 3 (Stochastic derivatives). The stochastic derivatives $\\nabla f ( x , y ; \\xi )$ , $\\nabla g ( x , y ; \\phi )$ , $\\nabla ^ { 2 } g ( x , \\mathbf { \\bar { y } } , \\phi )$ are unbiased estimators of $\\nabla f ( x , y )$ , $\\nabla g ( x , y )$ , $\\nabla ^ { 2 } g ( x , y )$ , respectively; and their variances are bounded by $\\sigma _ { f } ^ { 2 } , \\sigma _ { g , 1 } ^ { 2 }$ , $\\sigma _ { g , 2 } ^ { 2 }$ , respectively. ", + "bbox": [ + 174, + 743, + 825, + 787 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/536336fc5936527cea99cfc7717c4d16e0b2407aeb5030a8b651f7c0163442cd.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
", + "bbox": [ + 522, + 804, + 823, + 863 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/2c14a9089ceccd95f416c780898dc53e92b6ee2ad22c36fcb1fee578d3b561ee.jpg", + "table_caption": [ + "Table 2: Sample complexity of stochastic minmax algorithms (BSA in [16], GDA in [28], SMD in [9]) to achieve an $\\epsilon$ -stationary point of $F ( x )$ . " + ], + "table_footnote": [], + "table_body": "
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
", + "bbox": [ + 173, + 803, + 514, + 863 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Table 3: Sample complexity of stochastic compositional algorithms (SCGD in [12], NASA in [14]) to achieve an $\\epsilon$ -stationary point of $F ( x )$ . ", + "bbox": [ + 521, + 871, + 848, + 912 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumptions 2 and 3 together imply that the second moments are bounded by ", + "bbox": [ + 173, + 90, + 684, + 106 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/bedcc72d93ffd40a64eec553c39c6235264abb05a8eb11c3181b7f854ea50391.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { \\xi } [ \\| \\nabla f ( x , y ; \\xi ) \\| ^ { 2 } ] \\le \\ell _ { f , 0 } ^ { 2 } + \\sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\\\ & { \\mathbb { E } _ { \\phi } [ \\| \\nabla ^ { 2 } g ( x , y ; \\phi ) \\| ^ { 2 } ] \\le \\ell _ { g , 1 } ^ { 2 } + \\sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 356, + 106, + 640, + 150 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Assumption 3 is the counterpart of the unbiasedness and bounded variance assumption in the singlelevel stochastic optimization. In addition, the bounded moments in Assumption 3 ensure the Lipschitz continuity of the upper-level gradient $\\nabla F ( x )$ . ", + "bbox": [ + 174, + 154, + 825, + 196 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We first highlight the inherent challenge of directly applying the alternating SGD method to the bilevel problem (1). To illustrate this point, we derive the gradient of the upper-level function $F ( x )$ in the next proposition; see the proof in the supplementary document. ", + "bbox": [ + 174, + 202, + 825, + 244 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 1. Under Assumptions $_ { I - 3 }$ , we have the gradients ", + "bbox": [ + 171, + 247, + 588, + 261 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8def075e3f1ec144ec337badb1f5456ed72627ab3d388b128555c0d5d7852c11.jpg", + "text": "$$\n\\begin{array} { r } { \\nabla F ( x ) = \\nabla _ { x } f ( x , y ^ { * } ( x ) ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\right] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 228, + 262, + 767, + 285 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "urthermore, $\\nabla F ( x )$ and $y ^ { * } ( x )$ are Lipschitz continuous with constants $L _ { F } , L _ { y }$ , respectively. ", + "bbox": [ + 191, + 287, + 782, + 303 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Notice that obtaining an unbiased stochastic estimate of $\\nabla F ( x )$ and applying SGD on $x$ face two main difficulties: i) the gradient $\\nabla F ( x )$ at $x$ depends on the minimizer of the lower-level problem $y ^ { \\ast } ( x )$ ; ii) even if $y ^ { * } ( x )$ is known, it is hard to apply the stochastic approximation to obtain an unbiased estimate of $\\dot { \\nabla } F ( { \\boldsymbol { x } } )$ since $\\nabla F ( x )$ is nonlinear in $\\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )$ . ", + "bbox": [ + 173, + 310, + 823, + 368 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Similar to some existing stochastic bilevel algorithms [16, 18, 17], we evaluate $\\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Replacing the $y ^ { * } ( x )$ in definition (6) by $y$ , we define ", + "bbox": [ + 176, + 375, + 823, + 404 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7548a73e4449fb7441369c42d9413dbdb8972651520608eb1bfff0ea6d251344.jpg", + "text": "$$\n\\overline { { \\nabla } } _ { x } f \\big ( x , y \\big ) : = \\nabla _ { x } f \\big ( x , y \\big ) - \\nabla _ { x y } ^ { 2 } g \\big ( x , y \\big ) \\left[ \\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big ) \\right] ^ { - 1 } \\nabla _ { y } f \\big ( x , y \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 267, + 406, + 728, + 429 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "And to reduce the bias in (7), we estimate $\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }$ via ", + "bbox": [ + 173, + 438, + 584, + 457 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/1bf385f84df0373a81394b89109bf07af8c3d9b104f2abe41cd87ffeb3647fd1.jpg", + "text": "$$\n\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 } \\approx \\Big [ \\frac { N } { \\ell _ { g , 1 } } \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\Big ( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi _ { ( n ) } ) \\Big ) \\Big ]\n$$", + "text_format": "latex", + "bbox": [ + 302, + 460, + 696, + 503 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $N ^ { \\prime }$ is drawn from $\\{ 1 , 2 , \\ldots , N \\}$ uniformly at random and $\\{ \\phi ^ { ( 1 ) } , \\dots , \\phi ^ { ( N ^ { \\prime } ) } \\}$ are i.i.d. samples. It has been shown in [16] that using (8), the estimation bias of $\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }$ exponentially decreases with the number of samples $N$ . ", + "bbox": [ + 173, + 506, + 825, + 554 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2.2 Main results: Tighter analysis of ALSET ", + "text_level": 1, + "bbox": [ + 173, + 569, + 496, + 583 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this subsection, we first describe the general ALSET algorithm for the stochastic bilevel problem, and then present its new convergence result. ", + "bbox": [ + 173, + 594, + 419, + 650 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This algorithm is very simple to implement. At each iteration $k$ , ALSET alternates between the stochastic gradient update on $y ^ { k }$ and that on $x ^ { k }$ . Although it is possible that $T = 1$ , for generality, we run $T$ steps of SGD on ", + "bbox": [ + 173, + 656, + 421, + 739 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 ALSET for the stochastic bilevel problem (1) ", + "text_level": 1, + "bbox": [ + 431, + 599, + 820, + 614 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\\{ \\alpha _ { k } , \\beta _ { k } \\}$ . \n2: for $k = 0 , 1 , \\ldots , K - 1$ do \n3: for $t = 0 , 1 , \\dots , T - 1$ do \n4: update $y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t }$ . set $y ^ { k , 0 } = y ^ { k }$ \n5: end for \n6: update $x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } \\qquad \\Join$ \n7: end for ", + "bbox": [ + 437, + 619, + 823, + 720 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "the lower-level variable $y ^ { k }$ before updating upper-level variable $x ^ { k }$ . With $\\alpha _ { k }$ and $\\beta _ { k }$ denoting the stepsizes of $x ^ { k }$ and $y ^ { k }$ that decrease at the same rate as SGD, the ALSET update is ", + "bbox": [ + 169, + 738, + 823, + 767 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7775e8620eef89883764eb470d0d3da12a03569af54964c183fab4ff648df953.jpg", + "text": "$$\n\\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t } , t = 0 , \\ldots , T \\quad \\mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\\\ & { x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 254, + 767, + 735, + 811 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where the update direction of $y$ is the stochastic gradient $h _ { g } ^ { k , t } : = \\nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \\phi ^ { k , t } )$ ; and, with the Hessian inverse estimator (8), the update direction of $x$ is the slightly biased gradient ", + "bbox": [ + 173, + 813, + 826, + 843 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7a21c234320bd4b8bc8257adce0dcafa7dd329bc26cd3f099a5c957f8bdfa9e9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\boldsymbol { h } _ { f } ^ { k } : = \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) } \\\\ & { \\qquad - \\nabla _ { \\boldsymbol { x } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ; \\phi _ { ( 0 ) } ^ { k } ) \\Bigl [ \\frac { N } { \\ell _ { g , 1 } } \\displaystyle \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\left( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { \\boldsymbol { y } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\phi _ { ( n ) } ^ { k } ) \\right) \\Bigr ] \\nabla _ { \\boldsymbol { y } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 842, + 789, + 910 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The alternating update (9) serves as a template for running SGD on stochastic nested problems. As we will show in the subsequent sections, we can generate stochastic algorithms for min-max, compositional, and even reinforcement learning problems following (9) as a template, but they differ in the particular forms of the stochastic gradients $h _ { g } ^ { k } , h _ { f } ^ { k }$ for the specific upper- and lower-level objective functions. See Algorithm 1 for a summary of ALSET for the bilevel problem. ", + "bbox": [ + 173, + 90, + 826, + 162 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Comparison between ALSET with existing works. Readers who are familiar with recent developments on stochastic optimization for bilevel problems may readily recognize the similarities between the general ALSET update (1) that we will analyze and the SGD-based updates in BSA [16], TTSA [18] and stocBiO [17]. However, the update (1) is different from BSA in that the number of $y$ -update, denoted as $T$ , is a constant in (1) that does not grow with the accuracy $\\epsilon ^ { - 1 }$ ; the update (1) is different from stocBiO in that the stochastic gradient $h _ { g } ^ { k , \\bar { t } }$ used in the $y$ -update (9a) is obtained by a fixed batch size that does not depend on the accuracy $\\epsilon ^ { - 1 }$ ; and, the update (1) is different from TTSA in that the stepsizes $\\alpha _ { k }$ and $\\beta _ { k }$ in (9) decrease at the same timescale. ", + "bbox": [ + 173, + 167, + 826, + 282 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We next present the convergence result of ALSET. ", + "bbox": [ + 173, + 287, + 504, + 303 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 1 (Bilevel problems). Suppose Assumptions $_ { I - 3 }$ hold. Define the constants as ", + "bbox": [ + 171, + 305, + 753, + 320 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/79c8b2b6e6326d1fc912d6f4ff787cd1e9a7ae39d3010165903168b0ae621358.jpg", + "text": "$$\n\\bar { \\alpha } _ { 1 } = \\frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \\frac { 2 L _ { f } L _ { y x } } { L _ { y } \\eta } } , \\bar { \\alpha } _ { 2 } = \\frac { 1 6 T \\mu _ { g } \\ell _ { g , 1 } } { ( \\mu _ { g } + \\ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } ) }\n$$", + "text_format": "latex", + "bbox": [ + 238, + 324, + 758, + 363 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\eta > 0$ is a control constant that will be specified in each special case to achieve the best sample complexity. With $\\alpha > 0$ being a control constant that will be specified later, choose the stepsizes as ", + "bbox": [ + 173, + 367, + 821, + 395 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/3e120d90f75f0297b0c10a6f222a57eac89097f7d5d141148bc0f397ac5a8e28.jpg", + "text": "$$\n\\alpha _ { k } = \\operatorname* { m i n } \\left\\{ \\bar { \\alpha } _ { 1 } , \\bar { \\alpha } _ { 2 } , \\frac { \\alpha } { \\sqrt { K } } \\right\\} \\mathrm { a n d } \\beta _ { k } = \\frac { 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } } { 4 T \\mu _ { g } } \\alpha _ { k } .\n$$", + "text_format": "latex", + "bbox": [ + 276, + 398, + 723, + 438 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For any $T \\geq 1$ and $N = \\mathcal { O } ( \\log K )$ , the iterates $\\{ x ^ { k } , y ^ { k } \\}$ generated by Algorithm $I$ satisfy ", + "bbox": [ + 171, + 441, + 766, + 458 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ee4d39cf8a06a92bc52d88a068a1b6601d520d6e78207f1559b790059bfe0ee3.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) \\ \\mathrm { ~ a n d ~ } \\ \\mathbb { E } \\left[ \\left. y ^ { K } - y ^ { * } ( x ^ { K } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big )\n$$", + "text_format": "latex", + "bbox": [ + 253, + 462, + 745, + 501 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $y ^ { * } ( x ^ { K } )$ is the minimizer of the lower-level problem in (1b). ", + "bbox": [ + 173, + 503, + 611, + 520 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 2. Under the same assumptions and the choice of parameters of Theorem $^ { l }$ , with $\\begin{array} { r } { \\kappa : = { \\frac { \\ell _ { g , 1 } } { \\mu _ { g } } } } \\end{array}$ \\`g,1µg being the condition number, select α = Θ(κ−5/2), T = Θ(κ4), η = O(κ) in (12), and then ", + "bbox": [ + 173, + 522, + 825, + 556 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/09ac042456c3c18279a5161be2686d8e5fc76a67f9f540c756e404cff284d838.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } [ \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 3 } } { K } + \\frac { \\kappa ^ { \\frac { 5 } { 2 } } } { \\sqrt { K } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 359, + 560, + 638, + 601 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Discussion of Theorem 1. To achieve $\\epsilon$ -stationary point, we need $K = \\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )$ , and the number of evaluations of $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )$ and $\\mathcal { O } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )$ , respectively. Therefore, the sample complexity is on the same order of SGD’s sample complexity for the single-level nonconvex problems [43], and improves the state-of-the-art single-loop TTSA’s sample complexity $\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )$ [18]. Compared to [17], ALSET achieves the same sample complexity in terms of both $\\epsilon$ and $\\kappa$ , without using a growing batch size. Importantly, we obtain this tighter bound without introducing additional assumptions. ", + "bbox": [ + 173, + 609, + 825, + 699 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "2.3 Proof sketch ", + "text_level": 1, + "bbox": [ + 174, + 714, + 300, + 729 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this subsection, we highlight the key steps of the proof towards Theorem 1, and highlight the differences between our analysis and the existing ones. ", + "bbox": [ + 173, + 738, + 823, + 768 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For simplicity, we define the following Lyapunov function as $\\begin{array} { r } { \\mathbb { V } ^ { k } : = F ( x ^ { k } ) + \\frac { L _ { f } } { L _ { y } } \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } . } \\end{array}$ We first quantify the difference between two Lyapunov functions as ", + "bbox": [ + 173, + 773, + 823, + 809 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/0bbd232b11bca2202c481c5429735f7c440dee2f83e9c510d4498521e53c3525.jpg", + "text": "$$\n\\mathbb { V } ^ { k + 1 } - \\mathbb { V } ^ { k } = \\underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \\mathrm { L e m m a ~ 1 } } + \\ \\frac { L _ { f } } { L _ { y } } ( \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } - \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 205, + 811, + 764, + 853 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The difference in (15) consists of two difference terms: the first term quantifies the descent of the overall objective functions; the second term characterizes the descent of the lower-level errors. ", + "bbox": [ + 171, + 862, + 825, + 891 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We will first analyze the descent of the upper-level objective in the next lemma. ", + "bbox": [ + 171, + 896, + 694, + 912 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lemma 1 (Descent of upper level). Suppose Assumptions $_ { I - 3 }$ hold. Define $\\bar { h } _ { f } ^ { k } : = \\mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]$ and $\\| \\bar { h } _ { f } ^ { k } - \\overline { { \\nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \\| \\leq b _ { k }$ . The sequence of $x ^ { k }$ generated by Algorithm $I$ satisfies ", + "bbox": [ + 171, + 89, + 825, + 125 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/2a3141b40dc386e6a42edbb33ed58c26f3e76b70442129d8b4a261e097a0f821.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \\mathbb { E } [ F ( { x } ^ { k } ) ] \\le - \\frac { \\alpha _ { k } } { 2 } \\mathbb { E } [ \\| \\nabla F ( { x } ^ { k } ) \\| ^ { 2 } ] - \\left( \\frac { \\alpha _ { k } } { 2 } - \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\right) \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] } \\\\ { + L _ { f } ^ { 2 } \\alpha _ { k } \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \\| ^ { 2 } ] + \\alpha _ { k } b _ { k } ^ { 2 } + \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 256, + 131, + 740, + 194 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where constants $L _ { f } , L _ { F } , \\sigma _ { f } ^ { 2 }$ are defined in Lemma 4 of the supplementary document. ", + "bbox": [ + 176, + 198, + 732, + 215 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 1 implies that the descent of the upper-level objective functions depends on the error of the lower-level variable $y ^ { k }$ . We will next analyze the error of the lower-level variable, which is the key step to improving the existing results. ", + "bbox": [ + 176, + 226, + 825, + 268 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Before we analyze the error of $y ^ { k }$ , we introduce a lemma that characterizes the smoothness of $y ^ { \\ast } ( x )$ and the bounded moments of $h _ { f } ^ { k }$ . The smoothness and the bounded moments have not been explored by previous analysis such as [16–18], and they play an essential role in our improved analysis of $y ^ { k }$ . ", + "bbox": [ + 173, + 273, + 826, + 321 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 2 (Smoothness and boundedness). Under Assumptions $^ { l }$ and 2, we have ", + "bbox": [ + 174, + 325, + 705, + 340 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/d9a1d7e8eaf3f12c30dc52cd9e0e2fc1f84366c496a4926e202f22510357246f.jpg", + "text": "$$\n\\begin{array} { r } { \\| \\nabla y ^ { * } ( x _ { 1 } ) - \\nabla y ^ { * } ( x _ { 2 } ) \\| \\leq L _ { y x } \\| x _ { 1 } - x _ { 2 } \\| ; \\quad \\mathbb { E } [ \\| h _ { f } ^ { k } \\| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \\leq \\tilde { C } _ { f } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 347, + 728, + 367 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $L _ { y x }$ and $\\tilde { C } _ { f } ^ { 2 }$ depend on the constants defined in Assumptions 1-2. ", + "bbox": [ + 176, + 376, + 642, + 392 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Building upon Lemma 2, we establish the progress of the lower-level update. ", + "bbox": [ + 176, + 402, + 678, + 419 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 3 (Error of lower level). Suppose that Assumptions 1–3 hold, and $y ^ { k + 1 }$ is generated by running iteration (9) given $x ^ { k }$ . If we choose $\\begin{array} { r } { \\beta _ { k } \\le \\frac { 2 ^ { \\binom { - } { q } } } { \\mu _ { g } + \\ell _ { g , 1 } } } \\end{array}$ , then $y ^ { k + 1 }$ satisfies ", + "bbox": [ + 176, + 421, + 826, + 455 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/36f957552fc5b6f0a43162e367f234b8417c32cda20a4e5c9316c08d993678a9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] \\leq ( 1 - \\mu _ { g } \\beta _ { k } ) ^ { T } \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + T \\beta _ { k } ^ { 2 } \\sigma _ { g , 1 } ^ { 2 } } \\\\ & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq \\Big ( 1 + 4 L _ { f } L _ { y } \\alpha _ { k } + \\frac { \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } } { 2 } \\alpha _ { k } ^ { 2 } \\Big ) \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] } \\\\ & { \\qquad + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y } } { 4 L _ { f } \\alpha _ { k } } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 194, + 459, + 767, + 554 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\eta > 0$ is a fixed constant that will be chosen to obtain the tighter complexity bound. ", + "bbox": [ + 171, + 556, + 761, + 571 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The improved analysis of the lower-level problem. Next we explain where we can obtain improved analysis. Plugging (18a) into (18b), and selecting stepsizes $\\alpha _ { k } , \\beta _ { k }$ properly, we can show that ", + "bbox": [ + 174, + 583, + 825, + 612 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/f1718faffb799525f7fa8be06e5da0480c738b8b36fe9a1eaf7206a9a7e1bab0.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\delta _ { 3 } T \\sigma _ { g , 1 } ^ { 2 } + \\delta _ { 4 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 194, + 617, + 779, + 638 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where the constants are $\\delta _ { 1 } \\in [ 0 , 1 ) , \\delta _ { 2 } = \\mathcal { O } ( \\alpha _ { k } ) , \\delta _ { 3 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } ) , \\delta _ { 4 } = \\mathcal { O } ( \\alpha _ { k } ^ { 2 } )$ . As we will show in our supplementary material, the term $\\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ]$ will be canceled when combined with (16) in our analysis. Hence, choosing $\\alpha _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )$ and $\\beta _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )$ makes the variance terms in (19) decrease at the same $\\mathcal { O } ( k ^ { - 1 / 2 } )$ rate as the vanilla SGD for stochastic non-nested problems. ", + "bbox": [ + 173, + 643, + 826, + 710 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As a comparison, the progress of the lower-level problem in [18, 17] can be summarized as ", + "bbox": [ + 176, + 714, + 771, + 731 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/3576c911fd6a242b95c18e8b66b3825d39d169a6cdda8a060ef3287777835a48.jpg", + "text": "$$\n\\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 5 } \\sigma ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 289, + 737, + 709, + 756 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\sigma ^ { 2 }$ is some variance term, and the constant is $\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )$ or $\\mathcal { O } ( 1 / B _ { k } )$ with $B _ { k }$ being the batch size at iteration $k$ . To balance the two terms in $\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )$ , two timescales of stepsizes $\\begin{array} { r } { \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0 } \\end{array}$ are needed, which will make the variance term of the $y$ -update in (20) and that of the $x$ -update in (16) decrease at two different rates, slower than that of SGD; and to reduce $\\delta _ { 5 } = \\mathcal { O } ( 1 / B _ { k } )$ , a growing batch size $B _ { k } = \\mathcal { O } ( k )$ is needed for the $y$ -update. ", + "bbox": [ + 173, + 761, + 825, + 834 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3 Applications to Stochastic Min-Max and Compositional Problems ", + "text_level": 1, + "bbox": [ + 171, + 844, + 753, + 863 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Building upon the general results for the bilevel problems in Section 2, this section will identify special features of the stochastic min-max and stochastic compositional problems, and customize the general results to yield state-of-the-art convergence results for two special nested problems. ", + "bbox": [ + 174, + 868, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.1 Stochastic min-max problems ", + "text_level": 1, + "bbox": [ + 174, + 92, + 419, + 106 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We first apply our results to the stochastic min-max problem (2). In this special case, the lower-level function is $\\bar { g ( x , y ; \\phi ) } = - f ( x , y ; \\xi )$ , and the bilevel gradient in (6) reduces to ", + "bbox": [ + 173, + 116, + 825, + 145 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/670d59345221271862aa7b56d1bcb3615feddc89ce834a80ac0f6e011fda27ff.jpg", + "text": "$$\n\\nabla F ( x ) : = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } + \\nabla _ { x } y ^ { * } ( x ) ^ { \\top } \\nabla _ { y } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) }\n$$", + "text_format": "latex", + "bbox": [ + 251, + 150, + 745, + 170 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where the second equality follows from the optimality condition of the lower-level problem, i.e., $\\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0$ . Similar to Section 2, we again approximate $\\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Therefore, the alternating stochastic gradients for this special case are given by ", + "bbox": [ + 173, + 174, + 826, + 217 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/58407e3ce8ffa81f4d704d1bc7baa5788597a9607ae95f312d352a11482405a2.jpg", + "text": "$$\n\\begin{array} { r } { h _ { g } ^ { k , t } = - \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 294, + 222, + 704, + 243 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 2. \nWhen the number of $y$ -update is $T = 1$ , the ALSET algorithm reduces to the SGDA method in [28]. ", + "bbox": [ + 173, + 247, + 826, + 276 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Proposition 3 (Min-max problems). Choose the same choice of parameters as those in Theorem $I$ , and follow the same assumption as those in Theorem $^ { l }$ except that $f ( \\cdot , y )$ is only Lipchitz over $x \\in \\mathbb { R } ^ { d }$ but not that $f ( x , \\cdot )$ is Lipschitz continuous over $y \\in \\mathbb { R } ^ { d ^ { \\prime } }$ . If we select $\\alpha = \\Theta ( \\kappa ^ { - 1 } )$ , $T = \\Theta ( \\kappa )$ , $\\eta = 1$ in (12), the iterates generated by Algorithm 2 satisfy ", + "bbox": [ + 173, + 279, + 826, + 338 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/ab11ba632dabb369af924b5558ebc5ef26ce0eec93e31e05228192c6775091d7.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 2 } } { K } + \\frac { \\kappa } { \\sqrt { K } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 342, + 643, + 381 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Proposition 3 implies that for the minmax problem, the convergence rate of ALSET to the stationary point of $\\begin{array} { r } { F ( x ) \\ \\mathrel { \\mathop : } = \\ \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] } \\end{array}$ is $\\mathcal { O } ( K ^ { - 1 / 2 } )$ . To achieve $\\epsilon$ -stationary point, we need $K = \\mathcal { O } ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } )$ . And the number of gradient evaluations for $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\\mathcal { O } \\bar { ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } ) }$ and $\\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } )$ , respectively. Comparing with the results in [28], we achieve the same sample complexity without an increasing batch size $\\mathsf { \\bar { \\mathcal { O } } } ( \\epsilon ^ { - 1 } )$ , and improve their sample complexity $\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )$ under a fixed batch size. ", + "bbox": [ + 173, + 391, + 441, + 577 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Algorithm 2 ALSET for the min-max problem (2) ", + "bbox": [ + 452, + 405, + 782, + 419 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\\{ \\alpha _ { k } , \\beta _ { k } \\}$ . \n2: for $k = 0 , 1 , \\ldots , K - 1$ do \n3: set $y ^ { k , 0 } = y ^ { k }$ \n4: for $t = 0 , 1 , \\dots , T - 1$ do \n5: update $y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } )$ \n6: end for \n7: set $y ^ { k + 1 } = y ^ { k , T }$ \n8: update $\\boldsymbol { x } ^ { k + \\mathrm { i } } = x ^ { k } - \\alpha _ { k } \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } )$ \n9: end for ", + "bbox": [ + 457, + 422, + 826, + 553 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "However, it is also worth mentioning that compared with [28], our analysis requires the additional Lipschitz continuity assumption of $f ( \\cdot , y )$ over $x \\in \\mathbb { R } ^ { d }$ , which inherits from the analysis for the general bilevel problem. Therefore, our result complements, rather than improves, the analysis in [28]. We view our contribution in min-max problems as a supplementary of existing results. ", + "bbox": [ + 174, + 578, + 825, + 633 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "3.2 Stochastic compositional problems ", + "text_level": 1, + "bbox": [ + 174, + 648, + 452, + 664 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section, we apply our results to the stochastic compositional problem (3). In this special case, the upper-level function is $f ( x , y ; \\xi ) : = f ( y ; \\xi )$ , and the lower-level function is $g ( x , y ; \\phi ) =$ $\\| y - h ( x ; \\phi ) \\| ^ { 2 }$ , and the bilevel gradient in (6) reduces to ", + "bbox": [ + 174, + 674, + 826, + 717 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/9aae8fbe3a436ac5e47f8422667811d722986fe4cc12e4704b598719ee99e25b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\nabla F ( x ) : = \\nabla _ { x } f \\big ( x , y ^ { * } ( x ) \\big ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big [ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big ] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\\\ & { \\qquad = \\nabla h ( x ; \\phi ) ^ { \\top } \\nabla _ { y } f ( y ^ { * } ( x ) ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 722, + 769, + 766 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where we use the fact that $\\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi ) = \\mathbf { I } _ { d ^ { \\prime } \\times d ^ { \\prime } } , \\nabla _ { x y } ^ { 2 } g ( x , y ; \\phi ) = - \\nabla h ( x ; \\phi ) ^ { \\top }$ . Similar to Section 2, we again evaluate $\\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { \\ast } ( x )$ . Therefore, by choosing $T = 1$ , the alternating stochastic gradients $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ for this special case are much simpler, given by ", + "bbox": [ + 173, + 771, + 825, + 819 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/42286cab55485d382d6e1041ea11717fe6526c9dcee0c3889714188952cc40b3.jpg", + "text": "$$\nh _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla h ( x ^ { k } ; \\phi ^ { k } ) \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) .\n$$", + "text_format": "latex", + "bbox": [ + 269, + 824, + 727, + 844 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 3. \nWhen $T = 1$ , the ALSET algorithm reduces to SCGD proposed in [12]. ", + "bbox": [ + 173, + 848, + 826, + 877 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In the supplementary document, we have verified that the standard assumptions of stochastic compositional optimization in [12, 37, 14, 41, 38] are sufficient for Assumptions 1–3 to hold. ", + "bbox": [ + 173, + 882, + 825, + 912 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Proposition 4 (Compositional problems). Under the same assumptions and the parameters as those in Theorem $I$ , if we select $\\begin{array} { r } { T ^ { } = 1 , \\alpha = 1 , \\eta = \\frac { 1 } { L _ { y x } } } \\end{array}$ in (12), the iterates of Algorithm 3 satisfy ", + "bbox": [ + 171, + 90, + 823, + 123 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/d7205188d54ac793707f65121e39f67779191a30272311d0f8d2c3ce2d903eab.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left\\| \\nabla F ( x ^ { k } ) \\right\\| ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) .\n$$", + "text_format": "latex", + "bbox": [ + 169, + 131, + 405, + 170 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Since each iteration of ALSET only uses $\\mathcal { O } ( 1 )$ samples (see Algorithm 3), Proposition 4 implies that the sample complexity to achieve an $\\epsilon$ -stationary point of (3) is $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ . Comparing with the results ", + "bbox": [ + 173, + 176, + 441, + 247 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Algorithm 3 ALSET for the compositional problem (3) ", + "bbox": [ + 450, + 136, + 821, + 151 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\\{ \\alpha _ { k } , \\beta _ { k } \\}$ . \n2: for $k = 0 , 1 , \\ldots , K - 1$ do \n3: update $y ^ { k + 1 } = y ^ { k } - \\beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) )$ \n4: update $x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) \\nabla h ( x ^ { k } ; \\phi ^ { k } )$ \n5: end for ", + "bbox": [ + 459, + 156, + 831, + 229 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "of the SCGD method in [12], our result improves the sample complexity $\\mathcal { O } ( \\epsilon ^ { - 4 } )$ under a fixed batch size. Importantly, our analysis does not introduce additional assumption compared to [12]. ", + "bbox": [ + 171, + 247, + 825, + 275 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4 Applications to Actor-Critic Methods ", + "text_level": 1, + "bbox": [ + 173, + 292, + 516, + 310 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this section, we apply our tighter analysis to the actor-critic (AC) method with linear value function approximation [44], which can be viewed as a special case of the stochastic bilevel algorithm [45, 46]. ", + "bbox": [ + 174, + 324, + 825, + 352 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Consider a Markov decision process described by $\\mathcal { M } = \\{ { \\cal S } , \\mathcal { A } , \\mathcal { P } , { \\cal R } , \\gamma \\}$ , where $s$ is the state space, $\\mathcal { A }$ is the action space, $\\mathcal { P } ( s ^ { \\prime } | s , a )$ is the probability of transitioning to $s ^ { \\prime } \\in \\mathcal { S }$ given state $s \\in S$ and action $a \\in { \\mathcal { A } }$ , and $R ( s , a , s ^ { \\prime } )$ is the reward associated with $( s , a , s ^ { \\prime } )$ , and $\\gamma \\in [ 0 , 1 )$ is a discount factor. For a policy $\\pi _ { \\theta }$ , define the value function $V _ { \\pi _ { \\theta } } ( s )$ that satisfies the Bellman equation [47] ", + "bbox": [ + 173, + 357, + 825, + 414 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/f74791f3420c18b5453cccfcd8a7f2aedabd56eaf6bef77d96754b16068daa3b.jpg", + "text": "$$\n\\begin{array} { r } { V _ { \\pi _ { \\theta } } ( s ) = \\mathbb { E } _ { a \\sim \\pi _ { \\theta } ( . | s ) , s ^ { \\prime } \\sim \\mathcal { P } ( \\cdot | s , a ) } \\left[ r ( s , a , s ^ { \\prime } ) + \\gamma V _ { \\pi _ { \\theta } } ( s ^ { \\prime } ) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 417, + 683, + 435 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Given the state feature mapping $\\phi ( \\cdot ) : \\mathcal { S } \\mathbb { R } ^ { d _ { y } }$ , we approximate the value function linearly as $V _ { \\pi _ { \\boldsymbol { \\theta } } } ( s ) \\approx \\hat { V } _ { y } ( s ) : = \\boldsymbol { \\phi } ( s ) ^ { \\top } \\boldsymbol { y }$ , where $\\boldsymbol { y } \\in \\mathbb { R } ^ { d _ { y } }$ is the critic parameter. The task of finding the best $y$ such that $V _ { \\pi _ { \\theta } } ( s ) \\approx \\hat { V } _ { y } ( s )$ is usually addressed by TD learning [48]. ", + "bbox": [ + 173, + 439, + 825, + 488 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Defining the stationary distribution induced by the policy parameter $\\theta _ { k }$ as $\\mu _ { \\theta _ { k } }$ and the $k$ th transition as $\\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )$ , which is sampled from $s _ { k } \\sim \\mu _ { \\theta _ { k } } , a \\sim \\pi _ { \\theta _ { k } } , s _ { k + 1 } \\sim \\mathcal { P }$ , the TD-error is ", + "bbox": [ + 171, + 493, + 825, + 522 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/3a65ad360fd1c65f714ce075dccb4b8d554c095a5fb47320954acba9d15161d3.jpg", + "text": "$$\n\\hat { \\delta } ( \\xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \\gamma \\phi ( s _ { k + 1 } ) ^ { \\top } y _ { k } - \\phi ( s _ { k } ) ^ { \\top } y _ { k }\n$$", + "text_format": "latex", + "bbox": [ + 307, + 526, + 691, + 545 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "and the critic gradient $h _ { g } ( \\xi _ { k } , y _ { k } ) : = \\hat { \\delta } ( \\xi _ { k } , y _ { k } ) \\nabla \\hat { V } _ { y _ { k } } ( s _ { k } )$ . We update the parameter $y$ via ", + "bbox": [ + 171, + 547, + 750, + 566 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/144d8a586a43048d150440c89d7efb72f27ab8c19abf0d066fb42849bd5c8340.jpg", + "text": "$$\ny _ { k + 1 } = \\Pi _ { R _ { y } } \\big ( y _ { k } + \\beta _ { k } h _ { g } ( \\xi _ { k } , y _ { k } ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 383, + 569, + 611, + 588 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $\\beta _ { k }$ is the critic stepsize, and $\\Pi _ { R _ { y } }$ is the projection to control the norm of the gradient. A pre-defined constant $R _ { y }$ will be specified in the supplementary document. ", + "bbox": [ + 171, + 590, + 825, + 618 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The goal of policy optimization is to solve ${ \\mathrm { m a x } } _ { \\theta \\in \\mathbb { R } ^ { d } } F ( \\theta )$ with $F ( \\theta ) : = \\mathbb { E } _ { s \\sim \\eta } [ V _ { \\pi _ { \\theta } } ( s ) ]$ , where $\\eta$ is the initial distribution. Leveraging the value function approximation and the policy gradient theorem [49], we have the policy gradient $h _ { f } ( \\xi , \\theta , y ) : = \\hat { \\delta } ( \\xi , \\bar { y ) \\psi } _ { \\theta } ( s , a )$ , which gives the policy update ", + "bbox": [ + 173, + 623, + 825, + 670 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/f68fc6a295fc04dc069efa01f19f9e23d49e51efd97555db17610adb1eab595f.jpg", + "text": "$$\n\\theta _ { k + 1 } = \\theta _ { k } + \\alpha _ { k } h _ { f } ( \\xi _ { k } ^ { \\prime } , \\theta _ { k } , y _ { k + 1 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 385, + 672, + 607, + 689 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $\\alpha _ { k }$ is the stepsize and $\\psi _ { \\boldsymbol \\theta } ( s , a ) : = \\nabla \\log \\pi _ { \\boldsymbol \\theta } ( a | s )$ . Note that the sample $\\xi _ { k } ^ { \\prime } : = ( s _ { k } ^ { \\prime } , a _ { k } ^ { \\prime } , s _ { k + 1 } ^ { \\prime } )$ used in (30) is independent from $\\xi _ { k }$ in (29). Specifically, $\\xi _ { k } ^ { \\prime }$ is sampled from $s _ { k } ^ { \\prime } \\sim d _ { \\theta _ { k } } , a _ { k } ^ { \\prime } \\sim$ $\\pi _ { \\boldsymbol { \\theta } _ { k } } , s _ { k + 1 } ^ { \\prime } \\sim \\mathcal { P }$ with $d _ { \\theta _ { k } }$ being the discounted state action visitation measure under $\\theta _ { k }$ . ", + "bbox": [ + 173, + 691, + 825, + 736 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The alternating AC update (29)-(30) is a special case of ALSET, where the critic update is the lower-level update, and the actor update is the upper-level update. ", + "bbox": [ + 173, + 741, + 823, + 770 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Due to space limitation, we will directly present the results of the alternating AC next, and defer presentation of the proof and the corresponding assumptions, which are the counterparts of Assumptions 1–3 in the context of AC, to the supplementary document. ", + "bbox": [ + 174, + 776, + 823, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Theorem 2 (Actor-critic). Under the some regularity conditions that are specified in the supplementary document, selecting step size $\\begin{array} { r } { \\alpha _ { k } = \\alpha = \\overset { \\cdot } { \\mathcal { O } } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}$ , $\\begin{array} { r } { \\beta _ { k } = \\beta = \\mathcal { O } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}$ , it holds ", + "bbox": [ + 173, + 820, + 823, + 853 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/6e8745504937552e960e3105a3635f680c42e33ac18f071f89ac3ebc5f3c4946.jpg", + "text": "$$\n\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\| \\nabla F ( \\theta _ { k } ) \\| ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { 1 } { \\sqrt { K } } \\right) + \\epsilon _ { \\mathrm { a p p } }\n$$", + "text_format": "latex", + "bbox": [ + 364, + 856, + 633, + 895 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $\\epsilon _ { \\mathrm { a p p } }$ , defined in the supplementary document, captures the richness of the linear function class. ", + "bbox": [ + 173, + 897, + 825, + 912 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Both sides of Theorem 2. As an application of our tighter analysis, Theorem 2 establishes for the first time that the sample complexity of the single-loop alternating actor-critic method is $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ . On the positive side, this new result improves the previous complexity $\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )$ for the single-loop AC [50], and $\\mathcal { O } ( \\epsilon ^ { - 2 } \\log \\epsilon ^ { - 1 } )$ for the nested-loop AC [51], and matches $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ for AC with an exact critic oracle [52]. In addition to using two independent samples, one limitation of our result is that inheriting from the analysis for the general bilevel case, our analysis of AC requires the smoothness of the critic fixed-point $y ^ { * } ( \\theta )$ . As shown in the supplementary document, this implicitly requires the additional bounded and Lipschitz continuity assumption on the stationary distribution $\\mu _ { \\theta }$ . The removal of this assumption and the extension to Markovian sampling are left for future research. ", + "bbox": [ + 173, + 90, + 825, + 218 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 Preliminary Experiments ", + "text_level": 1, + "bbox": [ + 176, + 232, + 416, + 250 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "To validate our new theoretical results, we have conducted the simple experiment using the riskaverse portfolio management task on a benchmark dataset - 100 Book-to-Market. This is a typical application of stochastic compositional optimization (3) that is used in [40, 41]. We compared the popular two-timescale SCGD approach [12] with our single-timescale ALSET approach. ", + "bbox": [ + 174, + 263, + 825, + 319 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We use the same initialization of $x ^ { 0 } , y ^ { 0 }$ for both SCGD and ALSET, and tune the stepsizes $\\alpha _ { k } , \\beta _ { k }$ by following the suggested order in the original SCGD paper and then using a grid search for the multiplicative constant $c$ , that is ", + "bbox": [ + 174, + 325, + 452, + 409 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/54ca6523954c21ed762295cfb1704e2b9d8895c5ceea245c1861ad223663912e.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
", + "bbox": [ + 470, + 335, + 818, + 425 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The constant $c$ is chosen from the searching ", + "bbox": [ + 176, + 452, + 450, + 465 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Table 4: Comparison of $\\begin{array} { r l } { { \\ln ( \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ) } \\quad } & { { } } \\end{array}$ among the two-timescale and single-timescale algorithms. ", + "bbox": [ + 464, + 431, + 823, + 462 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "grid $\\{ 1 0 ^ { - 3 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \\}$ and is optimized for each algorithm in terms of ergodic average gradient norm versus the number of iterations. In Table 4, we report the logarithmic value of the average gradient norm performance of SCGD, ALSET with both the above decreasing stepsizes and ALSETconst with the constant stepsizes (replacing $k$ with $K = 1 0 0 0$ ). Since SCGD and ALSET use the same number of samples and gradient evaluations per iteration, we report the progress in terms of iterations. By calculating the decay rate, we can observe that the empirical convergence rate of ALSET is no worse than the theoretical rate $\\mathcal { O } ( k ^ { - 1 / 2 } )$ , and ALSET outperforms SCGD thanks to its single-timescale stepsizes. We will pursue more comprehensive experiments in our future work. ", + "bbox": [ + 173, + 465, + 826, + 578 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 Conclusions ", + "text_level": 1, + "bbox": [ + 174, + 593, + 307, + 609 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This paper unifies several SGD-type updates for stochastic nested problems into a single nested SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. ALSET runs in the single-timescale and uses a fixed batch size. This paper presents a tighter analysis for using ALSET to solve stochastic nested problems. Under the new analysis, to achieve an $\\epsilon$ -stationary point of the nested problem, ALSET requires $\\mathcal { O } ( \\epsilon ^ { - 2 } )$ samples in total. As a by-product, this general result also improves the existing sample complexity of the min-max and compositional cases. It matches the sample complexity of SGD for single-level stochastic problems. Applying our analysis to an alternating version of the actor-critic algorithm also yields a state-of-the-art sample complexity. ", + "bbox": [ + 173, + 622, + 825, + 734 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Potential limitations of our results include additional assumptions in the min-max and actor-critic cases, which inherit from the assumptions of general bilevel problems. Nevertheless, our work can also lead to promising future research in understanding the theoretical performance of many successful empirical nested optimization algorithms. To this end, our future work consists of relaxing the regularity conditions needed to achieve our theoretical results and Possible extensions include applying our the tighter analysis in this paper to the existing two-timescale Hessian-free bilevel optimization algorithms and decentralized stochastic nested optimization algorithms. ", + "bbox": [ + 174, + 739, + 825, + 838 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgements ", + "text_level": 1, + "bbox": [ + 176, + 853, + 338, + 869 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The work of T. Chen was partially supported by NSF Grant 2047177 and the RPI-IBM Artificial Intelligence Research Collaboration (AIRC). The work of Y. Sun was partially supported by ONR ", + "bbox": [ + 176, + 882, + 823, + 911 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Grant N000141712162 and AFOSR MURI FA9550-18-1-0502. We thank anonymous reviewers for their valuable feedback on improving the current paper. ", + "bbox": [ + 174, + 90, + 823, + 119 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "References \n[1] H. Robbins and S. Monro, “A stochastic approximation method,” Annals of Mathematical Statistics, vol. 22, no. 3, pp. 400–407, Sep. 1951. \n[2] C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep networks,” in Proc. Intl. Conf. Machine Learn., Sydney, Australia, Jun. 2017, pp. 1126–1135. \n[3] L. Franceschi, P. Frasconi, S. Salzo, R. Grazzi, and M. Pontil, “Bilevel programming for hyperparameter optimization and meta-learning,” in Proc. Intl. Conf. Machine Learn., Vienna, Austria, Jun. 2018, pp. 1568–1577. \n[4] B. Colson, P. Marcotte, and G. Savard, “An overview of bilevel optimization,” Annals of operations research, vol. 153, no. 1, pp. 235–256, 2007. \n[5] G. Kunapuli, K. P. Bennett, J. Hu, and J.-S. Pang, “Classification model selection via bilevel programming,” Optimization Methods & Software, vol. 23, no. 4, pp. 475–489, 2008. \n[6] S. Dempe and A. Zemkoho, Bilevel Optimization. Springer, 2020. \n[7] C. Daskalakis and I. Panageas, “The limit points of (optimistic) gradient descent in min-max optimization,” in Proc. Advances in Neural Info. Process. Syst., Montreal, Canada, Dec. 2018, pp. 9256–9266. \n[8] G. Gidel, H. Berard, G. Vignoud, P. Vincent, and S. Lacoste-Julien, “A variational inequality perspective on generative adversarial networks,” in Proc. Intl. Conf. Learn. Representations, Vancouver, Canada, Apr. 2018. \n[9] H. Rafique, M. Liu, Q. Lin, and T. Yang, “Non-convex min-max optimization: Provable algorithms and applications in machine learning,” Optimization Methods and Software, Mar. 2021. \n[10] K. K. Thekumparampil, P. Jain, P. Netrapalli, and S. Oh, “Efficient algorithms for smooth minimax optimization,” in NeurIPS, Vancouver, Canada, Dec. 2019. \n[11] A. Mokhtari, A. Ozdaglar, and S. Pattathil, “A unified analysis of extra-gradient and optimistic gradient methods for saddle point problems: Proximal point approach,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Palermo, Italy, Aug. 2020, pp. 1497–1507. \n[12] M. Wang, E. X. Fang, and H. Liu, “Stochastic compositional gradient descent: algorithms for minimizing compositions of expected-value functions,” Mathematical Programming, vol. 161, no. 1-2, pp. 419–449, Jan. 2017. \n[13] B. Dai, N. He, Y. Pan, B. Boots, and L. Song, “Learning from conditional distributions via dual embeddings,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017, pp. 1458–1467. \n[14] S. Ghadimi, A. Ruszczynski, and M. Wang, “A single timescale stochastic approximation method for nested stochastic optimization,” SIAM Journal on Optimization, vol. 30, no. 1, pp. 960–979, Mar. 2020. \n[15] K. Ji, J. Yang, and Y. Liang, “Multi-step model-agnostic meta-learning: Convergence and improved algorithms,” arXiv preprint:2002.07836, Feb. 2020. \n[16] S. Ghadimi and M. Wang, “Approximation methods for bilevel programming,” arXiv preprint:1802.02246, 2018. \n[17] K. Ji, J. Yang, and Y. Liang, “Provably faster algorithms for bilevel optimization and applications to meta-learning,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. \n[18] M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A two-timescale framework for bilevel optimization: Complexity analysis and application to actor-critic,” arXiv preprint:2007.05170, 2020. \n[19] T. Chen, Y. Sun, and W. Yin, “A single-timescale stochastic bilevel optimization method,” arXiv preprint arXiv:2102.04671, 2021. \n[20] H. V. Stackelberg, The Theory of Market Economy. Oxford University Press, 1952. \n[21] S. Sabach and S. Shtern, “A first order method for solving convex bilevel optimization problems,” SIAM Journal on Optimization, vol. 27, no. 2, pp. 640–660, 2017. \n[22] A. Shaban, C.-A. Cheng, N. Hatch, and B. Boots, “Truncated back-propagation for bilevel optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Naha, Okinawa, Japan, Apr. 2019, pp. 1723–1732. \n[23] R. Grazzi, L. Franceschi, M. Pontil, and S. Salzo, “On the iteration complexity of hypergradient computation,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 3748–3758. \n[24] R. Liu, P. Mu, X. Yuan, S. Zeng, and J. Zhang, “A generic first-order algorithmic framework for bi-level programming beyond lower-level singleton,” in Proc. of International Conference on Machine Learning, Virtual, July 2020, pp. 6305–6315. \n[25] P. Khanduri, S. Zeng, M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A momentum-assisted single-timescale stochastic approximation algorithm for bilevel optimization,” arXiv preprint arXiv:2102.07367, Feb. 2021. \n[26] Z. Guo and T. Yang, “Randomized stochastic variance-reduced methods for stochastic bilevel optimization,” arXiv preprint arXiv:2105.02266, May 2021. \n[27] J. Yang, K. Ji, and Y. Liang, “Provably faster algorithms for bilevel optimization,” arXiv preprint arXiv:2106.04692, Jun. 2021. \n[28] T. Lin, C. Jin, and M. Jordan, “On gradient descent ascent for nonconvex-concave minimax problems,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 6083–6093. \n[29] T. Yoon and E. K. Ryu, “Accelerated algorithms for smooth convex-concave minimax problems with $O ( 1 / k ^ { 2 } )$ rate on squared gradient norm,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. \n[30] M. Nouiehed, M. Sanjabi, T. Huang, J. D. Lee, and M. Razaviyayn, “Solving a class of nonconvex min-max games using iterative first order methods,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019, pp. 14 934–14 942. \n[31] L. Luo, H. Ye, Z. Huang, and T. Zhang, “Stochastic recursive gradient descent ascent for stochastic nonconvex-strongly-concave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. \n[32] Y. Yan, Y. Xu, Q. Lin, W. Liu, and T. Yang, “Optimal epoch stochastic gradient descent ascent methods for min-max optimization,” Proc. Advances in Neural Info. Process. Syst., vol. 33, Dec. 2020. \n[33] Q. Tran Dinh, D. Liu, and L. Nguyen, “Hybrid variance-reduced sgd algorithms for minimax problems with nonconvex-linear function,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. \n[34] M. Liu, Y. Mroueh, J. Ross, W. Zhang, X. Cui, P. Das, and T. Yang, “Towards better understanding of adaptive gradient algorithms in generative adversarial nets,” in Proc. Intl. Conf. Learn. Representations, Virtual, Apr. 2020. \n[35] J. Yang, N. Kiyavash, and N. He, “Global convergence and variance reduction for a class of nonconvex-nonconcave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. \n[36] J. Diakonikolas, C. Daskalakis, and M. Jordan, “Efficient methods for structured nonconvexnonconcave min-max optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Virtual, Apr. 2021. \n[37] M. Wang, J. Liu, and E. Fang, “Accelerating stochastic composition optimization,” Journal Machine Learning Research, vol. 18, no. 1, pp. 3721–3743, 2017. \n[38] T. Chen, Y. Sun, and W. Yin, “Solving stochastic compositional optimization is nearly as easy as solving stochastic optimization,” IEEE Trans. Sig. Proc., vol. 69, Aug. 2021. \n[39] A. Ruszczynski, “A stochastic subgradient method for nonsmooth nonconvex multi-level composition optimization,” arXiv preprint:2001.10669, Jan. 2020. \n[40] X. Lian, M. Wang, and J. Liu, “Finite-sum composition optimization via variance reduced gradient descent,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017. \n[41] J. Zhang and L. Xiao, “A stochastic composite gradient method with incremental variance reduction,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019. \n[42] Q. Tran-Dinh, N. Pham, and L. Nguyen, “Stochastic gauss-newton algorithms for nonconvex compositional optimization,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2020. \n[43] S. Ghadimi and G. Lan, “Stochastic first-and zeroth-order methods for nonconvex stochastic programming,” SIAM Journal on Optimization, vol. 23, no. 4, pp. 2341–2368, 2013. \n[44] V. Konda and V. Borkar, “Actor-critic-type learning algorithms for markov decision processes,” SIAM Journal on Control and Optimization, vol. 38, no. 1, pp. 94–123, 1999. \n[45] J. Wen, S. Kumar, R. Gummadi, and D. Schuurmans, “Characterizing the gap between actorcritic and policy gradient,” in Proc. Intl. Conf. Machine Learn., Virtual, 2021. \n[46] L. Zheng, T. Fiez, Z. Alumbaugh, B. Chasnov, and L. J. Ratliff, “Stackelberg actor-critic: Game-theoretic reinforcement learning algorithms,” arXiv preprint arXiv:2109.12286, 2021. \n[47] R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction. MIT Press, 2018. \n[48] R. Sutton, “Learning to predict by the methods of temporal differences,” Machine Learning, vol. 3, pp. 9–44, 1988. \n[49] R. Sutton, D. McAllester, S. Singh, and Y. Mansour, “Policy gradient methods for reinforcement learning with function approximation.” in Proc. Advances in Neural Info. Process. Syst., 2000. \n[50] Y. Wu, W. Zhang, P. Xu, and Q. Gu, “A finite time analysis of two time-scale actor critic methods,” in Proc. Advances in Neural Info. Process. Syst., 2020. \n[51] T. Xu, Z. Wang, and Y. Liang, “Improving sample complexity bounds for (natural) actor-critic algorithms,” in Proc. Advances in Neural Info. Process. Syst., 2020. \n[52] Z. Fu, Z. Yang, and Z. Wang, “Single-timescale actor-critic provably finds globally optimal policy,” in Proc. Intl. Conf. Learn. Representations, 2020. \n[53] Y. Nesterov, Introductory Lectures on Convex Optimization: A basic course. Berlin, Germany: Springer, 2013, vol. 87. \n[54] J. Bhandari, D. Russo, and R. Singal, “A finite time analysis of temporal difference learning with linear function approximation.” in COLT, 2018. \n[55] T. Xu, Z. Wang, Y. Zhou, and Y. Liang, “Reanalysis of variance reduced temporal difference learning,” in Proc. Intl. Conf. Learn. Representations, 2020. \n[56] K. Zhang, A. Koppel, H. Zhu, and T. Ba¸sar, “Global convergence of policy gradient methods to (almost) locally optimal policies,” arXiv preprint:1906.08383, 2019. \n[57] A. Agarwal, S. M. Kakade, J. D. Lee, and G. Mahajan, “Optimality and approximation with policy gradient methods in markov decision processes.” in Proc. of Thirty Third Conference on Learning Theory, 2020. \n[58] K. Doya, “Reinforcement learning in continuous time and space,” Neural Computation, vol. 12, no. 1, pp. 219–245, 2000. \n[59] J. Baxter and P. L. Bartlett, “Infinite-horizon policy-gradient estimation,” J. Artificial Intelligence Res., vol. 15, pp. 319–350, 2001. \n[60] A. Y. Mitrophanov, “Sensitivity and convergence of uniformly ergodic markov chains,” Journal of Applied Probability, vol. 42, no. 4, pp. 1003–1014, 2005. \n[61] S. Qiu, Z. Yang, J. Ye, and Z. Wang, “On the finite-time convergence of actor-critic algorithm,” in Optimization Foundations for Reinforcement Learning Workshop at Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 173, + 140, + 828, + 917 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 79, + 828, + 916 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 89, + 830, + 912 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 90, + 828, + 247 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_middle.json b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..7f6adf82bd8b2c6c270afb31ed55170d57f727bb --- /dev/null +++ b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_middle.json @@ -0,0 +1,48999 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 121, + 97, + 491, + 137 + ], + "lines": [ + { + "bbox": [ + 124, + 97, + 488, + 118 + ], + "spans": [ + { + "bbox": [ + 124, + 97, + 488, + 118 + ], + "score": 1.0, + "content": "Closing the Gap: Tighter Analysis of Alternating", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 120, + 118, + 491, + 136 + ], + "spans": [ + { + "bbox": [ + 120, + 118, + 491, + 136 + ], + "score": 1.0, + "content": "Stochastic Gradient Methods for Bilevel Problems", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 120, + 176, + 250, + 211 + ], + "lines": [ + { + "bbox": [ + 157, + 174, + 214, + 190 + ], + "spans": [ + { + "bbox": [ + 157, + 174, + 214, + 190 + ], + "score": 1.0, + "content": "Tianyi Chen", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 120, + 188, + 251, + 202 + ], + "spans": [ + { + "bbox": [ + 120, + 188, + 251, + 202 + ], + "score": 1.0, + "content": "Rensselaer Polytechnic Institute", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 199, + 239, + 214 + ], + "spans": [ + { + "bbox": [ + 132, + 199, + 176, + 214 + ], + "score": 1.0, + "content": "chentianyi", + "type": "text" + }, + { + "bbox": [ + 177, + 200, + 194, + 211 + ], + "score": 0.41, + "content": "1 9 @", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 199, + 239, + 214 + ], + "score": 1.0, + "content": "gmail.com", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 271, + 176, + 360, + 211 + ], + "lines": [ + { + "bbox": [ + 289, + 175, + 344, + 189 + ], + "spans": [ + { + "bbox": [ + 289, + 175, + 344, + 189 + ], + "score": 1.0, + "content": "Yuejiao Sun", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 302, + 188, + 332, + 201 + ], + "spans": [ + { + "bbox": [ + 302, + 188, + 332, + 201 + ], + "score": 1.0, + "content": "UCLA", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 270, + 199, + 361, + 212 + ], + "spans": [ + { + "bbox": [ + 270, + 199, + 361, + 212 + ], + "score": 1.0, + "content": "sunyj@math.ucla.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 385, + 176, + 489, + 211 + ], + "lines": [ + { + "bbox": [ + 414, + 175, + 462, + 188 + ], + "spans": [ + { + "bbox": [ + 414, + 175, + 462, + 188 + ], + "score": 1.0, + "content": "Wotao Yin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 423, + 188, + 453, + 200 + ], + "spans": [ + { + "bbox": [ + 423, + 188, + 453, + 200 + ], + "score": 1.0, + "content": "UCLA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 385, + 200, + 490, + 211 + ], + "spans": [ + { + "bbox": [ + 385, + 200, + 490, + 211 + ], + "score": 1.0, + "content": "wotaoyin@math.ucla.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 283, + 239, + 328, + 252 + ], + "lines": [ + { + "bbox": [ + 281, + 237, + 330, + 253 + ], + "spans": [ + { + "bbox": [ + 281, + 237, + 330, + 253 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 142, + 263, + 469, + 449 + ], + "lines": [ + { + "bbox": [ + 142, + 263, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 142, + 263, + 470, + 275 + ], + "score": 1.0, + "content": "Stochastic nested optimization, including stochastic bilevel, min-max, and compo-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 274, + 471, + 286 + ], + "spans": [ + { + "bbox": [ + 142, + 274, + 471, + 286 + ], + "score": 1.0, + "content": "sitional optimization, is gaining popularity in many machine learning applications.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "While the three problems share a nested structure, existing works often treat them", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 296, + 469, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 469, + 308 + ], + "score": 1.0, + "content": "separately, thus developing problem-specific algorithms and analyses. Among", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "score": 1.0, + "content": "various exciting developments, simple SGD-type updates (potentially on multiple", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 317, + 469, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 330 + ], + "score": 1.0, + "content": "variables) are still prevalent in solving this class of nested problems, but they are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "score": 1.0, + "content": "believed to have a slower convergence rate than non-nested problems. This paper", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "unifies several SGD-type updates for stochastic nested problems into a single SGD", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 350, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 363 + ], + "score": 1.0, + "content": "approach that we term ALternating Stochastic gradient dEscenT (ALSET) method.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 361, + 470, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 470, + 374 + ], + "score": 1.0, + "content": "By leveraging the hidden smoothness of the problem, this paper presents a tighter", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "score": 1.0, + "content": "analysis of ALSET for stochastic nested problems. Under the new analysis, to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 188, + 395 + ], + "score": 1.0, + "content": "achieve an", + "type": "text" + }, + { + "bbox": [ + 188, + 385, + 194, + 393 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 383, + 400, + 395 + ], + "score": 1.0, + "content": "-stationary point of the nested problem, it requires", + "type": "text" + }, + { + "bbox": [ + 401, + 382, + 432, + 395 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 383, + 470, + 395 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 140, + 393, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 140, + 393, + 470, + 407 + ], + "score": 1.0, + "content": "in total. Under certain regularity conditions, applying our results to stochastic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 405, + 470, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 417 + ], + "score": 1.0, + "content": "compositional, min-max, and reinforcement learning problems either improves or", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 416, + 469, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 469, + 427 + ], + "score": 1.0, + "content": "matches the best-known sample complexity in the respective cases. Our results", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 427, + 469, + 439 + ], + "spans": [ + { + "bbox": [ + 142, + 427, + 469, + 439 + ], + "score": 1.0, + "content": "explain why simple SGD-type algorithms in stochastic nested problems all work", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 438, + 397, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 397, + 450 + ], + "score": 1.0, + "content": "very well in practice without the need for further modifications.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 467, + 190, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 506, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 506 + ], + "score": 1.0, + "content": "Stochastic gradient descent (SGD) methods [1] are prevalent in solving large-scale machine learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "problems. Often, SGD is applied to solve stochastic problems with a relatively simple structure.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 317, + 527 + ], + "score": 1.0, + "content": "Specifically, applying SGD to minimize the function", + "type": "text" + }, + { + "bbox": [ + 318, + 514, + 366, + 527 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\xi } ^ { - } \\left[ f ( x ; \\xi ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 514, + 435, + 527 + ], + "score": 1.0, + "content": "over the variable", + "type": "text" + }, + { + "bbox": [ + 435, + 514, + 466, + 524 + ], + "score": 0.9, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 514, + 506, + 527 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 524, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 186, + 540 + ], + "score": 1.0, + "content": "the iterative update", + "type": "text" + }, + { + "bbox": [ + 186, + 525, + 298, + 538 + ], + "score": 0.92, + "content": "\\boldsymbol { x } ^ { k + 1 } = \\boldsymbol { x } ^ { k } - \\alpha \\nabla f ( x ^ { k } ; \\xi ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 524, + 328, + 540 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 329, + 527, + 355, + 537 + ], + "score": 0.89, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 524, + 432, + 540 + ], + "score": 1.0, + "content": "is the stepsize and", + "type": "text" + }, + { + "bbox": [ + 432, + 525, + 479, + 538 + ], + "score": 0.93, + "content": "\\nabla f ( x ^ { k } ; \\xi ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 524, + 506, + 540 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 536, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 536, + 232, + 552 + ], + "score": 1.0, + "content": "stochastic gradient at the iterate", + "type": "text" + }, + { + "bbox": [ + 233, + 538, + 245, + 548 + ], + "score": 0.86, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 536, + 307, + 552 + ], + "score": 1.0, + "content": "and the sample", + "type": "text" + }, + { + "bbox": [ + 307, + 537, + 318, + 550 + ], + "score": 0.87, + "content": "\\xi ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 536, + 506, + 552 + ], + "score": 1.0, + "content": ". However, many problems in machine learning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 507, + 563 + ], + "score": 1.0, + "content": "today, such as meta learning, deep learning, hyper-parameter optimization, and reinforcement learning,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "go beyond the above simple minimization structure (termed the non-nested problem thereafter).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 571, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 506, + 584 + ], + "score": 1.0, + "content": "For example, the objective function may be the compositions of multiple functions, where each", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "composition may introduce an additional expectation [2]; and, the objective function may depend", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "on the solution of another optimization problem [3]. In these problems, how to apply SGD and the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 315, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 315, + 616 + ], + "score": 1.0, + "content": "efficiency of running SGD are not fully understood.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 503, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "To answer these questions, in this paper, we consider the following form of stochastic nested", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 453, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 453, + 644 + ], + "score": 1.0, + "content": "optimization problems, which is a generalization of the non-nested problems, given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 645, + 355, + 689 + ], + "lines": [ + { + "bbox": [ + 196, + 645, + 355, + 689 + ], + "spans": [ + { + "bbox": [ + 196, + 645, + 355, + 689 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\underset { x \\in \\mathbb { R } ^ { d } } { \\operatorname* { m i n } } } & { F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\left( x , y ^ { * } ( x ) ; \\xi \\right) \\right] } \\\\ { \\mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \\underset { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } { \\operatorname { a r g m i n } } \\ \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "36b9bee11e072ddf9e05191cc9cab5e73aa95757d1f339697eb289ccd9480ba8.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 196, + 645, + 355, + 659.6666666666666 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 196, + 659.6666666666666, + 355, + 674.3333333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 196, + 674.3333333333333, + 355, + 688.9999999999999 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 133, + 705 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 694, + 141, + 705 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 692, + 159, + 705 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 695, + 165, + 704 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 692, + 301, + 705 + ], + "score": 1.0, + "content": "are differentiable functions; and,", + "type": "text" + }, + { + "bbox": [ + 302, + 694, + 308, + 705 + ], + "score": 0.84, + "content": "\\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 692, + 326, + 705 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 694, + 334, + 705 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "are random variables. In the optimization", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 704, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 716 + ], + "score": 1.0, + "content": "literature [4–6], the problem (1) is referred to as the stochastic bilevel problem, where the upper-level", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 122, + 77, + 487, + 83 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 121, + 97, + 491, + 137 + ], + "lines": [ + { + "bbox": [ + 124, + 97, + 488, + 118 + ], + "spans": [ + { + "bbox": [ + 124, + 97, + 488, + 118 + ], + "score": 1.0, + "content": "Closing the Gap: Tighter Analysis of Alternating", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 120, + 118, + 491, + 136 + ], + "spans": [ + { + "bbox": [ + 120, + 118, + 491, + 136 + ], + "score": 1.0, + "content": "Stochastic Gradient Methods for Bilevel Problems", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 120, + 176, + 250, + 211 + ], + "lines": [ + { + "bbox": [ + 157, + 174, + 214, + 190 + ], + "spans": [ + { + "bbox": [ + 157, + 174, + 214, + 190 + ], + "score": 1.0, + "content": "Tianyi Chen", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 120, + 188, + 251, + 202 + ], + "spans": [ + { + "bbox": [ + 120, + 188, + 251, + 202 + ], + "score": 1.0, + "content": "Rensselaer Polytechnic Institute", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 199, + 239, + 214 + ], + "spans": [ + { + "bbox": [ + 132, + 199, + 176, + 214 + ], + "score": 1.0, + "content": "chentianyi", + "type": "text" + }, + { + "bbox": [ + 177, + 200, + 194, + 211 + ], + "score": 0.41, + "content": "1 9 @", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 199, + 239, + 214 + ], + "score": 1.0, + "content": "gmail.com", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 120, + 174, + 251, + 214 + ] + }, + { + "type": "list", + "bbox": [ + 271, + 176, + 360, + 211 + ], + "lines": [ + { + "bbox": [ + 289, + 175, + 344, + 189 + ], + "spans": [ + { + "bbox": [ + 289, + 175, + 344, + 189 + ], + "score": 1.0, + "content": "Yuejiao Sun", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 302, + 188, + 332, + 201 + ], + "spans": [ + { + "bbox": [ + 302, + 188, + 332, + 201 + ], + "score": 1.0, + "content": "UCLA", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 270, + 199, + 361, + 212 + ], + "spans": [ + { + "bbox": [ + 270, + 199, + 361, + 212 + ], + "score": 1.0, + "content": "sunyj@math.ucla.edu", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + } + ], + "index": 6, + "bbox_fs": [ + 270, + 175, + 361, + 212 + ] + }, + { + "type": "text", + "bbox": [ + 385, + 176, + 489, + 211 + ], + "lines": [ + { + "bbox": [ + 414, + 175, + 462, + 188 + ], + "spans": [ + { + "bbox": [ + 414, + 175, + 462, + 188 + ], + "score": 1.0, + "content": "Wotao Yin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 423, + 188, + 453, + 200 + ], + "spans": [ + { + "bbox": [ + 423, + 188, + 453, + 200 + ], + "score": 1.0, + "content": "UCLA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 385, + 200, + 490, + 211 + ], + "spans": [ + { + "bbox": [ + 385, + 200, + 490, + 211 + ], + "score": 1.0, + "content": "wotaoyin@math.ucla.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 385, + 175, + 490, + 211 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 239, + 328, + 252 + ], + "lines": [ + { + "bbox": [ + 281, + 237, + 330, + 253 + ], + "spans": [ + { + "bbox": [ + 281, + 237, + 330, + 253 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 142, + 263, + 469, + 449 + ], + "lines": [ + { + "bbox": [ + 142, + 263, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 142, + 263, + 470, + 275 + ], + "score": 1.0, + "content": "Stochastic nested optimization, including stochastic bilevel, min-max, and compo-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 274, + 471, + 286 + ], + "spans": [ + { + "bbox": [ + 142, + 274, + 471, + 286 + ], + "score": 1.0, + "content": "sitional optimization, is gaining popularity in many machine learning applications.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "While the three problems share a nested structure, existing works often treat them", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 296, + 469, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 469, + 308 + ], + "score": 1.0, + "content": "separately, thus developing problem-specific algorithms and analyses. Among", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "score": 1.0, + "content": "various exciting developments, simple SGD-type updates (potentially on multiple", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 317, + 469, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 330 + ], + "score": 1.0, + "content": "variables) are still prevalent in solving this class of nested problems, but they are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "score": 1.0, + "content": "believed to have a slower convergence rate than non-nested problems. This paper", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "unifies several SGD-type updates for stochastic nested problems into a single SGD", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 350, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 363 + ], + "score": 1.0, + "content": "approach that we term ALternating Stochastic gradient dEscenT (ALSET) method.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 361, + 470, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 470, + 374 + ], + "score": 1.0, + "content": "By leveraging the hidden smoothness of the problem, this paper presents a tighter", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 371, + 470, + 385 + ], + "score": 1.0, + "content": "analysis of ALSET for stochastic nested problems. Under the new analysis, to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 188, + 395 + ], + "score": 1.0, + "content": "achieve an", + "type": "text" + }, + { + "bbox": [ + 188, + 385, + 194, + 393 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 383, + 400, + 395 + ], + "score": 1.0, + "content": "-stationary point of the nested problem, it requires", + "type": "text" + }, + { + "bbox": [ + 401, + 382, + 432, + 395 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 383, + 470, + 395 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 140, + 393, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 140, + 393, + 470, + 407 + ], + "score": 1.0, + "content": "in total. Under certain regularity conditions, applying our results to stochastic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 405, + 470, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 417 + ], + "score": 1.0, + "content": "compositional, min-max, and reinforcement learning problems either improves or", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 416, + 469, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 469, + 427 + ], + "score": 1.0, + "content": "matches the best-known sample complexity in the respective cases. Our results", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 427, + 469, + 439 + ], + "spans": [ + { + "bbox": [ + 142, + 427, + 469, + 439 + ], + "score": 1.0, + "content": "explain why simple SGD-type algorithms in stochastic nested problems all work", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 438, + 397, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 397, + 450 + ], + "score": 1.0, + "content": "very well in practice without the need for further modifications.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20, + "bbox_fs": [ + 140, + 263, + 471, + 450 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 467, + 190, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 506, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 506 + ], + "score": 1.0, + "content": "Stochastic gradient descent (SGD) methods [1] are prevalent in solving large-scale machine learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "problems. Often, SGD is applied to solve stochastic problems with a relatively simple structure.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 317, + 527 + ], + "score": 1.0, + "content": "Specifically, applying SGD to minimize the function", + "type": "text" + }, + { + "bbox": [ + 318, + 514, + 366, + 527 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\xi } ^ { - } \\left[ f ( x ; \\xi ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 514, + 435, + 527 + ], + "score": 1.0, + "content": "over the variable", + "type": "text" + }, + { + "bbox": [ + 435, + 514, + 466, + 524 + ], + "score": 0.9, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 514, + 506, + 527 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 524, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 186, + 540 + ], + "score": 1.0, + "content": "the iterative update", + "type": "text" + }, + { + "bbox": [ + 186, + 525, + 298, + 538 + ], + "score": 0.92, + "content": "\\boldsymbol { x } ^ { k + 1 } = \\boldsymbol { x } ^ { k } - \\alpha \\nabla f ( x ^ { k } ; \\xi ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 524, + 328, + 540 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 329, + 527, + 355, + 537 + ], + "score": 0.89, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 524, + 432, + 540 + ], + "score": 1.0, + "content": "is the stepsize and", + "type": "text" + }, + { + "bbox": [ + 432, + 525, + 479, + 538 + ], + "score": 0.93, + "content": "\\nabla f ( x ^ { k } ; \\xi ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 524, + 506, + 540 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 536, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 536, + 232, + 552 + ], + "score": 1.0, + "content": "stochastic gradient at the iterate", + "type": "text" + }, + { + "bbox": [ + 233, + 538, + 245, + 548 + ], + "score": 0.86, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 536, + 307, + 552 + ], + "score": 1.0, + "content": "and the sample", + "type": "text" + }, + { + "bbox": [ + 307, + 537, + 318, + 550 + ], + "score": 0.87, + "content": "\\xi ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 536, + 506, + 552 + ], + "score": 1.0, + "content": ". However, many problems in machine learning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 507, + 563 + ], + "score": 1.0, + "content": "today, such as meta learning, deep learning, hyper-parameter optimization, and reinforcement learning,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "go beyond the above simple minimization structure (termed the non-nested problem thereafter).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 571, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 506, + 584 + ], + "score": 1.0, + "content": "For example, the objective function may be the compositions of multiple functions, where each", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "composition may introduce an additional expectation [2]; and, the objective function may depend", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "on the solution of another optimization problem [3]. In these problems, how to apply SGD and the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 315, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 315, + 616 + ], + "score": 1.0, + "content": "efficiency of running SGD are not fully understood.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 491, + 507, + 616 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 503, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "To answer these questions, in this paper, we consider the following form of stochastic nested", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 453, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 453, + 644 + ], + "score": 1.0, + "content": "optimization problems, which is a generalization of the non-nested problems, given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 620, + 505, + 644 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 645, + 355, + 689 + ], + "lines": [ + { + "bbox": [ + 196, + 645, + 355, + 689 + ], + "spans": [ + { + "bbox": [ + 196, + 645, + 355, + 689 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\underset { x \\in \\mathbb { R } ^ { d } } { \\operatorname* { m i n } } } & { F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\left( x , y ^ { * } ( x ) ; \\xi \\right) \\right] } \\\\ { \\mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \\underset { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } { \\operatorname { a r g m i n } } \\ \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "36b9bee11e072ddf9e05191cc9cab5e73aa95757d1f339697eb289ccd9480ba8.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 196, + 645, + 355, + 659.6666666666666 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 196, + 659.6666666666666, + 355, + 674.3333333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 196, + 674.3333333333333, + 355, + 688.9999999999999 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 133, + 705 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 694, + 141, + 705 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 692, + 159, + 705 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 695, + 165, + 704 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 692, + 301, + 705 + ], + "score": 1.0, + "content": "are differentiable functions; and,", + "type": "text" + }, + { + "bbox": [ + 302, + 694, + 308, + 705 + ], + "score": 0.84, + "content": "\\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 692, + 326, + 705 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 694, + 334, + 705 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "are random variables. In the optimization", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 704, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 716 + ], + "score": 1.0, + "content": "literature [4–6], the problem (1) is referred to as the stochastic bilevel problem, where the upper-level", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 71, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 434, + 85 + ], + "score": 1.0, + "content": "optimization problem depends on the solution of the lower-level optimization over", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 434, + 71, + 467, + 84 + ], + "score": 0.92, + "content": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 467, + 72, + 505, + 85 + ], + "score": 1.0, + "content": ", denoted", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 385, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 117, + 95 + ], + "score": 1.0, + "content": "as", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 118, + 84, + 141, + 96 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 142, + 83, + 351, + 95 + ], + "score": 1.0, + "content": ", which depends on the value of upper-level variable", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 351, + 83, + 381, + 94 + ], + "score": 0.92, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 382, + 83, + 385, + 95 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 692, + 505, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 434, + 85 + ], + "score": 1.0, + "content": "optimization problem depends on the solution of the lower-level optimization over", + "type": "text" + }, + { + "bbox": [ + 434, + 71, + 467, + 84 + ], + "score": 0.92, + "content": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 72, + 505, + 85 + ], + "score": 1.0, + "content": ", denoted", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 385, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 117, + 95 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 84, + 141, + 96 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 83, + 351, + 95 + ], + "score": 1.0, + "content": ", which depends on the value of upper-level variable", + "type": "text" + }, + { + "bbox": [ + 351, + 83, + 381, + 94 + ], + "score": 0.92, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 83, + 385, + 95 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "The stochastic bilevel nested problem (1) encompasses two popular formulations with the nested", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "structure: stochastic min-max problems and stochastic compositional problems. Therefore, results on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "the general nested problem (1) will also imply the results in the special cases. For example, if the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 192, + 146 + ], + "score": 1.0, + "content": "lower-level objective", + "type": "text" + }, + { + "bbox": [ + 193, + 135, + 199, + 144 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 132, + 372, + 146 + ], + "score": 1.0, + "content": "is the negative of the upper-level objective", + "type": "text" + }, + { + "bbox": [ + 372, + 133, + 379, + 144 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 132, + 401, + 146 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 401, + 132, + 502, + 145 + ], + "score": 0.92, + "content": "g ( x , y ; \\phi ) : = - \\bar { f } ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 132, + 506, + 146 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 416, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 416, + 157 + ], + "score": 1.0, + "content": "the stochastic bilevel problem (1) reduces to the stochastic min-max problem", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 162, + 454, + 183 + ], + "lines": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "spans": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "score": 0.9, + "content": "\\operatorname { I f } g ( x , y ; \\phi ) : = - f ( x , y ; \\xi ) \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } F ( x ) : = \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] .", + "type": "interline_equation", + "image_path": "c4cfeedc1e466e0aec4ff669f6b469cc4a2134aabc01ebe451fa1cf0fa948811.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 190, + 504, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "Motivated by applications in zero-sum games, adversarial learning and training GANs, significant", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 480, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 480, + 213 + ], + "score": 1.0, + "content": "efforts have been recently made for solving the stochastic min-max problem; see e.g., [7–11].", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 268, + 230 + ], + "score": 1.0, + "content": "For example, if the upper-level objective", + "type": "text" + }, + { + "bbox": [ + 269, + 217, + 276, + 228 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 216, + 359, + 230 + ], + "score": 1.0, + "content": "is only a function of", + "type": "text" + }, + { + "bbox": [ + 359, + 219, + 366, + 228 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 216, + 387, + 230 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 387, + 216, + 470, + 228 + ], + "score": 0.92, + "content": "f ( x , y ; \\xi ) : = f ( y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 216, + 505, + 230 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 191, + 240 + ], + "score": 1.0, + "content": "lower-level objective", + "type": "text" + }, + { + "bbox": [ + 191, + 230, + 198, + 239 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 227, + 300, + 240 + ], + "score": 1.0, + "content": "is a quadratic function of", + "type": "text" + }, + { + "bbox": [ + 301, + 230, + 307, + 240 + ], + "score": 0.77, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 227, + 328, + 240 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 329, + 228, + 445, + 240 + ], + "score": 0.88, + "content": "g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "with a smooth", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 141, + 250 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 141, + 239, + 149, + 249 + ], + "score": 0.81, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 239, + 160, + 250 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 160, + 240, + 167, + 249 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 239, + 238, + 250 + ], + "score": 1.0, + "content": ", then the variable", + "type": "text" + }, + { + "bbox": [ + 239, + 239, + 263, + 251 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "admits a closed-form solution, and thus the stochastic bilevel", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 385, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 385, + 262 + ], + "score": 1.0, + "content": "problem (1) reduces to the stochastic compositional problem [12–14]", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 266, + 466, + 288 + ], + "lines": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "spans": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "score": 0.91, + "content": "\\mathrm { I f } \\ g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 } \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } \\ F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\big ( \\mathbb { E } _ { \\phi } [ h ( x ; \\phi ) ] ; \\xi \\big ) \\right] .", + "type": "interline_equation", + "image_path": "d0cf1a3f94a49905cb848b0a4616cdd23538f7c56b5ab3eb9254d09ada427f99.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "Stochastic compositional problems in the form of (3) have been studied in the applications in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 488, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 488, + 318 + ], + "score": 1.0, + "content": "model-agnostic meta learning and policy evaluation in reinforcement learning; see e.g., [2, 15].", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "To solve the nested problem (1) by SGD, one natural solution is to apply alternating SGD updates on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 333, + 279, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 335, + 113, + 342 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 333, + 131, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 132, + 334, + 138, + 344 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 333, + 279, + 344 + ], + "score": 1.0, + "content": "based on their stochastic gradients", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 350, + 408, + 367 + ], + "lines": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "spans": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "score": 0.91, + "content": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } h _ { g } ^ { k } ~ \\mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }", + "type": "interline_equation", + "image_path": "bcb8cadc86c4aaa122e8cdcc5bf4d17b95784df4a34523321336f424fa37dbb0.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 373, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 134, + 388 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 374, + 146, + 388 + ], + "score": 0.9, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 374, + 306, + 388 + ], + "score": 1.0, + "content": "is the unbiased stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 306, + 374, + 373, + 387 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\phi } [ g ( x ^ { k } , y ^ { k } ; \\phi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 374, + 393, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 374, + 405, + 389 + ], + "score": 0.91, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "is the (possibly biased)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 192, + 401 + ], + "score": 1.0, + "content": "stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 192, + 388, + 219, + 400 + ], + "score": 0.92, + "content": "F ( x ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 388, + 242, + 401 + ], + "score": 1.0, + "content": "; and,", + "type": "text" + }, + { + "bbox": [ + 243, + 389, + 254, + 400 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 388, + 271, + 401 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 390, + 284, + 399 + ], + "score": 0.86, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "are the stepsizes. A key challenge of running (4) for the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 383, + 411 + ], + "score": 1.0, + "content": "nested problem is that (stochastic) gradient of the upper-level variable", + "type": "text" + }, + { + "bbox": [ + 384, + 401, + 390, + 409 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "is prohibitively expensive to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 416, + 424 + ], + "score": 1.0, + "content": "compute. As we will show later, computing an unbiased stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 416, + 411, + 438, + 423 + ], + "score": 0.92, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "requires solving", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 421, + 301, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 273, + 435 + ], + "score": 1.0, + "content": "the lower-level problem exactly to obtain", + "type": "text" + }, + { + "bbox": [ + 273, + 421, + 297, + 433 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 421, + 301, + 435 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 235, + 452 + ], + "score": 1.0, + "content": "An accurate stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 235, + 438, + 248, + 452 + ], + "score": 0.91, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "can be obtained in roughly three ways. One way is to run SGD", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 150, + 465 + ], + "score": 1.0, + "content": "updates on", + "type": "text" + }, + { + "bbox": [ + 151, + 451, + 162, + 464 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 451, + 285, + 465 + ], + "score": 1.0, + "content": "multiple times before updating", + "type": "text" + }, + { + "bbox": [ + 285, + 451, + 297, + 462 + ], + "score": 0.87, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 451, + 506, + 465 + ], + "score": 1.0, + "content": ", which yields a double-loop algorithm. To guarantee", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 408, + 477 + ], + "score": 1.0, + "content": "convergence, it typically requires either the increasing number of lower-level", + "type": "text" + }, + { + "bbox": [ + 408, + 465, + 415, + 474 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 462, + 505, + 477 + ], + "score": 1.0, + "content": "-update or the growing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 472, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 104, + 472, + 235, + 489 + ], + "score": 1.0, + "content": "number of batch size to estimate", + "type": "text" + }, + { + "bbox": [ + 236, + 474, + 248, + 487 + ], + "score": 0.9, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 472, + 436, + 489 + ], + "score": 1.0, + "content": "; see e.g., [16, 17]. The second way is to update", + "type": "text" + }, + { + "bbox": [ + 436, + 474, + 447, + 486 + ], + "score": 0.88, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 472, + 506, + 489 + ], + "score": 1.0, + "content": "in a timescale", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 180, + 501 + ], + "score": 1.0, + "content": "faster than that of", + "type": "text" + }, + { + "bbox": [ + 180, + 486, + 191, + 497 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 485, + 222, + 501 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 222, + 487, + 234, + 497 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 485, + 370, + 501 + ], + "score": 1.0, + "content": "is relatively static with respect to", + "type": "text" + }, + { + "bbox": [ + 370, + 487, + 381, + 499 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 485, + 403, + 501 + ], + "score": 1.0, + "content": "; i.e.,", + "type": "text" + }, + { + "bbox": [ + 403, + 487, + 486, + 500 + ], + "score": 0.91, + "content": "\\scriptstyle \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 485, + 505, + 501 + ], + "score": 1.0, + "content": "; see", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 312, + 513 + ], + "score": 1.0, + "content": "e.g., [18]. The third way is to modify the direction", + "type": "text" + }, + { + "bbox": [ + 312, + 498, + 324, + 513 + ], + "score": 0.88, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 498, + 336, + 513 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 336, + 498, + 348, + 511 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "by incorporating additional correction", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 507, + 524 + ], + "score": 1.0, + "content": "term, which adds extra computation burden; see e.g., [19]. At a high level, these modifications either", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 522, + 495, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 495, + 533 + ], + "score": 1.0, + "content": "deviate from the lightweight implementation of SGD or sacrifice the sample complexity of SGD.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "To this end, the main goal of this paper is to study the efficiency of running the vanilla alternating", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 549, + 484, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 484, + 561 + ], + "score": 1.0, + "content": "SGD (4) for the nested problem (1) and its implications on the special problem classes (2)-(3).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 184, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 185, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 185, + 587 + ], + "score": 1.0, + "content": "1.1 Main results", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "This paper analyzes a unifying algorithm for the stochastic bilevel problems that runs SGD on each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "variable alternatingly. We provide sample complexity that matches the complexity of SGD for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "single-level stochastic problems. Our results explain why SGD-type algorithms in stochastic bilevel,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "score": 1.0, + "content": "min-max, and compositional problems work very well in practice without modifications, including", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 355, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 355, + 653 + ], + "score": 1.0, + "content": "correction, increasing batch size, and two-timescale stepsizes.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 441, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 443, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 443, + 668 + ], + "score": 1.0, + "content": "In the context of existing methods, our contributions can be summarized as follows.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 123, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 122, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 122, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "C1) We connect three different classes of stochastic nested optimization problems (stochastic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 141, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 141, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "compositional, min-max, and bilevel optimization), and unify three popular SGD-type up-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 141, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "dates for the respective problems into a single SGD-type method. We call it the ALternating", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 142, + 711, + 333, + 723 + ], + "spans": [ + { + "bbox": [ + 142, + 711, + 333, + 723 + ], + "score": 1.0, + "content": "Stochastic gradient dEscenT (ALSET) method.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 95 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 71, + 505, + 96 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "The stochastic bilevel nested problem (1) encompasses two popular formulations with the nested", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "structure: stochastic min-max problems and stochastic compositional problems. Therefore, results on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "the general nested problem (1) will also imply the results in the special cases. For example, if the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 192, + 146 + ], + "score": 1.0, + "content": "lower-level objective", + "type": "text" + }, + { + "bbox": [ + 193, + 135, + 199, + 144 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 132, + 372, + 146 + ], + "score": 1.0, + "content": "is the negative of the upper-level objective", + "type": "text" + }, + { + "bbox": [ + 372, + 133, + 379, + 144 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 132, + 401, + 146 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 401, + 132, + 502, + 145 + ], + "score": 0.92, + "content": "g ( x , y ; \\phi ) : = - \\bar { f } ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 132, + 506, + 146 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 416, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 416, + 157 + ], + "score": 1.0, + "content": "the stochastic bilevel problem (1) reduces to the stochastic min-max problem", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 100, + 506, + 157 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 162, + 454, + 183 + ], + "lines": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "spans": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "score": 0.9, + "content": "\\operatorname { I f } g ( x , y ; \\phi ) : = - f ( x , y ; \\xi ) \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } F ( x ) : = \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] .", + "type": "interline_equation", + "image_path": "c4cfeedc1e466e0aec4ff669f6b469cc4a2134aabc01ebe451fa1cf0fa948811.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 157, + 162, + 454, + 183 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 190, + 504, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "Motivated by applications in zero-sum games, adversarial learning and training GANs, significant", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 480, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 480, + 213 + ], + "score": 1.0, + "content": "efforts have been recently made for solving the stochastic min-max problem; see e.g., [7–11].", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 190, + 505, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 268, + 230 + ], + "score": 1.0, + "content": "For example, if the upper-level objective", + "type": "text" + }, + { + "bbox": [ + 269, + 217, + 276, + 228 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 216, + 359, + 230 + ], + "score": 1.0, + "content": "is only a function of", + "type": "text" + }, + { + "bbox": [ + 359, + 219, + 366, + 228 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 216, + 387, + 230 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 387, + 216, + 470, + 228 + ], + "score": 0.92, + "content": "f ( x , y ; \\xi ) : = f ( y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 216, + 505, + 230 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 191, + 240 + ], + "score": 1.0, + "content": "lower-level objective", + "type": "text" + }, + { + "bbox": [ + 191, + 230, + 198, + 239 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 227, + 300, + 240 + ], + "score": 1.0, + "content": "is a quadratic function of", + "type": "text" + }, + { + "bbox": [ + 301, + 230, + 307, + 240 + ], + "score": 0.77, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 227, + 328, + 240 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 329, + 228, + 445, + 240 + ], + "score": 0.88, + "content": "g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "with a smooth", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 141, + 250 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 141, + 239, + 149, + 249 + ], + "score": 0.81, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 239, + 160, + 250 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 160, + 240, + 167, + 249 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 239, + 238, + 250 + ], + "score": 1.0, + "content": ", then the variable", + "type": "text" + }, + { + "bbox": [ + 239, + 239, + 263, + 251 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "admits a closed-form solution, and thus the stochastic bilevel", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 385, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 385, + 262 + ], + "score": 1.0, + "content": "problem (1) reduces to the stochastic compositional problem [12–14]", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 216, + 505, + 262 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 266, + 466, + 288 + ], + "lines": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "spans": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "score": 0.91, + "content": "\\mathrm { I f } \\ g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 } \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } \\ F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\big ( \\mathbb { E } _ { \\phi } [ h ( x ; \\phi ) ] ; \\xi \\big ) \\right] .", + "type": "interline_equation", + "image_path": "d0cf1a3f94a49905cb848b0a4616cdd23538f7c56b5ab3eb9254d09ada427f99.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 144, + 266, + 466, + 288 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "Stochastic compositional problems in the form of (3) have been studied in the applications in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 488, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 488, + 318 + ], + "score": 1.0, + "content": "model-agnostic meta learning and policy evaluation in reinforcement learning; see e.g., [2, 15].", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 293, + 505, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "To solve the nested problem (1) by SGD, one natural solution is to apply alternating SGD updates on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 333, + 279, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 335, + 113, + 342 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 333, + 131, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 132, + 334, + 138, + 344 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 333, + 279, + 344 + ], + "score": 1.0, + "content": "based on their stochastic gradients", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 320, + 505, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 350, + 408, + 367 + ], + "lines": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "spans": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "score": 0.91, + "content": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } h _ { g } ^ { k } ~ \\mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }", + "type": "interline_equation", + "image_path": "bcb8cadc86c4aaa122e8cdcc5bf4d17b95784df4a34523321336f424fa37dbb0.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 203, + 350, + 408, + 367 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 373, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 134, + 388 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 374, + 146, + 388 + ], + "score": 0.9, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 374, + 306, + 388 + ], + "score": 1.0, + "content": "is the unbiased stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 306, + 374, + 373, + 387 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\phi } [ g ( x ^ { k } , y ^ { k } ; \\phi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 374, + 393, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 374, + 405, + 389 + ], + "score": 0.91, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "is the (possibly biased)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 192, + 401 + ], + "score": 1.0, + "content": "stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 192, + 388, + 219, + 400 + ], + "score": 0.92, + "content": "F ( x ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 388, + 242, + 401 + ], + "score": 1.0, + "content": "; and,", + "type": "text" + }, + { + "bbox": [ + 243, + 389, + 254, + 400 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 388, + 271, + 401 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 390, + 284, + 399 + ], + "score": 0.86, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "are the stepsizes. A key challenge of running (4) for the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 383, + 411 + ], + "score": 1.0, + "content": "nested problem is that (stochastic) gradient of the upper-level variable", + "type": "text" + }, + { + "bbox": [ + 384, + 401, + 390, + 409 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "is prohibitively expensive to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 416, + 424 + ], + "score": 1.0, + "content": "compute. As we will show later, computing an unbiased stochastic gradient of", + "type": "text" + }, + { + "bbox": [ + 416, + 411, + 438, + 423 + ], + "score": 0.92, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "requires solving", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 421, + 301, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 273, + 435 + ], + "score": 1.0, + "content": "the lower-level problem exactly to obtain", + "type": "text" + }, + { + "bbox": [ + 273, + 421, + 297, + 433 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 421, + 301, + 435 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 374, + 506, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 235, + 452 + ], + "score": 1.0, + "content": "An accurate stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 235, + 438, + 248, + 452 + ], + "score": 0.91, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "can be obtained in roughly three ways. One way is to run SGD", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 150, + 465 + ], + "score": 1.0, + "content": "updates on", + "type": "text" + }, + { + "bbox": [ + 151, + 451, + 162, + 464 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 451, + 285, + 465 + ], + "score": 1.0, + "content": "multiple times before updating", + "type": "text" + }, + { + "bbox": [ + 285, + 451, + 297, + 462 + ], + "score": 0.87, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 451, + 506, + 465 + ], + "score": 1.0, + "content": ", which yields a double-loop algorithm. To guarantee", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 408, + 477 + ], + "score": 1.0, + "content": "convergence, it typically requires either the increasing number of lower-level", + "type": "text" + }, + { + "bbox": [ + 408, + 465, + 415, + 474 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 462, + 505, + 477 + ], + "score": 1.0, + "content": "-update or the growing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 472, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 104, + 472, + 235, + 489 + ], + "score": 1.0, + "content": "number of batch size to estimate", + "type": "text" + }, + { + "bbox": [ + 236, + 474, + 248, + 487 + ], + "score": 0.9, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 472, + 436, + 489 + ], + "score": 1.0, + "content": "; see e.g., [16, 17]. The second way is to update", + "type": "text" + }, + { + "bbox": [ + 436, + 474, + 447, + 486 + ], + "score": 0.88, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 472, + 506, + 489 + ], + "score": 1.0, + "content": "in a timescale", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 180, + 501 + ], + "score": 1.0, + "content": "faster than that of", + "type": "text" + }, + { + "bbox": [ + 180, + 486, + 191, + 497 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 485, + 222, + 501 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 222, + 487, + 234, + 497 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 485, + 370, + 501 + ], + "score": 1.0, + "content": "is relatively static with respect to", + "type": "text" + }, + { + "bbox": [ + 370, + 487, + 381, + 499 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 485, + 403, + 501 + ], + "score": 1.0, + "content": "; i.e.,", + "type": "text" + }, + { + "bbox": [ + 403, + 487, + 486, + 500 + ], + "score": 0.91, + "content": "\\scriptstyle \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 485, + 505, + 501 + ], + "score": 1.0, + "content": "; see", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 312, + 513 + ], + "score": 1.0, + "content": "e.g., [18]. The third way is to modify the direction", + "type": "text" + }, + { + "bbox": [ + 312, + 498, + 324, + 513 + ], + "score": 0.88, + "content": "h _ { g } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 498, + 336, + 513 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 336, + 498, + 348, + 511 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "by incorporating additional correction", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 507, + 524 + ], + "score": 1.0, + "content": "term, which adds extra computation burden; see e.g., [19]. At a high level, these modifications either", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 522, + 495, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 495, + 533 + ], + "score": 1.0, + "content": "deviate from the lightweight implementation of SGD or sacrifice the sample complexity of SGD.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 438, + 507, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "To this end, the main goal of this paper is to study the efficiency of running the vanilla alternating", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 549, + 484, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 484, + 561 + ], + "score": 1.0, + "content": "SGD (4) for the nested problem (1) and its implications on the special problem classes (2)-(3).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 536, + 506, + 561 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 184, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 185, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 185, + 587 + ], + "score": 1.0, + "content": "1.1 Main results", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "This paper analyzes a unifying algorithm for the stochastic bilevel problems that runs SGD on each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "variable alternatingly. We provide sample complexity that matches the complexity of SGD for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "single-level stochastic problems. Our results explain why SGD-type algorithms in stochastic bilevel,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "score": 1.0, + "content": "min-max, and compositional problems work very well in practice without modifications, including", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 355, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 355, + 653 + ], + "score": 1.0, + "content": "correction, increasing batch size, and two-timescale stepsizes.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 595, + 506, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 441, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 443, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 443, + 668 + ], + "score": 1.0, + "content": "In the context of existing methods, our contributions can be summarized as follows.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 654, + 443, + 668 + ] + }, + { + "type": "text", + "bbox": [ + 123, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 122, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 122, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "C1) We connect three different classes of stochastic nested optimization problems (stochastic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 141, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 141, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "compositional, min-max, and bilevel optimization), and unify three popular SGD-type up-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 141, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "dates for the respective problems into a single SGD-type method. We call it the ALternating", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 142, + 711, + 333, + 723 + ], + "spans": [ + { + "bbox": [ + 142, + 711, + 333, + 723 + ], + "score": 1.0, + "content": "Stochastic gradient dEscenT (ALSET) method.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 122, + 678, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 73, + 513, + 135 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 73, + 513, + 135 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 73, + 513, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 513, + 135 + ], + "score": 0.978, + "html": "
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
", + "type": "table", + "image_path": "174a2cf9e3fffe873c1d66d21f7a0d7d0d76cbe325b709aeb78d391005bf5402.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 73, + 513, + 93.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 93.66666666666667, + 513, + 114.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 114.33333333333334, + 513, + 135.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 140, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Table 1: Sample complexity of stochastic bilevel algorithms (BSA in [16], TTSA in [18], stocBiO in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 397, + 164 + ], + "score": 1.0, + "content": "[17], STABLE in [19], SUSTAIN in [25], RSVRB in [26]) to achieve an", + "type": "text" + }, + { + "bbox": [ + 397, + 154, + 402, + 161 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 150, + 479, + 164 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 480, + 152, + 501, + 163 + ], + "score": 0.9, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 150, + 506, + 164 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 158, + 178 + ], + "score": 1.0, + "content": "the notation", + "type": "text" + }, + { + "bbox": [ + 159, + 163, + 181, + 177 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { O } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 163, + 258, + 178 + ], + "score": 1.0, + "content": "hides the terms of", + "type": "text" + }, + { + "bbox": [ + 259, + 164, + 289, + 176 + ], + "score": 0.84, + "content": "\\log \\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 163, + 345, + 178 + ], + "score": 1.0, + "content": "; the notation", + "type": "text" + }, + { + "bbox": [ + 345, + 165, + 357, + 174 + ], + "score": 0.85, + "content": "\\kappa ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 163, + 497, + 178 + ], + "score": 1.0, + "content": "denotes a polynomial function of", + "type": "text" + }, + { + "bbox": [ + 497, + 169, + 504, + 174 + ], + "score": 0.74, + "content": "\\kappa", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 175, + 348, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 206, + 188 + ], + "score": 1.0, + "content": "since the dependence on", + "type": "text" + }, + { + "bbox": [ + 206, + 178, + 213, + 185 + ], + "score": 0.76, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 175, + 348, + 188 + ], + "score": 1.0, + "content": "is not explicit in [18, 19, 25, 26].", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 121, + 201, + 505, + 341 + ], + "lines": [ + { + "bbox": [ + 122, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 122, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "C2) Under the same assumptions made in most of the previous work, we discover that the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 506, + 225 + ], + "score": 1.0, + "content": "solution of the lower-level problem is smooth – a property that is overlooked by the previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "analyses. By leveraging the hidden smoothness, we present a tighter analysis of ALSET for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 431, + 247 + ], + "score": 1.0, + "content": "the stochastic bilevel problems. Under the new analysis, to achieve an", + "type": "text" + }, + { + "bbox": [ + 432, + 236, + 437, + 244 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "-stationary point", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 303, + 258 + ], + "score": 1.0, + "content": "of the nested problem, ALSET requires", + "type": "text" + }, + { + "bbox": [ + 304, + 245, + 335, + 258 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 245, + 465, + 258 + ], + "score": 1.0, + "content": "samples in total, rather than the", + "type": "text" + }, + { + "bbox": [ + 465, + 245, + 505, + 258 + ], + "score": 0.92, + "content": "\\mathcal { O } \\dot { ( \\epsilon ^ { - 5 / 2 } ) }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 258, + 320, + 270 + ], + "spans": [ + { + "bbox": [ + 142, + 258, + 320, + 270 + ], + "score": 1.0, + "content": "sample complexity in the existing literature.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 123, + 272, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 123, + 272, + 505, + 286 + ], + "score": 1.0, + "content": "C3) We further customize the analysis to the two special cases – the compositional and min-max", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 284, + 507, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 507, + 297 + ], + "score": 1.0, + "content": "problems, and establish the improved sample complexity relative to that in the literature.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 294, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 506, + 308 + ], + "score": 1.0, + "content": "We apply a new analysis to the celebrated actor-critic method for reinforcement learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 307, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 142, + 307, + 432, + 318 + ], + "score": 1.0, + "content": "problems. Under some regularity conditions, we show that, to achieve an", + "type": "text" + }, + { + "bbox": [ + 433, + 308, + 438, + 316 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 307, + 506, + 318 + ], + "score": 1.0, + "content": "-stationary point,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 142, + 316, + 322, + 330 + ], + "score": 1.0, + "content": "the single-loop actor-critic method requires", + "type": "text" + }, + { + "bbox": [ + 322, + 316, + 354, + 329 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "samples with i.i.d. sampling, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 389, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 281, + 343 + ], + "score": 1.0, + "content": "improves the best-known result of", + "type": "text" + }, + { + "bbox": [ + 281, + 328, + 320, + 341 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 327, + 389, + 343 + ], + "score": 1.0, + "content": "in the literature.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 216, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 217, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 217, + 368 + ], + "score": 1.0, + "content": "1.2 Other related works", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 485, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 486, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 486, + 389 + ], + "score": 1.0, + "content": "To put our work in context, we review prior art that we group in the following three categories.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "Stochastic bilevel optimization. We can trace the study of bilevel optimization to the 1950s [20].", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "Many recent efforts have been made to solve the bilevel problems. One successful approach is to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "reformulate the bilevel problem as a single-level problem by replacing the lower-level problem by its", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "optimality conditions [4, 5]. Recently, gradient-based methods for bilevel optimization have gained", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "popularity. They iteratively approximate the (stochastic) gradient of the upper-level problem either", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "in a forward or backward manner [21, 3, 22, 23]. Recent work has also studied the case where the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 339, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 339, + 470 + ], + "score": 1.0, + "content": "lower-level problem does not have a unique solution [24].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "The non-asymptotic analysis of bilevel optimization algorithms has been recently studied in some pi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "oneering works, e.g., [16, 18, 17], just to name a few. In both [16, 17], bilevel stochastic optimization", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 431, + 510 + ], + "score": 1.0, + "content": "algorithms have been developed that run in a double-loop manner. To achieve an", + "type": "text" + }, + { + "bbox": [ + 431, + 498, + 437, + 506 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "-stationary point,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 262, + 520 + ], + "score": 1.0, + "content": "they only need the sample complexities", + "type": "text" + }, + { + "bbox": [ + 262, + 506, + 294, + 519 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 506, + 312, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 506, + 343, + 519 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 506, + 506, + 520 + ], + "score": 1.0, + "content": ", respectively, comparable to that of SGD", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "for the single-level case. Recently, a single-loop two-timescale stochastic approximation algorithm", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "has been developed in [18] for the bilevel problem (1). Due to the nature of the two-timescale update,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 538, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 289, + 554 + ], + "score": 1.0, + "content": "it incurs the sub-optimal sample complexity", + "type": "text" + }, + { + "bbox": [ + 290, + 540, + 329, + 552 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 538, + 506, + 554 + ], + "score": 1.0, + "content": ". A single-loop single-timescale stochastic", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "bilevel optimization method has been recently developed in [19]. While the method can achieve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 200, + 576 + ], + "score": 1.0, + "content": "the sample complexity", + "type": "text" + }, + { + "bbox": [ + 201, + 562, + 232, + 574 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 561, + 330, + 576 + ], + "score": 1.0, + "content": ", the resultant update on", + "type": "text" + }, + { + "bbox": [ + 330, + 564, + 337, + 574 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "needs extra matrix projection, which can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 495, + 586 + ], + "score": 1.0, + "content": "be costly. Very recently, the momentum-based acceleration has been incorporated into both the", + "type": "text" + }, + { + "bbox": [ + 495, + 575, + 502, + 583 + ], + "score": 0.55, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 124, + 596 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 586, + 131, + 596 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 584, + 506, + 596 + ], + "score": 1.0, + "content": "-updates in [25, 26] and also in [27] after our submission to the conference, where the new", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 339, + 609 + ], + "score": 1.0, + "content": "algorithms therein enjoy an improved sample complexity", + "type": "text" + }, + { + "bbox": [ + 339, + 595, + 378, + 608 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 3 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 595, + 506, + 609 + ], + "score": 1.0, + "content": ". However, these results cannot", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 147, + 621 + ], + "score": 1.0, + "content": "imply the", + "type": "text" + }, + { + "bbox": [ + 148, + 606, + 179, + 619 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "sample complexity of the alternating SGD update (4), and are orthogonal to our", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 415, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 415, + 630 + ], + "score": 1.0, + "content": "results. A comparison of our results with prior work can be found in Table 1.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "Stochastic min-max optimization. In the context of min-max problems, the alternating version of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "the stochastic gradient descent ascent (GDA) method can be viewed as the alternating SGD updates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "(4) for the special nested problem (2). To mitigate the cycling behavior of GDA for convex-concave", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "min-max problems, several variants have been developed by incorporating the idea of optimism;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "see e.g., [7, 8, 11, 29]. The analysis of stochastic GDA in the nonconvex-strongly concave setting", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "is closely related to this paper; e.g., [9, 10, 30, 28]. Specifically, for stochastic GDA (SGDA), the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 107, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 699, + 138, + 712 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 698, + 455, + 713 + ], + "score": 1.0, + "content": "sample complexity has been established in [28] under an increasing batch size", + "type": "text" + }, + { + "bbox": [ + 455, + 700, + 487, + 712 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 698, + 505, + 713 + ], + "score": 1.0, + "content": ". As", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 260, + 723 + ], + "score": 1.0, + "content": "highlighted in [28], how to achieve the", + "type": "text" + }, + { + "bbox": [ + 260, + 711, + 291, + 723 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 710, + 406, + 723 + ], + "score": 1.0, + "content": "sample complexity under an", + "type": "text" + }, + { + "bbox": [ + 406, + 711, + 428, + 723 + ], + "score": 0.9, + "content": "\\mathcal { O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "constant batch size", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 73, + 513, + 135 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 73, + 513, + 135 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 73, + 513, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 513, + 135 + ], + "score": 0.978, + "html": "
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
", + "type": "table", + "image_path": "174a2cf9e3fffe873c1d66d21f7a0d7d0d76cbe325b709aeb78d391005bf5402.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 73, + 513, + 93.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 93.66666666666667, + 513, + 114.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 114.33333333333334, + 513, + 135.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 140, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Table 1: Sample complexity of stochastic bilevel algorithms (BSA in [16], TTSA in [18], stocBiO in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 397, + 164 + ], + "score": 1.0, + "content": "[17], STABLE in [19], SUSTAIN in [25], RSVRB in [26]) to achieve an", + "type": "text" + }, + { + "bbox": [ + 397, + 154, + 402, + 161 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 150, + 479, + 164 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 480, + 152, + 501, + 163 + ], + "score": 0.9, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 150, + 506, + 164 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 158, + 178 + ], + "score": 1.0, + "content": "the notation", + "type": "text" + }, + { + "bbox": [ + 159, + 163, + 181, + 177 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { O } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 163, + 258, + 178 + ], + "score": 1.0, + "content": "hides the terms of", + "type": "text" + }, + { + "bbox": [ + 259, + 164, + 289, + 176 + ], + "score": 0.84, + "content": "\\log \\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 163, + 345, + 178 + ], + "score": 1.0, + "content": "; the notation", + "type": "text" + }, + { + "bbox": [ + 345, + 165, + 357, + 174 + ], + "score": 0.85, + "content": "\\kappa ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 163, + 497, + 178 + ], + "score": 1.0, + "content": "denotes a polynomial function of", + "type": "text" + }, + { + "bbox": [ + 497, + 169, + 504, + 174 + ], + "score": 0.74, + "content": "\\kappa", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 175, + 348, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 206, + 188 + ], + "score": 1.0, + "content": "since the dependence on", + "type": "text" + }, + { + "bbox": [ + 206, + 178, + 213, + 185 + ], + "score": 0.76, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 175, + 348, + 188 + ], + "score": 1.0, + "content": "is not explicit in [18, 19, 25, 26].", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 140, + 506, + 188 + ] + }, + { + "type": "list", + "bbox": [ + 121, + 201, + 505, + 341 + ], + "lines": [ + { + "bbox": [ + 122, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 122, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "C2) Under the same assumptions made in most of the previous work, we discover that the", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 506, + 225 + ], + "score": 1.0, + "content": "solution of the lower-level problem is smooth – a property that is overlooked by the previous", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "analyses. By leveraging the hidden smoothness, we present a tighter analysis of ALSET for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 431, + 247 + ], + "score": 1.0, + "content": "the stochastic bilevel problems. Under the new analysis, to achieve an", + "type": "text" + }, + { + "bbox": [ + 432, + 236, + 437, + 244 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "-stationary point", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 303, + 258 + ], + "score": 1.0, + "content": "of the nested problem, ALSET requires", + "type": "text" + }, + { + "bbox": [ + 304, + 245, + 335, + 258 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 245, + 465, + 258 + ], + "score": 1.0, + "content": "samples in total, rather than the", + "type": "text" + }, + { + "bbox": [ + 465, + 245, + 505, + 258 + ], + "score": 0.92, + "content": "\\mathcal { O } \\dot { ( \\epsilon ^ { - 5 / 2 } ) }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 258, + 320, + 270 + ], + "spans": [ + { + "bbox": [ + 142, + 258, + 320, + 270 + ], + "score": 1.0, + "content": "sample complexity in the existing literature.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 123, + 272, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 123, + 272, + 505, + 286 + ], + "score": 1.0, + "content": "C3) We further customize the analysis to the two special cases – the compositional and min-max", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 284, + 507, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 507, + 297 + ], + "score": 1.0, + "content": "problems, and establish the improved sample complexity relative to that in the literature.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 294, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 506, + 308 + ], + "score": 1.0, + "content": "We apply a new analysis to the celebrated actor-critic method for reinforcement learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 307, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 142, + 307, + 432, + 318 + ], + "score": 1.0, + "content": "problems. Under some regularity conditions, we show that, to achieve an", + "type": "text" + }, + { + "bbox": [ + 433, + 308, + 438, + 316 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 307, + 506, + 318 + ], + "score": 1.0, + "content": "-stationary point,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 142, + 316, + 322, + 330 + ], + "score": 1.0, + "content": "the single-loop actor-critic method requires", + "type": "text" + }, + { + "bbox": [ + 322, + 316, + 354, + 329 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "samples with i.i.d. sampling, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 327, + 389, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 281, + 343 + ], + "score": 1.0, + "content": "improves the best-known result of", + "type": "text" + }, + { + "bbox": [ + 281, + 328, + 320, + 341 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 327, + 389, + 343 + ], + "score": 1.0, + "content": "in the literature.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + } + ], + "index": 12.5, + "bbox_fs": [ + 122, + 201, + 507, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 216, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 217, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 217, + 368 + ], + "score": 1.0, + "content": "1.2 Other related works", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 485, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 486, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 486, + 389 + ], + "score": 1.0, + "content": "To put our work in context, we review prior art that we group in the following three categories.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 374, + 486, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "Stochastic bilevel optimization. We can trace the study of bilevel optimization to the 1950s [20].", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "Many recent efforts have been made to solve the bilevel problems. One successful approach is to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "reformulate the bilevel problem as a single-level problem by replacing the lower-level problem by its", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "optimality conditions [4, 5]. Recently, gradient-based methods for bilevel optimization have gained", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "popularity. They iteratively approximate the (stochastic) gradient of the upper-level problem either", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "in a forward or backward manner [21, 3, 22, 23]. Recent work has also studied the case where the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 339, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 339, + 470 + ], + "score": 1.0, + "content": "lower-level problem does not have a unique solution [24].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 392, + 506, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "The non-asymptotic analysis of bilevel optimization algorithms has been recently studied in some pi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "oneering works, e.g., [16, 18, 17], just to name a few. In both [16, 17], bilevel stochastic optimization", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 431, + 510 + ], + "score": 1.0, + "content": "algorithms have been developed that run in a double-loop manner. To achieve an", + "type": "text" + }, + { + "bbox": [ + 431, + 498, + 437, + 506 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "-stationary point,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 262, + 520 + ], + "score": 1.0, + "content": "they only need the sample complexities", + "type": "text" + }, + { + "bbox": [ + 262, + 506, + 294, + 519 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 506, + 312, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 506, + 343, + 519 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 506, + 506, + 520 + ], + "score": 1.0, + "content": ", respectively, comparable to that of SGD", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "for the single-level case. Recently, a single-loop two-timescale stochastic approximation algorithm", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "has been developed in [18] for the bilevel problem (1). Due to the nature of the two-timescale update,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 538, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 289, + 554 + ], + "score": 1.0, + "content": "it incurs the sub-optimal sample complexity", + "type": "text" + }, + { + "bbox": [ + 290, + 540, + 329, + 552 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 538, + 506, + 554 + ], + "score": 1.0, + "content": ". A single-loop single-timescale stochastic", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "bilevel optimization method has been recently developed in [19]. While the method can achieve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 200, + 576 + ], + "score": 1.0, + "content": "the sample complexity", + "type": "text" + }, + { + "bbox": [ + 201, + 562, + 232, + 574 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 561, + 330, + 576 + ], + "score": 1.0, + "content": ", the resultant update on", + "type": "text" + }, + { + "bbox": [ + 330, + 564, + 337, + 574 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "needs extra matrix projection, which can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 495, + 586 + ], + "score": 1.0, + "content": "be costly. Very recently, the momentum-based acceleration has been incorporated into both the", + "type": "text" + }, + { + "bbox": [ + 495, + 575, + 502, + 583 + ], + "score": 0.55, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 124, + 596 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 586, + 131, + 596 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 584, + 506, + 596 + ], + "score": 1.0, + "content": "-updates in [25, 26] and also in [27] after our submission to the conference, where the new", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 339, + 609 + ], + "score": 1.0, + "content": "algorithms therein enjoy an improved sample complexity", + "type": "text" + }, + { + "bbox": [ + 339, + 595, + 378, + 608 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 3 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 595, + 506, + 609 + ], + "score": 1.0, + "content": ". However, these results cannot", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 147, + 621 + ], + "score": 1.0, + "content": "imply the", + "type": "text" + }, + { + "bbox": [ + 148, + 606, + 179, + 619 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "sample complexity of the alternating SGD update (4), and are orthogonal to our", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 415, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 415, + 630 + ], + "score": 1.0, + "content": "results. A comparison of our results with prior work can be found in Table 1.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 474, + 506, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "Stochastic min-max optimization. In the context of min-max problems, the alternating version of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "the stochastic gradient descent ascent (GDA) method can be viewed as the alternating SGD updates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "(4) for the special nested problem (2). To mitigate the cycling behavior of GDA for convex-concave", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "min-max problems, several variants have been developed by incorporating the idea of optimism;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "see e.g., [7, 8, 11, 29]. The analysis of stochastic GDA in the nonconvex-strongly concave setting", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "is closely related to this paper; e.g., [9, 10, 30, 28]. Specifically, for stochastic GDA (SGDA), the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 107, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 699, + 138, + 712 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 698, + 455, + 713 + ], + "score": 1.0, + "content": "sample complexity has been established in [28] under an increasing batch size", + "type": "text" + }, + { + "bbox": [ + 455, + 700, + 487, + 712 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 698, + 505, + 713 + ], + "score": 1.0, + "content": ". As", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 260, + 723 + ], + "score": 1.0, + "content": "highlighted in [28], how to achieve the", + "type": "text" + }, + { + "bbox": [ + 260, + 711, + 291, + 723 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 710, + 406, + 723 + ], + "score": 1.0, + "content": "sample complexity under an", + "type": "text" + }, + { + "bbox": [ + 406, + 711, + 428, + 723 + ], + "score": 0.9, + "content": "\\mathcal { O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "constant batch size", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "remains open. The reduction of our results to the min-max setting will provide an answer to this open", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "question. In the same setting, accelerated GDA algorithms have been developed in [31–33]. Going", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "beyond the one-side concave settings, algorithms and their convergence analysis have been studied", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "for nonconvex-nonconcave min-max problems with certain benign structure; see e.g., [8, 34–36]. A", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 374, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 374, + 129 + ], + "score": 1.0, + "content": "comparison of our results with prior work can be found in Table 2.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 634, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "remains open. The reduction of our results to the min-max setting will provide an answer to this open", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 97 + ], + "score": 1.0, + "content": "question. In the same setting, accelerated GDA algorithms have been developed in [31–33]. Going", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "beyond the one-side concave settings, algorithms and their convergence analysis have been studied", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "for nonconvex-nonconcave min-max problems with certain benign structure; see e.g., [8, 34–36]. A", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 374, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 374, + 129 + ], + "score": 1.0, + "content": "comparison of our results with prior work can be found in Table 2.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "Stochastic compositional optimization. Stochastic compositional gradient algorithms developed", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "in [12, 37] can be viewed as the alternating SGD updates (4) for the special compositional problem", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "score": 1.0, + "content": "(3). However, to ensure convergence, the algorithms [12, 37] use two sequences of variables being", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 461, + 178 + ], + "score": 1.0, + "content": "updated in two different time scales, and thus the complexity of [12] and [37] is worse than", + "type": "text" + }, + { + "bbox": [ + 462, + 165, + 493, + 177 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "SGD for the non-compositional case. While most of existing algorithms rely on either two-timescale", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "score": 1.0, + "content": "updates, the single-timescale single-loop approaches have been recently developed in [14, 38, 39],", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 196, + 507, + 212 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 257, + 212 + ], + "score": 1.0, + "content": "which achieve the sample complexity", + "type": "text" + }, + { + "bbox": [ + 258, + 198, + 289, + 210 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { O } } \\bar { ( } \\epsilon ^ { - 2 } \\bar { ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 196, + 507, + 212 + ], + "score": 1.0, + "content": ", same as SGD for the non-nested problems. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the algorithms proposed therein are not the vanilla alternating SGD update in the sense of (4). Other", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 219, + 485, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 485, + 233 + ], + "score": 1.0, + "content": "related compositional algorithms also include [40–42]. A comparison can be found in Table 3.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "Organization. The basic background of bilevel optimization is reviewed, and the tighter analysis", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 247, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 259 + ], + "score": 1.0, + "content": "of the unifying ALSET method is presented in Section 2. The reduction of the main results to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "special stochastic nested problems is provided in Section 3, and its applications to the actor-critic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 269, + 414, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 414, + 281 + ], + "score": 1.0, + "content": "method are discussed in Section 4, followed by the conclusions in Section 5.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 106, + 295, + 444, + 309 + ], + "lines": [ + { + "bbox": [ + 103, + 294, + 446, + 311 + ], + "spans": [ + { + "bbox": [ + 103, + 294, + 446, + 311 + ], + "score": 1.0, + "content": "2 Improved Analysis of Alternating Stochastic Gradient Method", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "In this section, we will first provide background of bilevel problems and then introduce ALSET for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 218, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 218, + 343 + ], + "score": 1.0, + "content": "stochastic nested problems.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 351, + 188, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 189, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 189, + 365 + ], + "score": 1.0, + "content": "2.1 Preliminaries", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 137, + 384 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 137, + 372, + 155, + 384 + ], + "score": 0.9, + "content": "\\| \\cdot \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 371, + 209, + 384 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 209, + 372, + 219, + 383 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "norm for vectors and Frobenius norm for matrices. For convenience, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 381, + 477, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "score": 1.0, + "content": "define the deterministic functions as", + "type": "text" + }, + { + "bbox": [ + 253, + 383, + 354, + 395 + ], + "score": 0.92, + "content": "g ( x , y ) : = \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 381, + 373, + 396 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 373, + 383, + 474, + 395 + ], + "score": 0.91, + "content": "f ( x , y ) : = \\mathbb { E } _ { \\xi } [ f ( x , y ; \\xi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 381, + 477, + 396 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 104, + 399, + 495, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 497, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 167, + 415 + ], + "score": 1.0, + "content": "We also define", + "type": "text" + }, + { + "bbox": [ + 167, + 399, + 215, + 414 + ], + "score": 0.94, + "content": "\\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 397, + 315, + 415 + ], + "score": 1.0, + "content": "as the Hessian matrix of", + "type": "text" + }, + { + "bbox": [ + 315, + 402, + 322, + 412 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 397, + 384, + 415 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 384, + 402, + 390, + 412 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 397, + 435, + 415 + ], + "score": 1.0, + "content": "and define", + "type": "text" + }, + { + "bbox": [ + 436, + 399, + 483, + 414 + ], + "score": 0.94, + "content": "\\nabla _ { x y } ^ { 2 } g \\left( x , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 397, + 497, + 415 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 416, + 423, + 462 + ], + "lines": [ + { + "bbox": [ + 188, + 416, + 423, + 462 + ], + "spans": [ + { + "bbox": [ + 188, + 416, + 423, + 462 + ], + "score": 0.94, + "content": "\\nabla _ { x y } ^ { 2 } g ( x , y ) : = \\left[ \\begin{array} { l l l } { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\\\ & { \\cdot \\cdot \\cdot } \\\\ { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\end{array} \\right] .", + "type": "interline_equation", + "image_path": "27938f06a6f1856a0d25bc255ac6fd5565cf91e5e2543a0e4d7b7d472548a07c.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 188, + 416, + 423, + 431.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 431.3333333333333, + 423, + 446.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 188, + 446.66666666666663, + 423, + 461.99999999999994 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 469, + 506, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "score": 1.0, + "content": "We make the following assumptions, which are common in the bilevel optimization literature [16–", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 479, + 141, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 141, + 494 + ], + "score": 1.0, + "content": "18, 26].", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 506, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 507, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 340, + 511 + ], + "score": 1.0, + "content": "Assumption 1 (Lipschitz continuity). Assume that", + "type": "text" + }, + { + "bbox": [ + 340, + 497, + 406, + 509 + ], + "score": 0.9, + "content": "f , \\nabla f , \\nabla g , \\nabla ^ { 2 } g", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 494, + 486, + 511 + ], + "score": 1.0, + "content": "are respectively", + "type": "text" + }, + { + "bbox": [ + 486, + 498, + 503, + 509 + ], + "score": 0.87, + "content": "\\ell _ { f , 0 } .", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 494, + 507, + 511 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 162, + 520 + ], + "score": 0.87, + "content": "\\ell _ { f , 1 } , \\ell _ { g , 1 } , \\ell _ { g , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 508, + 295, + 522 + ], + "score": 1.0, + "content": "-Lipschitz continuous; that is, for", + "type": "text" + }, + { + "bbox": [ + 296, + 509, + 352, + 520 + ], + "score": 0.69, + "content": "z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 508, + 355, + 522 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 356, + 509, + 411, + 520 + ], + "score": 0.83, + "content": "z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 508, + 451, + 522 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 451, + 509, + 505, + 520 + ], + "score": 0.89, + "content": "\\parallel f ( x _ { 1 } , y _ { 1 } ) -", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 520, + 424, + 532 + ], + "spans": [ + { + "bbox": [ + 107, + 520, + 424, + 532 + ], + "score": 0.6, + "content": "\\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \\| ^ { - } \\le } & { \\ell _ { f , 0 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\le } & { \\ell _ { f , 1 } \\| z _ { 1 } - x _ { 2 } \\| , } \\end{array}", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 530, + 425, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 226, + 543 + ], + "score": 0.43, + "content": "\\nabla g ( x _ { 2 } , y _ { 2 } ) \\| \\leq \\ell _ { g , 1 } \\| z _ { 1 } - z _ { 2 } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 530, + 228, + 545 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 531, + 421, + 543 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\| \\nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \\nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \\| \\le \\ell _ { g , 2 } \\| z _ { 1 } - z _ { 2 } \\| . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 530, + 425, + 545 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 108, + 545, + 488, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 485, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 251, + 560 + ], + "score": 1.0, + "content": "Assumption 2 (Strong convexity of", + "type": "text" + }, + { + "bbox": [ + 252, + 547, + 258, + 557 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 543, + 269, + 560 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 270, + 547, + 276, + 557 + ], + "score": 0.69, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 543, + 340, + 560 + ], + "score": 1.0, + "content": "). For any fixed", + "type": "text" + }, + { + "bbox": [ + 340, + 547, + 347, + 555 + ], + "score": 0.54, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 543, + 350, + 560 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 351, + 545, + 380, + 557 + ], + "score": 0.91, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 543, + 390, + 560 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 546, + 402, + 558 + ], + "score": 0.85, + "content": "\\mu _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 543, + 479, + 560 + ], + "score": 1.0, + "content": "-strongly convex in", + "type": "text" + }, + { + "bbox": [ + 479, + 547, + 485, + 557 + ], + "score": 0.54, + "content": "y", + "type": "inline_equation" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 502, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 439, + 578 + ], + "score": 1.0, + "content": "Assumptions 1 and 2 together ensure that the first- and second-order derivations of", + "type": "text" + }, + { + "bbox": [ + 440, + 564, + 502, + 576 + ], + "score": 0.9, + "content": "f ( x , y ) , g ( x , y )", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 572, + 503, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 232, + 591 + ], + "score": 1.0, + "content": "as well as the solution mapping", + "type": "text" + }, + { + "bbox": [ + 233, + 576, + 257, + 588 + ], + "score": 0.93, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 572, + 449, + 591 + ], + "score": 1.0, + "content": ", are well-behaved. Define the condition number", + "type": "text" + }, + { + "bbox": [ + 450, + 576, + 503, + 588 + ], + "score": 0.9, + "content": "\\kappa : = \\ell _ { g , 1 } / \\mu _ { g }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 399, + 603 + ], + "score": 1.0, + "content": "Assumption 3 (Stochastic derivatives). The stochastic derivatives", + "type": "text" + }, + { + "bbox": [ + 399, + 589, + 446, + 601 + ], + "score": 0.88, + "content": "\\nabla f ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 587, + 454, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 590, + 503, + 601 + ], + "score": 0.85, + "content": "\\nabla g ( x , y ; \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 587, + 506, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 107, + 600, + 159, + 612 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } g ( x , \\mathbf { \\bar { y } } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 599, + 275, + 614 + ], + "score": 1.0, + "content": "are unbiased estimators of", + "type": "text" + }, + { + "bbox": [ + 276, + 600, + 313, + 612 + ], + "score": 0.87, + "content": "\\nabla f ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 599, + 318, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 319, + 600, + 356, + 612 + ], + "score": 0.82, + "content": "\\nabla g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 599, + 361, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 600, + 403, + 612 + ], + "score": 0.78, + "content": "\\nabla ^ { 2 } g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 599, + 506, + 614 + ], + "score": 1.0, + "content": ", respectively; and their", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 609, + 323, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 212, + 628 + ], + "score": 1.0, + "content": "variances are bounded by", + "type": "text" + }, + { + "bbox": [ + 212, + 610, + 245, + 625 + ], + "score": 0.62, + "content": "\\sigma _ { f } ^ { 2 } , \\sigma _ { g , 1 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 609, + 249, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 610, + 266, + 624 + ], + "score": 0.63, + "content": "\\sigma _ { g , 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 609, + 323, + 628 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "table", + "bbox": [ + 320, + 637, + 504, + 684 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 637, + 504, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 637, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 320, + 637, + 504, + 684 + ], + "score": 0.972, + "html": "
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
", + "type": "table", + "image_path": "536336fc5936527cea99cfc7717c4d16e0b2407aeb5030a8b651f7c0163442cd.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 320, + 637, + 504, + 652.6666666666666 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 320, + 652.6666666666666, + 504, + 668.3333333333333 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 320, + 668.3333333333333, + 504, + 683.9999999999999 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "index": 43 + }, + { + "type": "table", + "bbox": [ + 106, + 636, + 315, + 684 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 636, + 315, + 684 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 636, + 315, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 315, + 684 + ], + "score": 0.973, + "html": "
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
", + "type": "table", + "image_path": "2c14a9089ceccd95f416c780898dc53e92b6ee2ad22c36fcb1fee578d3b561ee.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 106, + 636, + 315, + 652.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 106, + 652.0, + 315, + 668.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 106, + 668.0, + 315, + 684.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 690, + 306, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 690, + 307, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 307, + 702 + ], + "score": 1.0, + "content": "Table 2: Sample complexity of stochastic min-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 701, + 305, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 305, + 713 + ], + "score": 1.0, + "content": "max algorithms (BSA in [16], GDA in [28], SMD", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 712, + 297, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 189, + 725 + ], + "score": 1.0, + "content": "in [9]) to achieve an", + "type": "text" + }, + { + "bbox": [ + 189, + 715, + 194, + 722 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 712, + 272, + 725 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 272, + 713, + 294, + 724 + ], + "score": 0.91, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 712, + 297, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 319, + 690, + 519, + 723 + ], + "lines": [ + { + "bbox": [ + 318, + 689, + 520, + 702 + ], + "spans": [ + { + "bbox": [ + 318, + 689, + 520, + 702 + ], + "score": 1.0, + "content": "Table 3: Sample complexity of stochastic compo-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 319, + 700, + 520, + 714 + ], + "spans": [ + { + "bbox": [ + 319, + 700, + 520, + 714 + ], + "score": 1.0, + "content": "sitional algorithms (SCGD in [12], NASA in [14])", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 319, + 712, + 484, + 725 + ], + "spans": [ + { + "bbox": [ + 319, + 712, + 375, + 725 + ], + "score": 1.0, + "content": "to achieve an", + "type": "text" + }, + { + "bbox": [ + 375, + 714, + 380, + 722 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 712, + 458, + 725 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 458, + 713, + 480, + 724 + ], + "score": 0.92, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 712, + 484, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 73, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "Stochastic compositional optimization. Stochastic compositional gradient algorithms developed", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "in [12, 37] can be viewed as the alternating SGD updates (4) for the special compositional problem", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "score": 1.0, + "content": "(3). However, to ensure convergence, the algorithms [12, 37] use two sequences of variables being", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 461, + 178 + ], + "score": 1.0, + "content": "updated in two different time scales, and thus the complexity of [12] and [37] is worse than", + "type": "text" + }, + { + "bbox": [ + 462, + 165, + 493, + 177 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "SGD for the non-compositional case. While most of existing algorithms rely on either two-timescale", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 201 + ], + "score": 1.0, + "content": "updates, the single-timescale single-loop approaches have been recently developed in [14, 38, 39],", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 196, + 507, + 212 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 257, + 212 + ], + "score": 1.0, + "content": "which achieve the sample complexity", + "type": "text" + }, + { + "bbox": [ + 258, + 198, + 289, + 210 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { O } } \\bar { ( } \\epsilon ^ { - 2 } \\bar { ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 196, + 507, + 212 + ], + "score": 1.0, + "content": ", same as SGD for the non-nested problems. However,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the algorithms proposed therein are not the vanilla alternating SGD update in the sense of (4). Other", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 219, + 485, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 485, + 233 + ], + "score": 1.0, + "content": "related compositional algorithms also include [40–42]. A comparison can be found in Table 3.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 132, + 507, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "Organization. The basic background of bilevel optimization is reviewed, and the tighter analysis", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 247, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 259 + ], + "score": 1.0, + "content": "of the unifying ALSET method is presented in Section 2. The reduction of the main results to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "special stochastic nested problems is provided in Section 3, and its applications to the actor-critic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 269, + 414, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 414, + 281 + ], + "score": 1.0, + "content": "method are discussed in Section 4, followed by the conclusions in Section 5.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 236, + 505, + 281 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 295, + 444, + 309 + ], + "lines": [ + { + "bbox": [ + 103, + 294, + 446, + 311 + ], + "spans": [ + { + "bbox": [ + 103, + 294, + 446, + 311 + ], + "score": 1.0, + "content": "2 Improved Analysis of Alternating Stochastic Gradient Method", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "In this section, we will first provide background of bilevel problems and then introduce ALSET for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 218, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 218, + 343 + ], + "score": 1.0, + "content": "stochastic nested problems.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 319, + 505, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 351, + 188, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 189, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 189, + 365 + ], + "score": 1.0, + "content": "2.1 Preliminaries", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 137, + 384 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 137, + 372, + 155, + 384 + ], + "score": 0.9, + "content": "\\| \\cdot \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 371, + 209, + 384 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 209, + 372, + 219, + 383 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "norm for vectors and Frobenius norm for matrices. For convenience, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 381, + 477, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "score": 1.0, + "content": "define the deterministic functions as", + "type": "text" + }, + { + "bbox": [ + 253, + 383, + 354, + 395 + ], + "score": 0.92, + "content": "g ( x , y ) : = \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 381, + 373, + 396 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 373, + 383, + 474, + 395 + ], + "score": 0.91, + "content": "f ( x , y ) : = \\mathbb { E } _ { \\xi } [ f ( x , y ; \\xi ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 381, + 477, + 396 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 371, + 505, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 399, + 495, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 497, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 167, + 415 + ], + "score": 1.0, + "content": "We also define", + "type": "text" + }, + { + "bbox": [ + 167, + 399, + 215, + 414 + ], + "score": 0.94, + "content": "\\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 397, + 315, + 415 + ], + "score": 1.0, + "content": "as the Hessian matrix of", + "type": "text" + }, + { + "bbox": [ + 315, + 402, + 322, + 412 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 397, + 384, + 415 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 384, + 402, + 390, + 412 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 397, + 435, + 415 + ], + "score": 1.0, + "content": "and define", + "type": "text" + }, + { + "bbox": [ + 436, + 399, + 483, + 414 + ], + "score": 0.94, + "content": "\\nabla _ { x y } ^ { 2 } g \\left( x , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 397, + 497, + 415 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 397, + 497, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 416, + 423, + 462 + ], + "lines": [ + { + "bbox": [ + 188, + 416, + 423, + 462 + ], + "spans": [ + { + "bbox": [ + 188, + 416, + 423, + 462 + ], + "score": 0.94, + "content": "\\nabla _ { x y } ^ { 2 } g ( x , y ) : = \\left[ \\begin{array} { l l l } { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\\\ & { \\cdot \\cdot \\cdot } \\\\ { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\end{array} \\right] .", + "type": "interline_equation", + "image_path": "27938f06a6f1856a0d25bc255ac6fd5565cf91e5e2543a0e4d7b7d472548a07c.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 188, + 416, + 423, + 431.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 431.3333333333333, + 423, + 446.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 188, + 446.66666666666663, + 423, + 461.99999999999994 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 469, + 506, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "score": 1.0, + "content": "We make the following assumptions, which are common in the bilevel optimization literature [16–", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 479, + 141, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 141, + 494 + ], + "score": 1.0, + "content": "18, 26].", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 468, + 507, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 506, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 507, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 340, + 511 + ], + "score": 1.0, + "content": "Assumption 1 (Lipschitz continuity). Assume that", + "type": "text" + }, + { + "bbox": [ + 340, + 497, + 406, + 509 + ], + "score": 0.9, + "content": "f , \\nabla f , \\nabla g , \\nabla ^ { 2 } g", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 494, + 486, + 511 + ], + "score": 1.0, + "content": "are respectively", + "type": "text" + }, + { + "bbox": [ + 486, + 498, + 503, + 509 + ], + "score": 0.87, + "content": "\\ell _ { f , 0 } .", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 494, + 507, + 511 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 162, + 520 + ], + "score": 0.87, + "content": "\\ell _ { f , 1 } , \\ell _ { g , 1 } , \\ell _ { g , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 508, + 295, + 522 + ], + "score": 1.0, + "content": "-Lipschitz continuous; that is, for", + "type": "text" + }, + { + "bbox": [ + 296, + 509, + 352, + 520 + ], + "score": 0.69, + "content": "z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 508, + 355, + 522 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 356, + 509, + 411, + 520 + ], + "score": 0.83, + "content": "z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 508, + 451, + 522 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 451, + 509, + 505, + 520 + ], + "score": 0.89, + "content": "\\parallel f ( x _ { 1 } , y _ { 1 } ) -", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 520, + 424, + 532 + ], + "spans": [ + { + "bbox": [ + 107, + 520, + 424, + 532 + ], + "score": 0.6, + "content": "\\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \\| ^ { - } \\le } & { \\ell _ { f , 0 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\le } & { \\ell _ { f , 1 } \\| z _ { 1 } - x _ { 2 } \\| , } \\end{array}", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 530, + 425, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 226, + 543 + ], + "score": 0.43, + "content": "\\nabla g ( x _ { 2 } , y _ { 2 } ) \\| \\leq \\ell _ { g , 1 } \\| z _ { 1 } - z _ { 2 } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 530, + 228, + 545 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 531, + 421, + 543 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\| \\nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \\nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \\| \\le \\ell _ { g , 2 } \\| z _ { 1 } - z _ { 2 } \\| . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 530, + 425, + 545 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 494, + 507, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 545, + 488, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 485, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 251, + 560 + ], + "score": 1.0, + "content": "Assumption 2 (Strong convexity of", + "type": "text" + }, + { + "bbox": [ + 252, + 547, + 258, + 557 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 543, + 269, + 560 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 270, + 547, + 276, + 557 + ], + "score": 0.69, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 543, + 340, + 560 + ], + "score": 1.0, + "content": "). For any fixed", + "type": "text" + }, + { + "bbox": [ + 340, + 547, + 347, + 555 + ], + "score": 0.54, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 543, + 350, + 560 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 351, + 545, + 380, + 557 + ], + "score": 0.91, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 543, + 390, + 560 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 546, + 402, + 558 + ], + "score": 0.85, + "content": "\\mu _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 543, + 479, + 560 + ], + "score": 1.0, + "content": "-strongly convex in", + "type": "text" + }, + { + "bbox": [ + 479, + 547, + 485, + 557 + ], + "score": 0.54, + "content": "y", + "type": "inline_equation" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 543, + 485, + 560 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 502, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 439, + 578 + ], + "score": 1.0, + "content": "Assumptions 1 and 2 together ensure that the first- and second-order derivations of", + "type": "text" + }, + { + "bbox": [ + 440, + 564, + 502, + 576 + ], + "score": 0.9, + "content": "f ( x , y ) , g ( x , y )", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 572, + 503, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 232, + 591 + ], + "score": 1.0, + "content": "as well as the solution mapping", + "type": "text" + }, + { + "bbox": [ + 233, + 576, + 257, + 588 + ], + "score": 0.93, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 572, + 449, + 591 + ], + "score": 1.0, + "content": ", are well-behaved. Define the condition number", + "type": "text" + }, + { + "bbox": [ + 450, + 576, + 503, + 588 + ], + "score": 0.9, + "content": "\\kappa : = \\ell _ { g , 1 } / \\mu _ { g }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 564, + 503, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 399, + 603 + ], + "score": 1.0, + "content": "Assumption 3 (Stochastic derivatives). The stochastic derivatives", + "type": "text" + }, + { + "bbox": [ + 399, + 589, + 446, + 601 + ], + "score": 0.88, + "content": "\\nabla f ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 587, + 454, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 590, + 503, + 601 + ], + "score": 0.85, + "content": "\\nabla g ( x , y ; \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 587, + 506, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 599, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 107, + 600, + 159, + 612 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } g ( x , \\mathbf { \\bar { y } } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 599, + 275, + 614 + ], + "score": 1.0, + "content": "are unbiased estimators of", + "type": "text" + }, + { + "bbox": [ + 276, + 600, + 313, + 612 + ], + "score": 0.87, + "content": "\\nabla f ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 599, + 318, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 319, + 600, + 356, + 612 + ], + "score": 0.82, + "content": "\\nabla g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 599, + 361, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 600, + 403, + 612 + ], + "score": 0.78, + "content": "\\nabla ^ { 2 } g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 599, + 506, + 614 + ], + "score": 1.0, + "content": ", respectively; and their", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 609, + 323, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 212, + 628 + ], + "score": 1.0, + "content": "variances are bounded by", + "type": "text" + }, + { + "bbox": [ + 212, + 610, + 245, + 625 + ], + "score": 0.62, + "content": "\\sigma _ { f } ^ { 2 } , \\sigma _ { g , 1 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 609, + 249, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 610, + 266, + 624 + ], + "score": 0.63, + "content": "\\sigma _ { g , 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 609, + 323, + 628 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 587, + 506, + 628 + ] + }, + { + "type": "table", + "bbox": [ + 320, + 637, + 504, + 684 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 637, + 504, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 637, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 320, + 637, + 504, + 684 + ], + "score": 0.972, + "html": "
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
", + "type": "table", + "image_path": "536336fc5936527cea99cfc7717c4d16e0b2407aeb5030a8b651f7c0163442cd.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 320, + 637, + 504, + 652.6666666666666 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 320, + 652.6666666666666, + 504, + 668.3333333333333 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 320, + 668.3333333333333, + 504, + 683.9999999999999 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "index": 43 + }, + { + "type": "table", + "bbox": [ + 106, + 636, + 315, + 684 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 636, + 315, + 684 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 636, + 315, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 315, + 684 + ], + "score": 0.973, + "html": "
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
", + "type": "table", + "image_path": "2c14a9089ceccd95f416c780898dc53e92b6ee2ad22c36fcb1fee578d3b561ee.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 106, + 636, + 315, + 652.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 106, + 652.0, + 315, + 668.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 106, + 668.0, + 315, + 684.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 690, + 306, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 690, + 307, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 307, + 702 + ], + "score": 1.0, + "content": "Table 2: Sample complexity of stochastic min-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 701, + 305, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 305, + 713 + ], + "score": 1.0, + "content": "max algorithms (BSA in [16], GDA in [28], SMD", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 712, + 297, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 189, + 725 + ], + "score": 1.0, + "content": "in [9]) to achieve an", + "type": "text" + }, + { + "bbox": [ + 189, + 715, + 194, + 722 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 712, + 272, + 725 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 272, + 713, + 294, + 724 + ], + "score": 0.91, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 712, + 297, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 319, + 690, + 519, + 723 + ], + "lines": [ + { + "bbox": [ + 318, + 689, + 520, + 702 + ], + "spans": [ + { + "bbox": [ + 318, + 689, + 520, + 702 + ], + "score": 1.0, + "content": "Table 3: Sample complexity of stochastic compo-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 319, + 700, + 520, + 714 + ], + "spans": [ + { + "bbox": [ + 319, + 700, + 520, + 714 + ], + "score": 1.0, + "content": "sitional algorithms (SCGD in [12], NASA in [14])", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 319, + 712, + 484, + 725 + ], + "spans": [ + { + "bbox": [ + 319, + 712, + 375, + 725 + ], + "score": 1.0, + "content": "to achieve an", + "type": "text" + }, + { + "bbox": [ + 375, + 714, + 380, + 722 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 712, + 458, + 725 + ], + "score": 1.0, + "content": "-stationary point of", + "type": "text" + }, + { + "bbox": [ + 458, + 713, + 480, + 724 + ], + "score": 0.92, + "content": "F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 712, + 484, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50, + "bbox_fs": [ + 318, + 689, + 520, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 419, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 419, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 419, + 87 + ], + "score": 1.0, + "content": "Assumptions 2 and 3 together imply that the second moments are bounded by", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 84, + 392, + 119 + ], + "lines": [ + { + "bbox": [ + 218, + 84, + 392, + 119 + ], + "spans": [ + { + "bbox": [ + 218, + 84, + 392, + 119 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\xi } [ \\| \\nabla f ( x , y ; \\xi ) \\| ^ { 2 } ] \\le \\ell _ { f , 0 } ^ { 2 } + \\sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\\\ & { \\mathbb { E } _ { \\phi } [ \\| \\nabla ^ { 2 } g ( x , y ; \\phi ) \\| ^ { 2 } ] \\le \\ell _ { g , 1 } ^ { 2 } + \\sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "bedcc72d93ffd40a64eec553c39c6235264abb05a8eb11c3181b7f854ea50391.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 84, + 392, + 101.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 218, + 101.5, + 392, + 119.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 506, + 135 + ], + "score": 1.0, + "content": "Assumption 3 is the counterpart of the unbiasedness and bounded variance assumption in the single-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 504, + 145 + ], + "score": 1.0, + "content": "level stochastic optimization. In addition, the bounded moments in Assumption 3 ensure the Lipschitz", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 292, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 257, + 158 + ], + "score": 1.0, + "content": "continuity of the upper-level gradient", + "type": "text" + }, + { + "bbox": [ + 258, + 144, + 288, + 156 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 144, + 292, + 158 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "score": 1.0, + "content": "We first highlight the inherent challenge of directly applying the alternating SGD method to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 482, + 185 + ], + "score": 1.0, + "content": "bilevel problem (1). To illustrate this point, we derive the gradient of the upper-level function", + "type": "text" + }, + { + "bbox": [ + 483, + 172, + 505, + 184 + ], + "score": 0.9, + "content": "F ( x )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 183, + 385, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 385, + 195 + ], + "score": 1.0, + "content": "in the next proposition; see the proof in the supplementary document.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 360, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 361, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 252, + 209 + ], + "score": 1.0, + "content": "Proposition 1. Under Assumptions", + "type": "text" + }, + { + "bbox": [ + 252, + 196, + 267, + 206 + ], + "score": 0.42, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 195, + 361, + 209 + ], + "score": 1.0, + "content": ", we have the gradients", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 208, + 470, + 226 + ], + "lines": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "spans": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\nabla F ( x ) = \\nabla _ { x } f ( x , y ^ { * } ( x ) ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\right] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "8def075e3f1ec144ec337badb1f5456ed72627ab3d388b128555c0d5d7852c11.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 117, + 228, + 479, + 240 + ], + "lines": [ + { + "bbox": [ + 115, + 226, + 481, + 242 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 162, + 242 + ], + "score": 1.0, + "content": "urthermore,", + "type": "text" + }, + { + "bbox": [ + 162, + 228, + 192, + 240 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 226, + 211, + 242 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 228, + 236, + 240 + ], + "score": 0.91, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 226, + 397, + 242 + ], + "score": 1.0, + "content": "are Lipschitz continuous with constants", + "type": "text" + }, + { + "bbox": [ + 397, + 228, + 428, + 240 + ], + "score": 0.91, + "content": "L _ { F } , L _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 226, + 481, + 242 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 504, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 336, + 259 + ], + "score": 1.0, + "content": "Notice that obtaining an unbiased stochastic estimate of", + "type": "text" + }, + { + "bbox": [ + 336, + 246, + 367, + 258 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 246, + 459, + 259 + ], + "score": 1.0, + "content": "and applying SGD on", + "type": "text" + }, + { + "bbox": [ + 460, + 249, + 466, + 257 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "face two", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 237, + 271 + ], + "score": 1.0, + "content": "main difficulties: i) the gradient", + "type": "text" + }, + { + "bbox": [ + 238, + 258, + 268, + 270 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 257, + 279, + 271 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 280, + 260, + 286, + 268 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "depends on the minimizer of the lower-level problem", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 107, + 268, + 131, + 281 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 268, + 181, + 282 + ], + "score": 1.0, + "content": "; ii) even if", + "type": "text" + }, + { + "bbox": [ + 181, + 269, + 205, + 280 + ], + "score": 0.91, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "is known, it is hard to apply the stochastic approximation to obtain an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 407, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 191, + 294 + ], + "score": 1.0, + "content": "unbiased estimate of", + "type": "text" + }, + { + "bbox": [ + 191, + 280, + 222, + 291 + ], + "score": 0.92, + "content": "\\dot { \\nabla } F ( { \\boldsymbol { x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 278, + 246, + 294 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 246, + 280, + 276, + 291 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 278, + 338, + 294 + ], + "score": 1.0, + "content": "is nonlinear in", + "type": "text" + }, + { + "bbox": [ + 338, + 279, + 402, + 293 + ], + "score": 0.93, + "content": "\\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 278, + 407, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 424, + 310 + ], + "score": 1.0, + "content": "Similar to some existing stochastic bilevel algorithms [16, 18, 17], we evaluate", + "type": "text" + }, + { + "bbox": [ + 424, + 297, + 454, + 309 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "on a certain", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 427, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 133, + 321 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 134, + 311, + 140, + 320 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 308, + 186, + 321 + ], + "score": 1.0, + "content": "in place of", + "type": "text" + }, + { + "bbox": [ + 186, + 308, + 210, + 320 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 308, + 272, + 321 + ], + "score": 1.0, + "content": ". Replacing the", + "type": "text" + }, + { + "bbox": [ + 272, + 308, + 297, + 320 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 308, + 375, + 321 + ], + "score": 1.0, + "content": "in definition (6) by", + "type": "text" + }, + { + "bbox": [ + 375, + 311, + 382, + 320 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 308, + 427, + 321 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 322, + 446, + 340 + ], + "lines": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "spans": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "score": 0.88, + "content": "\\overline { { \\nabla } } _ { x } f \\big ( x , y \\big ) : = \\nabla _ { x } f \\big ( x , y \\big ) - \\nabla _ { x y } ^ { 2 } g \\big ( x , y \\big ) \\left[ \\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big ) \\right] ^ { - 1 } \\nabla _ { y } f \\big ( x , y \\big ) .", + "type": "interline_equation", + "image_path": "7548a73e4449fb7441369c42d9413dbdb8972651520608eb1bfff0ea6d251344.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 358, + 362 + ], + "lines": [ + { + "bbox": [ + 104, + 344, + 360, + 365 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 276, + 365 + ], + "score": 1.0, + "content": "And to reduce the bias in (7), we estimate", + "type": "text" + }, + { + "bbox": [ + 276, + 346, + 342, + 363 + ], + "score": 0.94, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 344, + 360, + 365 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 365, + 426, + 399 + ], + "lines": [ + { + "bbox": [ + 185, + 365, + 426, + 399 + ], + "spans": [ + { + "bbox": [ + 185, + 365, + 426, + 399 + ], + "score": 0.94, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 } \\approx \\Big [ \\frac { N } { \\ell _ { g , 1 } } \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\Big ( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi _ { ( n ) } ) \\Big ) \\Big ]", + "type": "interline_equation", + "image_path": "1bf385f84df0373a81394b89109bf07af8c3d9b104f2abe41cd87ffeb3647fd1.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 365, + 426, + 382.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 382.0, + 426, + 399.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 104, + 399, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 132, + 416 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 403, + 145, + 412 + ], + "score": 0.85, + "content": "N ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 399, + 204, + 416 + ], + "score": 1.0, + "content": "is drawn from", + "type": "text" + }, + { + "bbox": [ + 204, + 402, + 261, + 415 + ], + "score": 0.94, + "content": "\\{ 1 , 2 , \\ldots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 399, + 362, + 416 + ], + "score": 1.0, + "content": "uniformly at random and", + "type": "text" + }, + { + "bbox": [ + 362, + 401, + 434, + 415 + ], + "score": 0.9, + "content": "\\{ \\phi ^ { ( 1 ) } , \\dots , \\phi ^ { ( N ^ { \\prime } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 399, + 506, + 416 + ], + "score": 1.0, + "content": "are i.i.d. samples.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 103, + 414, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 103, + 414, + 379, + 431 + ], + "score": 1.0, + "content": "It has been shown in [16] that using (8), the estimation bias of", + "type": "text" + }, + { + "bbox": [ + 379, + 415, + 445, + 430 + ], + "score": 0.91, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 414, + 506, + 431 + ], + "score": 1.0, + "content": "exponentially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 426, + 275, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 260, + 439 + ], + "score": 1.0, + "content": "decreases with the number of samples", + "type": "text" + }, + { + "bbox": [ + 261, + 428, + 271, + 437 + ], + "score": 0.85, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 426, + 275, + 439 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 106, + 451, + 304, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 305, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 305, + 464 + ], + "score": 1.0, + "content": "2.2 Main results: Tighter analysis of ALSET", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 257, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 256, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 256, + 483 + ], + "score": 1.0, + "content": "In this subsection, we first describe", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 257, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 257, + 494 + ], + "score": 1.0, + "content": "the general ALSET algorithm for the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 258, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 258, + 505 + ], + "score": 1.0, + "content": "stochastic bilevel problem, and then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 505, + 247, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 247, + 516 + ], + "score": 1.0, + "content": "present its new convergence result.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 258, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 259, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 259, + 533 + ], + "score": 1.0, + "content": "This algorithm is very simple to im-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 532, + 258, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 213, + 542 + ], + "score": 1.0, + "content": "plement. At each iteration", + "type": "text" + }, + { + "bbox": [ + 214, + 532, + 220, + 541 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 532, + 258, + 542 + ], + "score": 1.0, + "content": ", ALSET", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 542, + 259, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 259, + 554 + ], + "score": 1.0, + "content": "alternates between the stochastic gra-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 552, + 259, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 169, + 564 + ], + "score": 1.0, + "content": "dient update on", + "type": "text" + }, + { + "bbox": [ + 169, + 552, + 181, + 565 + ], + "score": 0.9, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 553, + 227, + 564 + ], + "score": 1.0, + "content": "and that on", + "type": "text" + }, + { + "bbox": [ + 227, + 552, + 239, + 563 + ], + "score": 0.87, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 553, + 259, + 564 + ], + "score": 1.0, + "content": ". Al-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 564, + 258, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 210, + 575 + ], + "score": 1.0, + "content": "though it is possible that", + "type": "text" + }, + { + "bbox": [ + 210, + 564, + 239, + 574 + ], + "score": 0.9, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 564, + 258, + 575 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 575, + 257, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 180, + 587 + ], + "score": 1.0, + "content": "generality, we run", + "type": "text" + }, + { + "bbox": [ + 180, + 576, + 189, + 585 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 575, + 257, + 587 + ], + "score": 1.0, + "content": "steps of SGD on", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 264, + 475, + 502, + 487 + ], + "lines": [ + { + "bbox": [ + 263, + 473, + 503, + 491 + ], + "spans": [ + { + "bbox": [ + 263, + 473, + 503, + 491 + ], + "score": 1.0, + "content": "Algorithm 1 ALSET for the stochastic bilevel problem (1)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 268, + 491, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 268, + 489, + 433, + 506 + ], + "spans": [ + { + "bbox": [ + 268, + 489, + 324, + 506 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 325, + 492, + 350, + 504 + ], + "score": 0.85, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 489, + 392, + 506 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 392, + 492, + 429, + 505 + ], + "score": 0.91, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 489, + 433, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 268, + 501, + 396, + 516 + ], + "spans": [ + { + "bbox": [ + 268, + 501, + 297, + 516 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 297, + 504, + 380, + 515 + ], + "score": 0.74, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 501, + 396, + 516 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 268, + 514, + 406, + 525 + ], + "spans": [ + { + "bbox": [ + 268, + 514, + 281, + 525 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 296, + 514, + 312, + 525 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 312, + 515, + 392, + 525 + ], + "score": 0.65, + "content": "t = 0 , 1 , \\dots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 514, + 406, + 525 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 268, + 521, + 504, + 541 + ], + "spans": [ + { + "bbox": [ + 268, + 525, + 280, + 537 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 308, + 521, + 341, + 541 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 341, + 525, + 435, + 538 + ], + "score": 0.5, + "content": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 521, + 462, + 541 + ], + "score": 1.0, + "content": ". set", + "type": "text" + }, + { + "bbox": [ + 462, + 524, + 504, + 537 + ], + "score": 0.71, + "content": "y ^ { k , 0 } = y ^ { k }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 268, + 536, + 330, + 548 + ], + "spans": [ + { + "bbox": [ + 268, + 536, + 280, + 548 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 296, + 536, + 330, + 547 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 268, + 542, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 268, + 547, + 280, + 559 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 294, + 542, + 325, + 562 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 325, + 545, + 504, + 560 + ], + "score": 0.32, + "content": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } \\qquad \\Join", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 268, + 558, + 316, + 572 + ], + "spans": [ + { + "bbox": [ + 268, + 558, + 316, + 572 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 104, + 585, + 504, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 204, + 599 + ], + "score": 1.0, + "content": "the lower-level variable", + "type": "text" + }, + { + "bbox": [ + 205, + 585, + 216, + 597 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 583, + 368, + 599 + ], + "score": 1.0, + "content": "before updating upper-level variable", + "type": "text" + }, + { + "bbox": [ + 368, + 585, + 380, + 596 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 583, + 407, + 599 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 407, + 587, + 420, + 597 + ], + "score": 0.87, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 583, + 438, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 586, + 450, + 597 + ], + "score": 0.88, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 583, + 505, + 599 + ], + "score": 1.0, + "content": "denoting the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 595, + 439, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 155, + 609 + ], + "score": 1.0, + "content": "stepsizes of", + "type": "text" + }, + { + "bbox": [ + 155, + 596, + 167, + 606 + ], + "score": 0.89, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 595, + 185, + 609 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 596, + 196, + 608 + ], + "score": 0.9, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 595, + 439, + 609 + ], + "score": 1.0, + "content": "that decrease at the same rate as SGD, the ALSET update is", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 608, + 450, + 643 + ], + "lines": [ + { + "bbox": [ + 156, + 608, + 450, + 643 + ], + "spans": [ + { + "bbox": [ + 156, + 608, + 450, + 643 + ], + "score": 0.67, + "content": "\\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t } , t = 0 , \\ldots , T \\quad \\mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\\\ & { x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } } \\end{array}", + "type": "interline_equation", + "image_path": "7775e8620eef89883764eb470d0d3da12a03569af54964c183fab4ff648df953.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 156, + 608, + 450, + 619.6666666666666 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 156, + 619.6666666666666, + 450, + 631.3333333333333 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 156, + 631.3333333333333, + 450, + 642.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 644, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 226, + 658 + ], + "score": 1.0, + "content": "where the update direction of", + "type": "text" + }, + { + "bbox": [ + 226, + 647, + 233, + 657 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 641, + 336, + 658 + ], + "score": 1.0, + "content": "is the stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 336, + 644, + 446, + 658 + ], + "score": 0.92, + "content": "h _ { g } ^ { k , t } : = \\nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \\phi ^ { k , t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 641, + 506, + 658 + ], + "score": 1.0, + "content": "; and, with the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 655, + 447, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 320, + 668 + ], + "score": 1.0, + "content": "Hessian inverse estimator (8), the update direction of", + "type": "text" + }, + { + "bbox": [ + 320, + 658, + 327, + 666 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 655, + 447, + 668 + ], + "score": 1.0, + "content": "is the slightly biased gradient", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 667, + 483, + 721 + ], + "lines": [ + { + "bbox": [ + 111, + 667, + 483, + 721 + ], + "spans": [ + { + "bbox": [ + 111, + 667, + 483, + 721 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\boldsymbol { h } _ { f } ^ { k } : = \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) } \\\\ & { \\qquad - \\nabla _ { \\boldsymbol { x } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ; \\phi _ { ( 0 ) } ^ { k } ) \\Bigl [ \\frac { N } { \\ell _ { g , 1 } } \\displaystyle \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\left( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { \\boldsymbol { y } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\phi _ { ( n ) } ^ { k } ) \\right) \\Bigr ] \\nabla _ { \\boldsymbol { y } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "7a21c234320bd4b8bc8257adce0dcafa7dd329bc26cd3f099a5c957f8bdfa9e9.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 111, + 667, + 483, + 685.0 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 111, + 685.0, + 483, + 703.0 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 111, + 703.0, + 483, + 721.0 + ], + "spans": [], + "index": 53 + } + ] + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 419, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 419, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 419, + 87 + ], + "score": 1.0, + "content": "Assumptions 2 and 3 together imply that the second moments are bounded by", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 71, + 419, + 87 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 84, + 392, + 119 + ], + "lines": [ + { + "bbox": [ + 218, + 84, + 392, + 119 + ], + "spans": [ + { + "bbox": [ + 218, + 84, + 392, + 119 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\xi } [ \\| \\nabla f ( x , y ; \\xi ) \\| ^ { 2 } ] \\le \\ell _ { f , 0 } ^ { 2 } + \\sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\\\ & { \\mathbb { E } _ { \\phi } [ \\| \\nabla ^ { 2 } g ( x , y ; \\phi ) \\| ^ { 2 } ] \\le \\ell _ { g , 1 } ^ { 2 } + \\sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "bedcc72d93ffd40a64eec553c39c6235264abb05a8eb11c3181b7f854ea50391.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 84, + 392, + 101.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 218, + 101.5, + 392, + 119.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 506, + 135 + ], + "score": 1.0, + "content": "Assumption 3 is the counterpart of the unbiasedness and bounded variance assumption in the single-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 504, + 145 + ], + "score": 1.0, + "content": "level stochastic optimization. In addition, the bounded moments in Assumption 3 ensure the Lipschitz", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 292, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 257, + 158 + ], + "score": 1.0, + "content": "continuity of the upper-level gradient", + "type": "text" + }, + { + "bbox": [ + 258, + 144, + 288, + 156 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 144, + 292, + 158 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 122, + 506, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "score": 1.0, + "content": "We first highlight the inherent challenge of directly applying the alternating SGD method to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 482, + 185 + ], + "score": 1.0, + "content": "bilevel problem (1). To illustrate this point, we derive the gradient of the upper-level function", + "type": "text" + }, + { + "bbox": [ + 483, + 172, + 505, + 184 + ], + "score": 0.9, + "content": "F ( x )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 183, + 385, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 385, + 195 + ], + "score": 1.0, + "content": "in the next proposition; see the proof in the supplementary document.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 160, + 505, + 195 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 360, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 361, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 252, + 209 + ], + "score": 1.0, + "content": "Proposition 1. Under Assumptions", + "type": "text" + }, + { + "bbox": [ + 252, + 196, + 267, + 206 + ], + "score": 0.42, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 195, + 361, + 209 + ], + "score": 1.0, + "content": ", we have the gradients", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 195, + 361, + 209 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 208, + 470, + 226 + ], + "lines": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "spans": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\nabla F ( x ) = \\nabla _ { x } f ( x , y ^ { * } ( x ) ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\right] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "8def075e3f1ec144ec337badb1f5456ed72627ab3d388b128555c0d5d7852c11.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 140, + 208, + 470, + 226 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 117, + 228, + 479, + 240 + ], + "lines": [ + { + "bbox": [ + 115, + 226, + 481, + 242 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 162, + 242 + ], + "score": 1.0, + "content": "urthermore,", + "type": "text" + }, + { + "bbox": [ + 162, + 228, + 192, + 240 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 226, + 211, + 242 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 228, + 236, + 240 + ], + "score": 0.91, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 226, + 397, + 242 + ], + "score": 1.0, + "content": "are Lipschitz continuous with constants", + "type": "text" + }, + { + "bbox": [ + 397, + 228, + 428, + 240 + ], + "score": 0.91, + "content": "L _ { F } , L _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 226, + 481, + 242 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 115, + 226, + 481, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 504, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 336, + 259 + ], + "score": 1.0, + "content": "Notice that obtaining an unbiased stochastic estimate of", + "type": "text" + }, + { + "bbox": [ + 336, + 246, + 367, + 258 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 246, + 459, + 259 + ], + "score": 1.0, + "content": "and applying SGD on", + "type": "text" + }, + { + "bbox": [ + 460, + 249, + 466, + 257 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "face two", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 237, + 271 + ], + "score": 1.0, + "content": "main difficulties: i) the gradient", + "type": "text" + }, + { + "bbox": [ + 238, + 258, + 268, + 270 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 257, + 279, + 271 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 280, + 260, + 286, + 268 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "depends on the minimizer of the lower-level problem", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 107, + 268, + 131, + 281 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 268, + 181, + 282 + ], + "score": 1.0, + "content": "; ii) even if", + "type": "text" + }, + { + "bbox": [ + 181, + 269, + 205, + 280 + ], + "score": 0.91, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "is known, it is hard to apply the stochastic approximation to obtain an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 407, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 191, + 294 + ], + "score": 1.0, + "content": "unbiased estimate of", + "type": "text" + }, + { + "bbox": [ + 191, + 280, + 222, + 291 + ], + "score": 0.92, + "content": "\\dot { \\nabla } F ( { \\boldsymbol { x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 278, + 246, + 294 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 246, + 280, + 276, + 291 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 278, + 338, + 294 + ], + "score": 1.0, + "content": "is nonlinear in", + "type": "text" + }, + { + "bbox": [ + 338, + 279, + 402, + 293 + ], + "score": 0.93, + "content": "\\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 278, + 407, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 246, + 506, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 424, + 310 + ], + "score": 1.0, + "content": "Similar to some existing stochastic bilevel algorithms [16, 18, 17], we evaluate", + "type": "text" + }, + { + "bbox": [ + 424, + 297, + 454, + 309 + ], + "score": 0.93, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "on a certain", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 427, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 133, + 321 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 134, + 311, + 140, + 320 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 308, + 186, + 321 + ], + "score": 1.0, + "content": "in place of", + "type": "text" + }, + { + "bbox": [ + 186, + 308, + 210, + 320 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 308, + 272, + 321 + ], + "score": 1.0, + "content": ". Replacing the", + "type": "text" + }, + { + "bbox": [ + 272, + 308, + 297, + 320 + ], + "score": 0.92, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 308, + 375, + 321 + ], + "score": 1.0, + "content": "in definition (6) by", + "type": "text" + }, + { + "bbox": [ + 375, + 311, + 382, + 320 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 308, + 427, + 321 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 297, + 505, + 321 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 322, + 446, + 340 + ], + "lines": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "spans": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "score": 0.88, + "content": "\\overline { { \\nabla } } _ { x } f \\big ( x , y \\big ) : = \\nabla _ { x } f \\big ( x , y \\big ) - \\nabla _ { x y } ^ { 2 } g \\big ( x , y \\big ) \\left[ \\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big ) \\right] ^ { - 1 } \\nabla _ { y } f \\big ( x , y \\big ) .", + "type": "interline_equation", + "image_path": "7548a73e4449fb7441369c42d9413dbdb8972651520608eb1bfff0ea6d251344.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 164, + 322, + 446, + 340 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 358, + 362 + ], + "lines": [ + { + "bbox": [ + 104, + 344, + 360, + 365 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 276, + 365 + ], + "score": 1.0, + "content": "And to reduce the bias in (7), we estimate", + "type": "text" + }, + { + "bbox": [ + 276, + 346, + 342, + 363 + ], + "score": 0.94, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 344, + 360, + 365 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 344, + 360, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 365, + 426, + 399 + ], + "lines": [ + { + "bbox": [ + 185, + 365, + 426, + 399 + ], + "spans": [ + { + "bbox": [ + 185, + 365, + 426, + 399 + ], + "score": 0.94, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 } \\approx \\Big [ \\frac { N } { \\ell _ { g , 1 } } \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\Big ( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi _ { ( n ) } ) \\Big ) \\Big ]", + "type": "interline_equation", + "image_path": "1bf385f84df0373a81394b89109bf07af8c3d9b104f2abe41cd87ffeb3647fd1.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 365, + 426, + 382.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 382.0, + 426, + 399.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 104, + 399, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 132, + 416 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 403, + 145, + 412 + ], + "score": 0.85, + "content": "N ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 399, + 204, + 416 + ], + "score": 1.0, + "content": "is drawn from", + "type": "text" + }, + { + "bbox": [ + 204, + 402, + 261, + 415 + ], + "score": 0.94, + "content": "\\{ 1 , 2 , \\ldots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 399, + 362, + 416 + ], + "score": 1.0, + "content": "uniformly at random and", + "type": "text" + }, + { + "bbox": [ + 362, + 401, + 434, + 415 + ], + "score": 0.9, + "content": "\\{ \\phi ^ { ( 1 ) } , \\dots , \\phi ^ { ( N ^ { \\prime } ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 399, + 506, + 416 + ], + "score": 1.0, + "content": "are i.i.d. samples.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 103, + 414, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 103, + 414, + 379, + 431 + ], + "score": 1.0, + "content": "It has been shown in [16] that using (8), the estimation bias of", + "type": "text" + }, + { + "bbox": [ + 379, + 415, + 445, + 430 + ], + "score": 0.91, + "content": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 414, + 506, + 431 + ], + "score": 1.0, + "content": "exponentially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 426, + 275, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 260, + 439 + ], + "score": 1.0, + "content": "decreases with the number of samples", + "type": "text" + }, + { + "bbox": [ + 261, + 428, + 271, + 437 + ], + "score": 0.85, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 426, + 275, + 439 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 103, + 399, + 506, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 451, + 304, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 305, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 305, + 464 + ], + "score": 1.0, + "content": "2.2 Main results: Tighter analysis of ALSET", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 257, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 256, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 256, + 483 + ], + "score": 1.0, + "content": "In this subsection, we first describe", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 257, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 257, + 494 + ], + "score": 1.0, + "content": "the general ALSET algorithm for the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 258, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 258, + 505 + ], + "score": 1.0, + "content": "stochastic bilevel problem, and then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 505, + 247, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 247, + 516 + ], + "score": 1.0, + "content": "present its new convergence result.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 471, + 258, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 258, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 259, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 259, + 533 + ], + "score": 1.0, + "content": "This algorithm is very simple to im-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 532, + 258, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 213, + 542 + ], + "score": 1.0, + "content": "plement. At each iteration", + "type": "text" + }, + { + "bbox": [ + 214, + 532, + 220, + 541 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 532, + 258, + 542 + ], + "score": 1.0, + "content": ", ALSET", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 542, + 259, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 259, + 554 + ], + "score": 1.0, + "content": "alternates between the stochastic gra-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 552, + 259, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 169, + 564 + ], + "score": 1.0, + "content": "dient update on", + "type": "text" + }, + { + "bbox": [ + 169, + 552, + 181, + 565 + ], + "score": 0.9, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 553, + 227, + 564 + ], + "score": 1.0, + "content": "and that on", + "type": "text" + }, + { + "bbox": [ + 227, + 552, + 239, + 563 + ], + "score": 0.87, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 553, + 259, + 564 + ], + "score": 1.0, + "content": ". Al-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 564, + 258, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 210, + 575 + ], + "score": 1.0, + "content": "though it is possible that", + "type": "text" + }, + { + "bbox": [ + 210, + 564, + 239, + 574 + ], + "score": 0.9, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 564, + 258, + 575 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 575, + 257, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 180, + 587 + ], + "score": 1.0, + "content": "generality, we run", + "type": "text" + }, + { + "bbox": [ + 180, + 576, + 189, + 585 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 575, + 257, + 587 + ], + "score": 1.0, + "content": "steps of SGD on", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 519, + 259, + 587 + ] + }, + { + "type": "title", + "bbox": [ + 264, + 475, + 502, + 487 + ], + "lines": [ + { + "bbox": [ + 263, + 473, + 503, + 491 + ], + "spans": [ + { + "bbox": [ + 263, + 473, + 503, + 491 + ], + "score": 1.0, + "content": "Algorithm 1 ALSET for the stochastic bilevel problem (1)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "index", + "bbox": [ + 268, + 491, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 268, + 489, + 433, + 506 + ], + "spans": [ + { + "bbox": [ + 268, + 489, + 324, + 506 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 325, + 492, + 350, + 504 + ], + "score": 0.85, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 489, + 392, + 506 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 392, + 492, + 429, + 505 + ], + "score": 0.91, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 489, + 433, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 501, + 396, + 516 + ], + "spans": [ + { + "bbox": [ + 268, + 501, + 297, + 516 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 297, + 504, + 380, + 515 + ], + "score": 0.74, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 501, + 396, + 516 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 514, + 406, + 525 + ], + "spans": [ + { + "bbox": [ + 268, + 514, + 281, + 525 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 296, + 514, + 312, + 525 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 312, + 515, + 392, + 525 + ], + "score": 0.65, + "content": "t = 0 , 1 , \\dots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 514, + 406, + 525 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 521, + 504, + 541 + ], + "spans": [ + { + "bbox": [ + 268, + 525, + 280, + 537 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 308, + 521, + 341, + 541 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 341, + 525, + 435, + 538 + ], + "score": 0.5, + "content": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 521, + 462, + 541 + ], + "score": 1.0, + "content": ". set", + "type": "text" + }, + { + "bbox": [ + 462, + 524, + 504, + 537 + ], + "score": 0.71, + "content": "y ^ { k , 0 } = y ^ { k }", + "type": "inline_equation" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 536, + 330, + 548 + ], + "spans": [ + { + "bbox": [ + 268, + 536, + 280, + 548 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 296, + 536, + 330, + 547 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 542, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 268, + 547, + 280, + 559 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 294, + 542, + 325, + 562 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 325, + 545, + 504, + 560 + ], + "score": 0.32, + "content": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } \\qquad \\Join", + "type": "inline_equation" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 268, + 558, + 316, + 572 + ], + "spans": [ + { + "bbox": [ + 268, + 558, + 316, + 572 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + } + ], + "index": 40, + "bbox_fs": [ + 268, + 489, + 504, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 585, + 504, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 204, + 599 + ], + "score": 1.0, + "content": "the lower-level variable", + "type": "text" + }, + { + "bbox": [ + 205, + 585, + 216, + 597 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 583, + 368, + 599 + ], + "score": 1.0, + "content": "before updating upper-level variable", + "type": "text" + }, + { + "bbox": [ + 368, + 585, + 380, + 596 + ], + "score": 0.88, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 583, + 407, + 599 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 407, + 587, + 420, + 597 + ], + "score": 0.87, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 583, + 438, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 586, + 450, + 597 + ], + "score": 0.88, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 583, + 505, + 599 + ], + "score": 1.0, + "content": "denoting the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 595, + 439, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 155, + 609 + ], + "score": 1.0, + "content": "stepsizes of", + "type": "text" + }, + { + "bbox": [ + 155, + 596, + 167, + 606 + ], + "score": 0.89, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 595, + 185, + 609 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 596, + 196, + 608 + ], + "score": 0.9, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 595, + 439, + 609 + ], + "score": 1.0, + "content": "that decrease at the same rate as SGD, the ALSET update is", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 583, + 505, + 609 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 608, + 450, + 643 + ], + "lines": [ + { + "bbox": [ + 156, + 608, + 450, + 643 + ], + "spans": [ + { + "bbox": [ + 156, + 608, + 450, + 643 + ], + "score": 0.67, + "content": "\\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t } , t = 0 , \\ldots , T \\quad \\mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\\\ & { x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } } \\end{array}", + "type": "interline_equation", + "image_path": "7775e8620eef89883764eb470d0d3da12a03569af54964c183fab4ff648df953.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 156, + 608, + 450, + 619.6666666666666 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 156, + 619.6666666666666, + 450, + 631.3333333333333 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 156, + 631.3333333333333, + 450, + 642.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 644, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 226, + 658 + ], + "score": 1.0, + "content": "where the update direction of", + "type": "text" + }, + { + "bbox": [ + 226, + 647, + 233, + 657 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 641, + 336, + 658 + ], + "score": 1.0, + "content": "is the stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 336, + 644, + 446, + 658 + ], + "score": 0.92, + "content": "h _ { g } ^ { k , t } : = \\nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \\phi ^ { k , t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 641, + 506, + 658 + ], + "score": 1.0, + "content": "; and, with the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 655, + 447, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 320, + 668 + ], + "score": 1.0, + "content": "Hessian inverse estimator (8), the update direction of", + "type": "text" + }, + { + "bbox": [ + 320, + 658, + 327, + 666 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 655, + 447, + 668 + ], + "score": 1.0, + "content": "is the slightly biased gradient", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 641, + 506, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 667, + 483, + 721 + ], + "lines": [ + { + "bbox": [ + 111, + 667, + 483, + 721 + ], + "spans": [ + { + "bbox": [ + 111, + 667, + 483, + 721 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\boldsymbol { h } _ { f } ^ { k } : = \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) } \\\\ & { \\qquad - \\nabla _ { \\boldsymbol { x } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ; \\phi _ { ( 0 ) } ^ { k } ) \\Bigl [ \\frac { N } { \\ell _ { g , 1 } } \\displaystyle \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\left( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { \\boldsymbol { y } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\phi _ { ( n ) } ^ { k } ) \\right) \\Bigr ] \\nabla _ { \\boldsymbol { y } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "7a21c234320bd4b8bc8257adce0dcafa7dd329bc26cd3f099a5c957f8bdfa9e9.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 111, + 667, + 483, + 685.0 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 111, + 685.0, + 483, + 703.0 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 111, + 703.0, + 483, + 721.0 + ], + "spans": [], + "index": 53 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 506, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "The alternating update (9) serves as a template for running SGD on stochastic nested problems.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "As we will show in the subsequent sections, we can generate stochastic algorithms for min-max,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "score": 1.0, + "content": "compositional, and even reinforcement learning problems following (9) as a template, but they differ", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 103, + 102, + 508, + 123 + ], + "spans": [ + { + "bbox": [ + 103, + 102, + 314, + 123 + ], + "score": 1.0, + "content": "in the particular forms of the stochastic gradients", + "type": "text" + }, + { + "bbox": [ + 315, + 105, + 342, + 119 + ], + "score": 0.93, + "content": "h _ { g } ^ { k } , h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 102, + 508, + 123 + ], + "score": 1.0, + "content": "for the specific upper- and lower-level", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 117, + 457, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 457, + 131 + ], + "score": 1.0, + "content": "objective functions. See Algorithm 1 for a summary of ALSET for the bilevel problem.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 506, + 224 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "score": 1.0, + "content": "Comparison between ALSET with existing works. Readers who are familiar with recent develop-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "ments on stochastic optimization for bilevel problems may readily recognize the similarities between", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "the general ALSET update (1) that we will analyze and the SGD-based updates in BSA [16], TTSA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 166, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 466, + 179 + ], + "score": 1.0, + "content": "[18] and stocBiO [17]. However, the update (1) is different from BSA in that the number of", + "type": "text" + }, + { + "bbox": [ + 467, + 168, + 473, + 178 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 166, + 506, + 179 + ], + "score": 1.0, + "content": "-update,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 150, + 189 + ], + "score": 1.0, + "content": "denoted as", + "type": "text" + }, + { + "bbox": [ + 150, + 177, + 159, + 187 + ], + "score": 0.77, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 177, + 383, + 189 + ], + "score": 1.0, + "content": ", is a constant in (1) that does not grow with the accuracy", + "type": "text" + }, + { + "bbox": [ + 383, + 177, + 399, + 187 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "; the update (1) is different", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 278, + 201 + ], + "score": 1.0, + "content": "from stocBiO in that the stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 279, + 188, + 295, + 201 + ], + "score": 0.9, + "content": "h _ { g } ^ { k , \\bar { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 186, + 341, + 201 + ], + "score": 1.0, + "content": "used in the", + "type": "text" + }, + { + "bbox": [ + 341, + 190, + 348, + 200 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "-update (9a) is obtained by a fixed batch", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 272, + 214 + ], + "score": 1.0, + "content": "size that does not depend on the accuracy", + "type": "text" + }, + { + "bbox": [ + 273, + 201, + 288, + 212 + ], + "score": 0.88, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "; and, the update (1) is different from TTSA in that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 213, + 338, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 144, + 224 + ], + "score": 1.0, + "content": "stepsizes", + "type": "text" + }, + { + "bbox": [ + 145, + 213, + 157, + 223 + ], + "score": 0.87, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 213, + 175, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 175, + 213, + 187, + 223 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 213, + 338, + 224 + ], + "score": 1.0, + "content": "in (9) decrease at the same timescale.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 309, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 309, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 309, + 241 + ], + "score": 1.0, + "content": "We next present the convergence result of ALSET.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 242, + 461, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 461, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 325, + 256 + ], + "score": 1.0, + "content": "Theorem 1 (Bilevel problems). Suppose Assumptions", + "type": "text" + }, + { + "bbox": [ + 326, + 243, + 342, + 253 + ], + "score": 0.33, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 241, + 461, + 256 + ], + "score": 1.0, + "content": "hold. Define the constants as", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 257, + 464, + 288 + ], + "lines": [ + { + "bbox": [ + 146, + 257, + 464, + 288 + ], + "spans": [ + { + "bbox": [ + 146, + 257, + 464, + 288 + ], + "score": 0.93, + "content": "\\bar { \\alpha } _ { 1 } = \\frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \\frac { 2 L _ { f } L _ { y x } } { L _ { y } \\eta } } , \\bar { \\alpha } _ { 2 } = \\frac { 1 6 T \\mu _ { g } \\ell _ { g , 1 } } { ( \\mu _ { g } + \\ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } ) }", + "type": "interline_equation", + "image_path": "79c8b2b6e6326d1fc912d6f4ff787cd1e9a7ae39d3010165903168b0ae621358.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 146, + 257, + 464, + 267.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 146, + 267.3333333333333, + 464, + 277.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 146, + 277.66666666666663, + 464, + 287.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 503, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 132, + 303 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 291, + 157, + 303 + ], + "score": 0.9, + "content": "\\eta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "is a control constant that will be specified in each special case to achieve the best sample", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 301, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 175, + 315 + ], + "score": 1.0, + "content": "complexity. With", + "type": "text" + }, + { + "bbox": [ + 176, + 302, + 201, + 312 + ], + "score": 0.88, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 301, + 504, + 315 + ], + "score": 1.0, + "content": "being a control constant that will be specified later, choose the stepsizes as", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 316, + 443, + 347 + ], + "lines": [ + { + "bbox": [ + 169, + 316, + 443, + 347 + ], + "spans": [ + { + "bbox": [ + 169, + 316, + 443, + 347 + ], + "score": 0.93, + "content": "\\alpha _ { k } = \\operatorname* { m i n } \\left\\{ \\bar { \\alpha } _ { 1 } , \\bar { \\alpha } _ { 2 } , \\frac { \\alpha } { \\sqrt { K } } \\right\\} \\mathrm { a n d } \\beta _ { k } = \\frac { 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } } { 4 T \\mu _ { g } } \\alpha _ { k } .", + "type": "interline_equation", + "image_path": "3e120d90f75f0297b0c10a6f222a57eac89097f7d5d141148bc0f397ac5a8e28.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 316, + 443, + 326.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 326.3333333333333, + 443, + 336.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 336.66666666666663, + 443, + 346.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 350, + 469, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 139, + 365 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 140, + 351, + 166, + 362 + ], + "score": 0.9, + "content": "T \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 349, + 185, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 351, + 248, + 363 + ], + "score": 0.93, + "content": "N = \\mathcal { O } ( \\log K )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 349, + 299, + 365 + ], + "score": 1.0, + "content": ", the iterates", + "type": "text" + }, + { + "bbox": [ + 299, + 350, + 335, + 363 + ], + "score": 0.93, + "content": "\\{ x ^ { k } , y ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 349, + 433, + 365 + ], + "score": 1.0, + "content": "generated by Algorithm", + "type": "text" + }, + { + "bbox": [ + 433, + 352, + 439, + 361 + ], + "score": 0.43, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 349, + 469, + 365 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 366, + 456, + 397 + ], + "lines": [ + { + "bbox": [ + 155, + 366, + 456, + 397 + ], + "spans": [ + { + "bbox": [ + 155, + 366, + 456, + 397 + ], + "score": 0.95, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) \\ \\mathrm { ~ a n d ~ } \\ \\mathbb { E } \\left[ \\left. y ^ { K } - y ^ { * } ( x ^ { K } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big )", + "type": "interline_equation", + "image_path": "ee4d39cf8a06a92bc52d88a068a1b6601d520d6e78207f1559b790059bfe0ee3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 155, + 366, + 456, + 376.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 376.3333333333333, + 456, + 386.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 386.66666666666663, + 456, + 396.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 374, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 371, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 133, + 414 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 399, + 165, + 412 + ], + "score": 0.92, + "content": "y ^ { * } ( x ^ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 398, + 371, + 414 + ], + "score": 1.0, + "content": "is the minimizer of the lower-level problem in (1b).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 474, + 427 + ], + "score": 1.0, + "content": "Proposition 2. Under the same assumptions and the choice of parameters of Theorem", + "type": "text" + }, + { + "bbox": [ + 474, + 415, + 479, + 424 + ], + "score": 0.53, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 414, + 505, + 427 + ], + "score": 1.0, + "content": ", with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 422, + 503, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 425, + 145, + 442 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\kappa : = { \\frac { \\ell _ { g , 1 } } { \\mu _ { g } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 422, + 503, + 444 + ], + "score": 1.0, + "content": "`g,1µg being the condition number, select α = Θ(κ−5/2), T = Θ(κ4), η = O(κ) in (12), and then", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 444, + 391, + 476 + ], + "lines": [ + { + "bbox": [ + 220, + 444, + 391, + 476 + ], + "spans": [ + { + "bbox": [ + 220, + 444, + 391, + 476 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } [ \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 3 } } { K } + \\frac { \\kappa ^ { \\frac { 5 } { 2 } } } { \\sqrt { K } } \\right) .", + "type": "interline_equation", + "image_path": "09ac042456c3c18279a5161be2686d8e5fc76a67f9f540c756e404cff284d838.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 220, + 444, + 391, + 460.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 220, + 460.0, + 391, + 476.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 258, + 497 + ], + "score": 1.0, + "content": "Discussion of Theorem 1. To achieve", + "type": "text" + }, + { + "bbox": [ + 259, + 487, + 263, + 495 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 483, + 365, + 497 + ], + "score": 1.0, + "content": "-stationary point, we need", + "type": "text" + }, + { + "bbox": [ + 365, + 484, + 429, + 497 + ], + "score": 0.93, + "content": "K = \\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 483, + 506, + 497 + ], + "score": 1.0, + "content": ", and the number of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 493, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 164, + 511 + ], + "score": 1.0, + "content": "evaluations of", + "type": "text" + }, + { + "bbox": [ + 164, + 495, + 196, + 510 + ], + "score": 0.93, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 493, + 212, + 511 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 213, + 496, + 254, + 509 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 493, + 272, + 511 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 496, + 314, + 509 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 493, + 506, + 511 + ], + "score": 1.0, + "content": ", respectively. Therefore, the sample complexity", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "is on the same order of SGD’s sample complexity for the single-level nonconvex problems [43], and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 386, + 534 + ], + "score": 1.0, + "content": "improves the state-of-the-art single-loop TTSA’s sample complexity", + "type": "text" + }, + { + "bbox": [ + 387, + 519, + 425, + 532 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "[18]. Compared to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 374, + 546 + ], + "score": 1.0, + "content": "[17], ALSET achieves the same sample complexity in terms of both", + "type": "text" + }, + { + "bbox": [ + 374, + 534, + 380, + 541 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 529, + 397, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 534, + 404, + 541 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 529, + 506, + 546 + ], + "score": 1.0, + "content": ", without using a growing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 542, + 496, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 496, + 555 + ], + "score": 1.0, + "content": "batch size. Importantly, we obtain this tighter bound without introducing additional assumptions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 566, + 184, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 185, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 185, + 578 + ], + "score": 1.0, + "content": "2.3 Proof sketch", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "In this subsection, we highlight the key steps of the proof towards Theorem 1, and highlight the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 596, + 327, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 327, + 610 + ], + "score": 1.0, + "content": "differences between our analysis and the existing ones.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 104, + 612, + 504, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 612, + 359, + 631 + ], + "score": 1.0, + "content": "For simplicity, we define the following Lyapunov function as", + "type": "text" + }, + { + "bbox": [ + 359, + 613, + 504, + 631 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { V } ^ { k } : = F ( x ^ { k } ) + \\frac { L _ { f } } { L _ { y } } \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 628, + 379, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 379, + 642 + ], + "score": 1.0, + "content": "We first quantify the difference between two Lyapunov functions as", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 643, + 468, + 676 + ], + "lines": [ + { + "bbox": [ + 126, + 643, + 468, + 676 + ], + "spans": [ + { + "bbox": [ + 126, + 643, + 468, + 676 + ], + "score": 0.92, + "content": "\\mathbb { V } ^ { k + 1 } - \\mathbb { V } ^ { k } = \\underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \\mathrm { L e m m a ~ 1 } } + \\ \\frac { L _ { f } } { L _ { y } } ( \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } - \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "0bbd232b11bca2202c481c5429735f7c440dee2f83e9c510d4498521e53c3525.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 126, + 643, + 468, + 654.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 126, + 654.0, + 468, + 665.0 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 126, + 665.0, + 468, + 676.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 683, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "The difference in (15) consists of two difference terms: the first term quantifies the descent of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 694, + 485, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 485, + 707 + ], + "score": 1.0, + "content": "overall objective functions; the second term characterizes the descent of the lower-level errors.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 105, + 710, + 425, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 426, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 426, + 724 + ], + "score": 1.0, + "content": "We will first analyze the descent of the upper-level objective in the next lemma.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 506, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 86 + ], + "score": 1.0, + "content": "The alternating update (9) serves as a template for running SGD on stochastic nested problems.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "As we will show in the subsequent sections, we can generate stochastic algorithms for min-max,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 107 + ], + "score": 1.0, + "content": "compositional, and even reinforcement learning problems following (9) as a template, but they differ", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 103, + 102, + 508, + 123 + ], + "spans": [ + { + "bbox": [ + 103, + 102, + 314, + 123 + ], + "score": 1.0, + "content": "in the particular forms of the stochastic gradients", + "type": "text" + }, + { + "bbox": [ + 315, + 105, + 342, + 119 + ], + "score": 0.93, + "content": "h _ { g } ^ { k } , h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 102, + 508, + 123 + ], + "score": 1.0, + "content": "for the specific upper- and lower-level", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 117, + 457, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 457, + 131 + ], + "score": 1.0, + "content": "objective functions. See Algorithm 1 for a summary of ALSET for the bilevel problem.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 103, + 72, + 508, + 131 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 506, + 224 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 506, + 146 + ], + "score": 1.0, + "content": "Comparison between ALSET with existing works. Readers who are familiar with recent develop-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "ments on stochastic optimization for bilevel problems may readily recognize the similarities between", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 167 + ], + "score": 1.0, + "content": "the general ALSET update (1) that we will analyze and the SGD-based updates in BSA [16], TTSA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 166, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 466, + 179 + ], + "score": 1.0, + "content": "[18] and stocBiO [17]. However, the update (1) is different from BSA in that the number of", + "type": "text" + }, + { + "bbox": [ + 467, + 168, + 473, + 178 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 166, + 506, + 179 + ], + "score": 1.0, + "content": "-update,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 150, + 189 + ], + "score": 1.0, + "content": "denoted as", + "type": "text" + }, + { + "bbox": [ + 150, + 177, + 159, + 187 + ], + "score": 0.77, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 177, + 383, + 189 + ], + "score": 1.0, + "content": ", is a constant in (1) that does not grow with the accuracy", + "type": "text" + }, + { + "bbox": [ + 383, + 177, + 399, + 187 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "; the update (1) is different", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 278, + 201 + ], + "score": 1.0, + "content": "from stocBiO in that the stochastic gradient", + "type": "text" + }, + { + "bbox": [ + 279, + 188, + 295, + 201 + ], + "score": 0.9, + "content": "h _ { g } ^ { k , \\bar { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 186, + 341, + 201 + ], + "score": 1.0, + "content": "used in the", + "type": "text" + }, + { + "bbox": [ + 341, + 190, + 348, + 200 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "-update (9a) is obtained by a fixed batch", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 272, + 214 + ], + "score": 1.0, + "content": "size that does not depend on the accuracy", + "type": "text" + }, + { + "bbox": [ + 273, + 201, + 288, + 212 + ], + "score": 0.88, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "; and, the update (1) is different from TTSA in that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 213, + 338, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 144, + 224 + ], + "score": 1.0, + "content": "stepsizes", + "type": "text" + }, + { + "bbox": [ + 145, + 213, + 157, + 223 + ], + "score": 0.87, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 213, + 175, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 175, + 213, + 187, + 223 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 213, + 338, + 224 + ], + "score": 1.0, + "content": "in (9) decrease at the same timescale.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 132, + 506, + 224 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 309, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 309, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 309, + 241 + ], + "score": 1.0, + "content": "We next present the convergence result of ALSET.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 228, + 309, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 242, + 461, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 461, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 325, + 256 + ], + "score": 1.0, + "content": "Theorem 1 (Bilevel problems). Suppose Assumptions", + "type": "text" + }, + { + "bbox": [ + 326, + 243, + 342, + 253 + ], + "score": 0.33, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 241, + 461, + 256 + ], + "score": 1.0, + "content": "hold. Define the constants as", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 241, + 461, + 256 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 257, + 464, + 288 + ], + "lines": [ + { + "bbox": [ + 146, + 257, + 464, + 288 + ], + "spans": [ + { + "bbox": [ + 146, + 257, + 464, + 288 + ], + "score": 0.93, + "content": "\\bar { \\alpha } _ { 1 } = \\frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \\frac { 2 L _ { f } L _ { y x } } { L _ { y } \\eta } } , \\bar { \\alpha } _ { 2 } = \\frac { 1 6 T \\mu _ { g } \\ell _ { g , 1 } } { ( \\mu _ { g } + \\ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } ) }", + "type": "interline_equation", + "image_path": "79c8b2b6e6326d1fc912d6f4ff787cd1e9a7ae39d3010165903168b0ae621358.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 146, + 257, + 464, + 267.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 146, + 267.3333333333333, + 464, + 277.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 146, + 277.66666666666663, + 464, + 287.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 503, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 132, + 303 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 291, + 157, + 303 + ], + "score": 0.9, + "content": "\\eta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "is a control constant that will be specified in each special case to achieve the best sample", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 301, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 175, + 315 + ], + "score": 1.0, + "content": "complexity. With", + "type": "text" + }, + { + "bbox": [ + 176, + 302, + 201, + 312 + ], + "score": 0.88, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 301, + 504, + 315 + ], + "score": 1.0, + "content": "being a control constant that will be specified later, choose the stepsizes as", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 291, + 505, + 315 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 316, + 443, + 347 + ], + "lines": [ + { + "bbox": [ + 169, + 316, + 443, + 347 + ], + "spans": [ + { + "bbox": [ + 169, + 316, + 443, + 347 + ], + "score": 0.93, + "content": "\\alpha _ { k } = \\operatorname* { m i n } \\left\\{ \\bar { \\alpha } _ { 1 } , \\bar { \\alpha } _ { 2 } , \\frac { \\alpha } { \\sqrt { K } } \\right\\} \\mathrm { a n d } \\beta _ { k } = \\frac { 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } } { 4 T \\mu _ { g } } \\alpha _ { k } .", + "type": "interline_equation", + "image_path": "3e120d90f75f0297b0c10a6f222a57eac89097f7d5d141148bc0f397ac5a8e28.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 316, + 443, + 326.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 326.3333333333333, + 443, + 336.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 336.66666666666663, + 443, + 346.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 350, + 469, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 139, + 365 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 140, + 351, + 166, + 362 + ], + "score": 0.9, + "content": "T \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 349, + 185, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 351, + 248, + 363 + ], + "score": 0.93, + "content": "N = \\mathcal { O } ( \\log K )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 349, + 299, + 365 + ], + "score": 1.0, + "content": ", the iterates", + "type": "text" + }, + { + "bbox": [ + 299, + 350, + 335, + 363 + ], + "score": 0.93, + "content": "\\{ x ^ { k } , y ^ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 349, + 433, + 365 + ], + "score": 1.0, + "content": "generated by Algorithm", + "type": "text" + }, + { + "bbox": [ + 433, + 352, + 439, + 361 + ], + "score": 0.43, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 349, + 469, + 365 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 349, + 469, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 366, + 456, + 397 + ], + "lines": [ + { + "bbox": [ + 155, + 366, + 456, + 397 + ], + "spans": [ + { + "bbox": [ + 155, + 366, + 456, + 397 + ], + "score": 0.95, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) \\ \\mathrm { ~ a n d ~ } \\ \\mathbb { E } \\left[ \\left. y ^ { K } - y ^ { * } ( x ^ { K } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big )", + "type": "interline_equation", + "image_path": "ee4d39cf8a06a92bc52d88a068a1b6601d520d6e78207f1559b790059bfe0ee3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 155, + 366, + 456, + 376.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 376.3333333333333, + 456, + 386.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 386.66666666666663, + 456, + 396.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 374, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 371, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 133, + 414 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 399, + 165, + 412 + ], + "score": 0.92, + "content": "y ^ { * } ( x ^ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 398, + 371, + 414 + ], + "score": 1.0, + "content": "is the minimizer of the lower-level problem in (1b).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 398, + 371, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 474, + 427 + ], + "score": 1.0, + "content": "Proposition 2. Under the same assumptions and the choice of parameters of Theorem", + "type": "text" + }, + { + "bbox": [ + 474, + 415, + 479, + 424 + ], + "score": 0.53, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 414, + 505, + 427 + ], + "score": 1.0, + "content": ", with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 422, + 503, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 425, + 145, + 442 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\kappa : = { \\frac { \\ell _ { g , 1 } } { \\mu _ { g } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 422, + 503, + 444 + ], + "score": 1.0, + "content": "`g,1µg being the condition number, select α = Θ(κ−5/2), T = Θ(κ4), η = O(κ) in (12), and then", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 414, + 505, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 444, + 391, + 476 + ], + "lines": [ + { + "bbox": [ + 220, + 444, + 391, + 476 + ], + "spans": [ + { + "bbox": [ + 220, + 444, + 391, + 476 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } [ \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 3 } } { K } + \\frac { \\kappa ^ { \\frac { 5 } { 2 } } } { \\sqrt { K } } \\right) .", + "type": "interline_equation", + "image_path": "09ac042456c3c18279a5161be2686d8e5fc76a67f9f540c756e404cff284d838.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 220, + 444, + 391, + 460.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 220, + 460.0, + 391, + 476.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 258, + 497 + ], + "score": 1.0, + "content": "Discussion of Theorem 1. To achieve", + "type": "text" + }, + { + "bbox": [ + 259, + 487, + 263, + 495 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 483, + 365, + 497 + ], + "score": 1.0, + "content": "-stationary point, we need", + "type": "text" + }, + { + "bbox": [ + 365, + 484, + 429, + 497 + ], + "score": 0.93, + "content": "K = \\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 483, + 506, + 497 + ], + "score": 1.0, + "content": ", and the number of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 493, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 164, + 511 + ], + "score": 1.0, + "content": "evaluations of", + "type": "text" + }, + { + "bbox": [ + 164, + 495, + 196, + 510 + ], + "score": 0.93, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 493, + 212, + 511 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 213, + 496, + 254, + 509 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 493, + 272, + 511 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 496, + 314, + 509 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 493, + 506, + 511 + ], + "score": 1.0, + "content": ", respectively. Therefore, the sample complexity", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "is on the same order of SGD’s sample complexity for the single-level nonconvex problems [43], and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 386, + 534 + ], + "score": 1.0, + "content": "improves the state-of-the-art single-loop TTSA’s sample complexity", + "type": "text" + }, + { + "bbox": [ + 387, + 519, + 425, + 532 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "[18]. Compared to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 374, + 546 + ], + "score": 1.0, + "content": "[17], ALSET achieves the same sample complexity in terms of both", + "type": "text" + }, + { + "bbox": [ + 374, + 534, + 380, + 541 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 529, + 397, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 534, + 404, + 541 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 529, + 506, + 546 + ], + "score": 1.0, + "content": ", without using a growing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 542, + 496, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 496, + 555 + ], + "score": 1.0, + "content": "batch size. Importantly, we obtain this tighter bound without introducing additional assumptions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 483, + 506, + 555 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 566, + 184, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 185, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 185, + 578 + ], + "score": 1.0, + "content": "2.3 Proof sketch", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "In this subsection, we highlight the key steps of the proof towards Theorem 1, and highlight the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 596, + 327, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 327, + 610 + ], + "score": 1.0, + "content": "differences between our analysis and the existing ones.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 585, + 505, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 104, + 612, + 504, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 612, + 359, + 631 + ], + "score": 1.0, + "content": "For simplicity, we define the following Lyapunov function as", + "type": "text" + }, + { + "bbox": [ + 359, + 613, + 504, + 631 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { V } ^ { k } : = F ( x ^ { k } ) + \\frac { L _ { f } } { L _ { y } } \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 628, + 379, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 379, + 642 + ], + "score": 1.0, + "content": "We first quantify the difference between two Lyapunov functions as", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 612, + 504, + 642 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 643, + 468, + 676 + ], + "lines": [ + { + "bbox": [ + 126, + 643, + 468, + 676 + ], + "spans": [ + { + "bbox": [ + 126, + 643, + 468, + 676 + ], + "score": 0.92, + "content": "\\mathbb { V } ^ { k + 1 } - \\mathbb { V } ^ { k } = \\underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \\mathrm { L e m m a ~ 1 } } + \\ \\frac { L _ { f } } { L _ { y } } ( \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } - \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "0bbd232b11bca2202c481c5429735f7c440dee2f83e9c510d4498521e53c3525.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 126, + 643, + 468, + 654.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 126, + 654.0, + 468, + 665.0 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 126, + 665.0, + 468, + 676.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 683, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "The difference in (15) consists of two difference terms: the first term quantifies the descent of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 694, + 485, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 485, + 707 + ], + "score": 1.0, + "content": "overall objective functions; the second term characterizes the descent of the lower-level errors.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 106, + 683, + 505, + 707 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 710, + 425, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 426, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 426, + 724 + ], + "score": 1.0, + "content": "We will first analyze the descent of the upper-level objective in the next lemma.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 709, + 426, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 71, + 505, + 99 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 504, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 344, + 87 + ], + "score": 1.0, + "content": "Lemma 1 (Descent of upper level). Suppose Assumptions", + "type": "text" + }, + { + "bbox": [ + 345, + 73, + 361, + 83 + ], + "score": 0.45, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 70, + 415, + 87 + ], + "score": 1.0, + "content": "hold. Define", + "type": "text" + }, + { + "bbox": [ + 415, + 72, + 504, + 87 + ], + "score": 0.92, + "content": "\\bar { h } _ { f } ^ { k } : = \\mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 85, + 461, + 100 + ], + "spans": [ + { + "bbox": [ + 105, + 85, + 124, + 100 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 85, + 237, + 100 + ], + "score": 0.92, + "content": "\\| \\bar { h } _ { f } ^ { k } - \\overline { { \\nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \\| \\leq b _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 85, + 309, + 100 + ], + "score": 1.0, + "content": ". The sequence of", + "type": "text" + }, + { + "bbox": [ + 309, + 86, + 320, + 97 + ], + "score": 0.86, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 85, + 419, + 100 + ], + "score": 1.0, + "content": "generated by Algorithm", + "type": "text" + }, + { + "bbox": [ + 419, + 88, + 425, + 96 + ], + "score": 0.48, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 85, + 461, + 100 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 104, + 453, + 154 + ], + "lines": [ + { + "bbox": [ + 157, + 104, + 453, + 154 + ], + "spans": [ + { + "bbox": [ + 157, + 104, + 453, + 154 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \\mathbb { E } [ F ( { x } ^ { k } ) ] \\le - \\frac { \\alpha _ { k } } { 2 } \\mathbb { E } [ \\| \\nabla F ( { x } ^ { k } ) \\| ^ { 2 } ] - \\left( \\frac { \\alpha _ { k } } { 2 } - \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\right) \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] } \\\\ { + L _ { f } ^ { 2 } \\alpha _ { k } \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \\| ^ { 2 } ] + \\alpha _ { k } b _ { k } ^ { 2 } + \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "2a3141b40dc386e6a42edbb33ed58c26f3e76b70442129d8b4a261e097a0f821.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 157, + 104, + 453, + 120.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 120.66666666666667, + 453, + 137.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 157, + 137.33333333333334, + 453, + 154.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 157, + 448, + 171 + ], + "lines": [ + { + "bbox": [ + 108, + 157, + 449, + 172 + ], + "spans": [ + { + "bbox": [ + 108, + 157, + 175, + 172 + ], + "score": 1.0, + "content": "where constants", + "type": "text" + }, + { + "bbox": [ + 176, + 158, + 222, + 172 + ], + "score": 0.94, + "content": "L _ { f } , L _ { F } , \\sigma _ { f } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 157, + 449, + 172 + ], + "score": 1.0, + "content": "are defined in Lemma 4 of the supplementary document.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 179, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 505, + 192 + ], + "score": 1.0, + "content": "Lemma 1 implies that the descent of the upper-level objective functions depends on the error of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 188, + 204 + ], + "score": 1.0, + "content": "lower-level variable", + "type": "text" + }, + { + "bbox": [ + 189, + 190, + 200, + 202 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 189, + 505, + 204 + ], + "score": 1.0, + "content": ". We will next analyze the error of the lower-level variable, which is the key", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 258, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 258, + 214 + ], + "score": 1.0, + "content": "step to improving the existing results.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 506, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 230, + 231 + ], + "score": 1.0, + "content": "Before we analyze the error of", + "type": "text" + }, + { + "bbox": [ + 230, + 217, + 241, + 229 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 216, + 480, + 231 + ], + "score": 1.0, + "content": ", we introduce a lemma that characterizes the smoothness of", + "type": "text" + }, + { + "bbox": [ + 481, + 219, + 505, + 230 + ], + "score": 0.93, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 223, + 242 + ], + "score": 1.0, + "content": "and the bounded moments of", + "type": "text" + }, + { + "bbox": [ + 223, + 229, + 235, + 243 + ], + "score": 0.9, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 229, + 505, + 242 + ], + "score": 1.0, + "content": ". The smoothness and the bounded moments have not been explored", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 492, + 256 + ], + "score": 1.0, + "content": "by previous analysis such as [16–18], and they play an essential role in our improved analysis of", + "type": "text" + }, + { + "bbox": [ + 492, + 243, + 502, + 255 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 243, + 506, + 256 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 432, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 433, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 363, + 272 + ], + "score": 1.0, + "content": "Lemma 2 (Smoothness and boundedness). Under Assumptions", + "type": "text" + }, + { + "bbox": [ + 363, + 259, + 369, + 268 + ], + "score": 0.28, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 257, + 433, + 272 + ], + "score": 1.0, + "content": "and 2, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 275, + 446, + 291 + ], + "lines": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "spans": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\| \\nabla y ^ { * } ( x _ { 1 } ) - \\nabla y ^ { * } ( x _ { 2 } ) \\| \\leq L _ { y x } \\| x _ { 1 } - x _ { 2 } \\| ; \\quad \\mathbb { E } [ \\| h _ { f } ^ { k } \\| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \\leq \\tilde { C } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "d9a1d7e8eaf3f12c30dc52cd9e0e2fc1f84366c496a4926e202f22510357246f.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 298, + 393, + 311 + ], + "lines": [ + { + "bbox": [ + 104, + 295, + 396, + 313 + ], + "spans": [ + { + "bbox": [ + 104, + 295, + 133, + 313 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 299, + 150, + 311 + ], + "score": 0.9, + "content": "L _ { y x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 295, + 169, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 297, + 183, + 312 + ], + "score": 0.9, + "content": "\\tilde { C } _ { f } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 295, + 396, + 313 + ], + "score": 1.0, + "content": "depend on the constants defined in Assumptions 1-2.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 319, + 415, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 416, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 416, + 334 + ], + "score": 1.0, + "content": "Building upon Lemma 2, we establish the progress of the lower-level update.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 506, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 416, + 349 + ], + "score": 1.0, + "content": "Lemma 3 (Error of lower level). Suppose that Assumptions 1–3 hold, and", + "type": "text" + }, + { + "bbox": [ + 417, + 334, + 438, + 347 + ], + "score": 0.91, + "content": "y ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 331, + 506, + 349 + ], + "score": 1.0, + "content": "is generated by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 341, + 424, + 366 + ], + "spans": [ + { + "bbox": [ + 102, + 341, + 215, + 366 + ], + "score": 1.0, + "content": "running iteration (9) given", + "type": "text" + }, + { + "bbox": [ + 216, + 345, + 227, + 356 + ], + "score": 0.85, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 341, + 284, + 366 + ], + "score": 1.0, + "content": ". If we choose", + "type": "text" + }, + { + "bbox": [ + 284, + 345, + 339, + 361 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\beta _ { k } \\le \\frac { 2 ^ { \\binom { - } { q } } } { \\mu _ { g } + \\ell _ { g , 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 341, + 363, + 366 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 363, + 345, + 384, + 357 + ], + "score": 0.91, + "content": "y ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 341, + 424, + 366 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 364, + 470, + 439 + ], + "lines": [ + { + "bbox": [ + 119, + 364, + 470, + 439 + ], + "spans": [ + { + "bbox": [ + 119, + 364, + 470, + 439 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] \\leq ( 1 - \\mu _ { g } \\beta _ { k } ) ^ { T } \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + T \\beta _ { k } ^ { 2 } \\sigma _ { g , 1 } ^ { 2 } } \\\\ & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq \\Big ( 1 + 4 L _ { f } L _ { y } \\alpha _ { k } + \\frac { \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } } { 2 } \\alpha _ { k } ^ { 2 } \\Big ) \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] } \\\\ & { \\qquad + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y } } { 4 L _ { f } \\alpha _ { k } } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "36f957552fc5b6f0a43162e367f234b8417c32cda20a4e5c9316c08d993678a9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 119, + 364, + 470, + 389.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 119, + 389.0, + 470, + 414.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 119, + 414.0, + 470, + 439.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 441, + 466, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 468, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 133, + 455 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 442, + 158, + 453 + ], + "score": 0.9, + "content": "\\eta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 441, + 468, + 455 + ], + "score": 1.0, + "content": "is a fixed constant that will be chosen to obtain the tighter complexity bound.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "The improved analysis of the lower-level problem. Next we explain where we can obtain improved", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 473, + 482, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 343, + 486 + ], + "score": 1.0, + "content": "analysis. Plugging (18a) into (18b), and selecting stepsizes", + "type": "text" + }, + { + "bbox": [ + 344, + 474, + 371, + 485 + ], + "score": 0.92, + "content": "\\alpha _ { k } , \\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 473, + 482, + 486 + ], + "score": 1.0, + "content": "properly, we can show that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 489, + 477, + 506 + ], + "lines": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "spans": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\delta _ { 3 } T \\sigma _ { g , 1 } ^ { 2 } + \\delta _ { 4 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "f1718faffb799525f7fa8be06e5da0480c738b8b36fe9a1eaf7206a9a7e1bab0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 506, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 205, + 525 + ], + "score": 1.0, + "content": "where the constants are", + "type": "text" + }, + { + "bbox": [ + 205, + 511, + 417, + 524 + ], + "score": 0.73, + "content": "\\delta _ { 1 } \\in [ 0 , 1 ) , \\delta _ { 2 } = \\mathcal { O } ( \\alpha _ { k } ) , \\delta _ { 3 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } ) , \\delta _ { 4 } = \\mathcal { O } ( \\alpha _ { k } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ". As we will show in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 522, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 261, + 538 + ], + "score": 1.0, + "content": "our supplementary material, the term", + "type": "text" + }, + { + "bbox": [ + 261, + 524, + 299, + 538 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 522, + 506, + 538 + ], + "score": 1.0, + "content": "will be canceled when combined with (16) in our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 536, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 216, + 552 + ], + "score": 1.0, + "content": "analysis. Hence, choosing", + "type": "text" + }, + { + "bbox": [ + 217, + 538, + 283, + 550 + ], + "score": 0.92, + "content": "\\alpha _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 536, + 302, + 552 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 302, + 537, + 368, + 550 + ], + "score": 0.93, + "content": "\\beta _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 536, + 506, + 552 + ], + "score": 1.0, + "content": "makes the variance terms in (19)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 473, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 191, + 564 + ], + "score": 1.0, + "content": "decrease at the same", + "type": "text" + }, + { + "bbox": [ + 191, + 550, + 232, + 563 + ], + "score": 0.93, + "content": "\\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 549, + 473, + 564 + ], + "score": 1.0, + "content": "rate as the vanilla SGD for stochastic non-nested problems.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 566, + 472, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 472, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 472, + 580 + ], + "score": 1.0, + "content": "As a comparison, the progress of the lower-level problem in [18, 17] can be summarized as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 584, + 434, + 599 + ], + "lines": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "spans": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 5 } \\sigma ^ { 2 }", + "type": "interline_equation", + "image_path": "3576c911fd6a242b95c18e8b66b3825d39d169a6cdda8a060ef3287777835a48.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 133, + 618 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 604, + 146, + 614 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 603, + 323, + 618 + ], + "score": 1.0, + "content": "is some variance term, and the constant is", + "type": "text" + }, + { + "bbox": [ + 323, + 603, + 415, + 616 + ], + "score": 0.9, + "content": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 603, + 428, + 618 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 428, + 604, + 467, + 616 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / B _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 603, + 490, + 618 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 490, + 605, + 504, + 615 + ], + "score": 0.85, + "content": "B _ { k }", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 231, + 630 + ], + "score": 1.0, + "content": "being the batch size at iteration", + "type": "text" + }, + { + "bbox": [ + 231, + 617, + 237, + 626 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 614, + 353, + 630 + ], + "score": 1.0, + "content": ". To balance the two terms in", + "type": "text" + }, + { + "bbox": [ + 353, + 617, + 441, + 628 + ], + "score": 0.9, + "content": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 614, + 506, + 630 + ], + "score": 1.0, + "content": ", two timescales", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 156, + 640 + ], + "score": 1.0, + "content": "of stepsizes", + "type": "text" + }, + { + "bbox": [ + 156, + 627, + 238, + 639 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 626, + 456, + 640 + ], + "score": 1.0, + "content": "are needed, which will make the variance term of the", + "type": "text" + }, + { + "bbox": [ + 457, + 630, + 463, + 639 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "-update in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "score": 1.0, + "content": "(20) and that of the", + "type": "text" + }, + { + "bbox": [ + 185, + 640, + 192, + 648 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "-update in (16) decrease at two different rates, slower than that of SGD; and to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 649, + 444, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 136, + 661 + ], + "score": 1.0, + "content": "reduce", + "type": "text" + }, + { + "bbox": [ + 136, + 649, + 197, + 661 + ], + "score": 0.93, + "content": "\\delta _ { 5 } = \\mathcal { O } ( 1 / B _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 286, + 661 + ], + "score": 1.0, + "content": ", a growing batch size", + "type": "text" + }, + { + "bbox": [ + 286, + 649, + 334, + 661 + ], + "score": 0.93, + "content": "B _ { k } = \\mathcal { O } ( k )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 649, + 404, + 661 + ], + "score": 1.0, + "content": "is needed for the", + "type": "text" + }, + { + "bbox": [ + 404, + 651, + 410, + 660 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 649, + 444, + 661 + ], + "score": 1.0, + "content": "-update.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 105, + 669, + 461, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 669, + 462, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 462, + 686 + ], + "score": 1.0, + "content": "3 Applications to Stochastic Min-Max and Compositional Problems", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "Building upon the general results for the bilevel problems in Section 2, this section will identify", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "special features of the stochastic min-max and stochastic compositional problems, and customize the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 474, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 474, + 724 + ], + "score": 1.0, + "content": "general results to yield state-of-the-art convergence results for two special nested problems.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 71, + 505, + 99 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 504, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 344, + 87 + ], + "score": 1.0, + "content": "Lemma 1 (Descent of upper level). Suppose Assumptions", + "type": "text" + }, + { + "bbox": [ + 345, + 73, + 361, + 83 + ], + "score": 0.45, + "content": "_ { I - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 70, + 415, + 87 + ], + "score": 1.0, + "content": "hold. Define", + "type": "text" + }, + { + "bbox": [ + 415, + 72, + 504, + 87 + ], + "score": 0.92, + "content": "\\bar { h } _ { f } ^ { k } : = \\mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 85, + 461, + 100 + ], + "spans": [ + { + "bbox": [ + 105, + 85, + 124, + 100 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 85, + 237, + 100 + ], + "score": 0.92, + "content": "\\| \\bar { h } _ { f } ^ { k } - \\overline { { \\nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \\| \\leq b _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 85, + 309, + 100 + ], + "score": 1.0, + "content": ". The sequence of", + "type": "text" + }, + { + "bbox": [ + 309, + 86, + 320, + 97 + ], + "score": 0.86, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 85, + 419, + 100 + ], + "score": 1.0, + "content": "generated by Algorithm", + "type": "text" + }, + { + "bbox": [ + 419, + 88, + 425, + 96 + ], + "score": 0.48, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 85, + 461, + 100 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 70, + 504, + 100 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 104, + 453, + 154 + ], + "lines": [ + { + "bbox": [ + 157, + 104, + 453, + 154 + ], + "spans": [ + { + "bbox": [ + 157, + 104, + 453, + 154 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \\mathbb { E } [ F ( { x } ^ { k } ) ] \\le - \\frac { \\alpha _ { k } } { 2 } \\mathbb { E } [ \\| \\nabla F ( { x } ^ { k } ) \\| ^ { 2 } ] - \\left( \\frac { \\alpha _ { k } } { 2 } - \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\right) \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] } \\\\ { + L _ { f } ^ { 2 } \\alpha _ { k } \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \\| ^ { 2 } ] + \\alpha _ { k } b _ { k } ^ { 2 } + \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "2a3141b40dc386e6a42edbb33ed58c26f3e76b70442129d8b4a261e097a0f821.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 157, + 104, + 453, + 120.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 120.66666666666667, + 453, + 137.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 157, + 137.33333333333334, + 453, + 154.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 157, + 448, + 171 + ], + "lines": [ + { + "bbox": [ + 108, + 157, + 449, + 172 + ], + "spans": [ + { + "bbox": [ + 108, + 157, + 175, + 172 + ], + "score": 1.0, + "content": "where constants", + "type": "text" + }, + { + "bbox": [ + 176, + 158, + 222, + 172 + ], + "score": 0.94, + "content": "L _ { f } , L _ { F } , \\sigma _ { f } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 157, + 449, + 172 + ], + "score": 1.0, + "content": "are defined in Lemma 4 of the supplementary document.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 108, + 157, + 449, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 179, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 505, + 192 + ], + "score": 1.0, + "content": "Lemma 1 implies that the descent of the upper-level objective functions depends on the error of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 188, + 204 + ], + "score": 1.0, + "content": "lower-level variable", + "type": "text" + }, + { + "bbox": [ + 189, + 190, + 200, + 202 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 189, + 505, + 204 + ], + "score": 1.0, + "content": ". We will next analyze the error of the lower-level variable, which is the key", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 258, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 258, + 214 + ], + "score": 1.0, + "content": "step to improving the existing results.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 179, + 505, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 506, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 230, + 231 + ], + "score": 1.0, + "content": "Before we analyze the error of", + "type": "text" + }, + { + "bbox": [ + 230, + 217, + 241, + 229 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 216, + 480, + 231 + ], + "score": 1.0, + "content": ", we introduce a lemma that characterizes the smoothness of", + "type": "text" + }, + { + "bbox": [ + 481, + 219, + 505, + 230 + ], + "score": 0.93, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 223, + 242 + ], + "score": 1.0, + "content": "and the bounded moments of", + "type": "text" + }, + { + "bbox": [ + 223, + 229, + 235, + 243 + ], + "score": 0.9, + "content": "h _ { f } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 229, + 505, + 242 + ], + "score": 1.0, + "content": ". The smoothness and the bounded moments have not been explored", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 492, + 256 + ], + "score": 1.0, + "content": "by previous analysis such as [16–18], and they play an essential role in our improved analysis of", + "type": "text" + }, + { + "bbox": [ + 492, + 243, + 502, + 255 + ], + "score": 0.89, + "content": "y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 243, + 506, + 256 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 216, + 506, + 256 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 432, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 433, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 363, + 272 + ], + "score": 1.0, + "content": "Lemma 2 (Smoothness and boundedness). Under Assumptions", + "type": "text" + }, + { + "bbox": [ + 363, + 259, + 369, + 268 + ], + "score": 0.28, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 257, + 433, + 272 + ], + "score": 1.0, + "content": "and 2, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 257, + 433, + 272 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 275, + 446, + 291 + ], + "lines": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "spans": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\| \\nabla y ^ { * } ( x _ { 1 } ) - \\nabla y ^ { * } ( x _ { 2 } ) \\| \\leq L _ { y x } \\| x _ { 1 } - x _ { 2 } \\| ; \\quad \\mathbb { E } [ \\| h _ { f } ^ { k } \\| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \\leq \\tilde { C } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "d9a1d7e8eaf3f12c30dc52cd9e0e2fc1f84366c496a4926e202f22510357246f.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 164, + 275, + 446, + 291 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 298, + 393, + 311 + ], + "lines": [ + { + "bbox": [ + 104, + 295, + 396, + 313 + ], + "spans": [ + { + "bbox": [ + 104, + 295, + 133, + 313 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 299, + 150, + 311 + ], + "score": 0.9, + "content": "L _ { y x }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 295, + 169, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 297, + 183, + 312 + ], + "score": 0.9, + "content": "\\tilde { C } _ { f } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 295, + 396, + 313 + ], + "score": 1.0, + "content": "depend on the constants defined in Assumptions 1-2.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 295, + 396, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 319, + 415, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 416, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 416, + 334 + ], + "score": 1.0, + "content": "Building upon Lemma 2, we establish the progress of the lower-level update.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 319, + 416, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 506, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 416, + 349 + ], + "score": 1.0, + "content": "Lemma 3 (Error of lower level). Suppose that Assumptions 1–3 hold, and", + "type": "text" + }, + { + "bbox": [ + 417, + 334, + 438, + 347 + ], + "score": 0.91, + "content": "y ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 331, + 506, + 349 + ], + "score": 1.0, + "content": "is generated by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 341, + 424, + 366 + ], + "spans": [ + { + "bbox": [ + 102, + 341, + 215, + 366 + ], + "score": 1.0, + "content": "running iteration (9) given", + "type": "text" + }, + { + "bbox": [ + 216, + 345, + 227, + 356 + ], + "score": 0.85, + "content": "x ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 341, + 284, + 366 + ], + "score": 1.0, + "content": ". If we choose", + "type": "text" + }, + { + "bbox": [ + 284, + 345, + 339, + 361 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\beta _ { k } \\le \\frac { 2 ^ { \\binom { - } { q } } } { \\mu _ { g } + \\ell _ { g , 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 341, + 363, + 366 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 363, + 345, + 384, + 357 + ], + "score": 0.91, + "content": "y ^ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 341, + 424, + 366 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 102, + 331, + 506, + 366 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 364, + 470, + 439 + ], + "lines": [ + { + "bbox": [ + 119, + 364, + 470, + 439 + ], + "spans": [ + { + "bbox": [ + 119, + 364, + 470, + 439 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] \\leq ( 1 - \\mu _ { g } \\beta _ { k } ) ^ { T } \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + T \\beta _ { k } ^ { 2 } \\sigma _ { g , 1 } ^ { 2 } } \\\\ & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq \\Big ( 1 + 4 L _ { f } L _ { y } \\alpha _ { k } + \\frac { \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } } { 2 } \\alpha _ { k } ^ { 2 } \\Big ) \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] } \\\\ & { \\qquad + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y } } { 4 L _ { f } \\alpha _ { k } } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "36f957552fc5b6f0a43162e367f234b8417c32cda20a4e5c9316c08d993678a9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 119, + 364, + 470, + 389.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 119, + 389.0, + 470, + 414.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 119, + 414.0, + 470, + 439.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 441, + 466, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 468, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 133, + 455 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 442, + 158, + 453 + ], + "score": 0.9, + "content": "\\eta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 441, + 468, + 455 + ], + "score": 1.0, + "content": "is a fixed constant that will be chosen to obtain the tighter complexity bound.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 441, + 468, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "The improved analysis of the lower-level problem. Next we explain where we can obtain improved", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 473, + 482, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 343, + 486 + ], + "score": 1.0, + "content": "analysis. Plugging (18a) into (18b), and selecting stepsizes", + "type": "text" + }, + { + "bbox": [ + 344, + 474, + 371, + 485 + ], + "score": 0.92, + "content": "\\alpha _ { k } , \\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 473, + 482, + 486 + ], + "score": 1.0, + "content": "properly, we can show that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 462, + 505, + 486 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 489, + 477, + 506 + ], + "lines": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "spans": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\delta _ { 3 } T \\sigma _ { g , 1 } ^ { 2 } + \\delta _ { 4 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "f1718faffb799525f7fa8be06e5da0480c738b8b36fe9a1eaf7206a9a7e1bab0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 119, + 489, + 477, + 506 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 506, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 205, + 525 + ], + "score": 1.0, + "content": "where the constants are", + "type": "text" + }, + { + "bbox": [ + 205, + 511, + 417, + 524 + ], + "score": 0.73, + "content": "\\delta _ { 1 } \\in [ 0 , 1 ) , \\delta _ { 2 } = \\mathcal { O } ( \\alpha _ { k } ) , \\delta _ { 3 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } ) , \\delta _ { 4 } = \\mathcal { O } ( \\alpha _ { k } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ". As we will show in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 522, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 261, + 538 + ], + "score": 1.0, + "content": "our supplementary material, the term", + "type": "text" + }, + { + "bbox": [ + 261, + 524, + 299, + 538 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 522, + 506, + 538 + ], + "score": 1.0, + "content": "will be canceled when combined with (16) in our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 536, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 216, + 552 + ], + "score": 1.0, + "content": "analysis. Hence, choosing", + "type": "text" + }, + { + "bbox": [ + 217, + 538, + 283, + 550 + ], + "score": 0.92, + "content": "\\alpha _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 536, + 302, + 552 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 302, + 537, + 368, + 550 + ], + "score": 0.93, + "content": "\\beta _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 536, + 506, + 552 + ], + "score": 1.0, + "content": "makes the variance terms in (19)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 473, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 191, + 564 + ], + "score": 1.0, + "content": "decrease at the same", + "type": "text" + }, + { + "bbox": [ + 191, + 550, + 232, + 563 + ], + "score": 0.93, + "content": "\\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 549, + 473, + 564 + ], + "score": 1.0, + "content": "rate as the vanilla SGD for stochastic non-nested problems.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 510, + 506, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 566, + 472, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 566, + 472, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 472, + 580 + ], + "score": 1.0, + "content": "As a comparison, the progress of the lower-level problem in [18, 17] can be summarized as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 566, + 472, + 580 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 584, + 434, + 599 + ], + "lines": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "spans": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 5 } \\sigma ^ { 2 }", + "type": "interline_equation", + "image_path": "3576c911fd6a242b95c18e8b66b3825d39d169a6cdda8a060ef3287777835a48.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 177, + 584, + 434, + 599 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 133, + 618 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 604, + 146, + 614 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 603, + 323, + 618 + ], + "score": 1.0, + "content": "is some variance term, and the constant is", + "type": "text" + }, + { + "bbox": [ + 323, + 603, + 415, + 616 + ], + "score": 0.9, + "content": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 603, + 428, + 618 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 428, + 604, + 467, + 616 + ], + "score": 0.92, + "content": "\\mathcal { O } ( 1 / B _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 603, + 490, + 618 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 490, + 605, + 504, + 615 + ], + "score": 0.85, + "content": "B _ { k }", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 231, + 630 + ], + "score": 1.0, + "content": "being the batch size at iteration", + "type": "text" + }, + { + "bbox": [ + 231, + 617, + 237, + 626 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 614, + 353, + 630 + ], + "score": 1.0, + "content": ". To balance the two terms in", + "type": "text" + }, + { + "bbox": [ + 353, + 617, + 441, + 628 + ], + "score": 0.9, + "content": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 614, + 506, + 630 + ], + "score": 1.0, + "content": ", two timescales", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 156, + 640 + ], + "score": 1.0, + "content": "of stepsizes", + "type": "text" + }, + { + "bbox": [ + 156, + 627, + 238, + 639 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 626, + 456, + 640 + ], + "score": 1.0, + "content": "are needed, which will make the variance term of the", + "type": "text" + }, + { + "bbox": [ + 457, + 630, + 463, + 639 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "-update in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "score": 1.0, + "content": "(20) and that of the", + "type": "text" + }, + { + "bbox": [ + 185, + 640, + 192, + 648 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "-update in (16) decrease at two different rates, slower than that of SGD; and to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 649, + 444, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 136, + 661 + ], + "score": 1.0, + "content": "reduce", + "type": "text" + }, + { + "bbox": [ + 136, + 649, + 197, + 661 + ], + "score": 0.93, + "content": "\\delta _ { 5 } = \\mathcal { O } ( 1 / B _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 286, + 661 + ], + "score": 1.0, + "content": ", a growing batch size", + "type": "text" + }, + { + "bbox": [ + 286, + 649, + 334, + 661 + ], + "score": 0.93, + "content": "B _ { k } = \\mathcal { O } ( k )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 649, + 404, + 661 + ], + "score": 1.0, + "content": "is needed for the", + "type": "text" + }, + { + "bbox": [ + 404, + 651, + 410, + 660 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 649, + 444, + 661 + ], + "score": 1.0, + "content": "-update.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 603, + 506, + 661 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 669, + 461, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 669, + 462, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 462, + 686 + ], + "score": 1.0, + "content": "3 Applications to Stochastic Min-Max and Compositional Problems", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "Building upon the general results for the bilevel problems in Section 2, this section will identify", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "special features of the stochastic min-max and stochastic compositional problems, and customize the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 474, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 474, + 724 + ], + "score": 1.0, + "content": "general results to yield state-of-the-art convergence results for two special nested problems.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 688, + 505, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 257, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 258, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 258, + 86 + ], + "score": 1.0, + "content": "3.1 Stochastic min-max problems", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 505, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "We first apply our results to the stochastic min-max problem (2). In this special case, the lower-level", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 419, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 151, + 116 + ], + "score": 1.0, + "content": "function is", + "type": "text" + }, + { + "bbox": [ + 152, + 103, + 250, + 115 + ], + "score": 0.92, + "content": "\\bar { g ( x , y ; \\phi ) } = - f ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 103, + 419, + 116 + ], + "score": 1.0, + "content": ", and the bilevel gradient in (6) reduces to", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 119, + 456, + 135 + ], + "lines": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "spans": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "score": 0.89, + "content": "\\nabla F ( x ) : = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } + \\nabla _ { x } y ^ { * } ( x ) ^ { \\top } \\nabla _ { y } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) }", + "type": "interline_equation", + "image_path": "670d59345221271862aa7b56d1bcb3615feddc89ce834a80ac0f6e011fda27ff.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 507, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 507, + 152 + ], + "score": 1.0, + "content": "where the second equality follows from the optimality condition of the lower-level problem, i.e.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 148, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 149, + 188, + 162 + ], + "score": 0.91, + "content": "\\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 148, + 374, + 163 + ], + "score": 1.0, + "content": ". Similar to Section 2, we again approximate", + "type": "text" + }, + { + "bbox": [ + 375, + 150, + 405, + 162 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 148, + 487, + 163 + ], + "score": 1.0, + "content": "on a certain vector", + "type": "text" + }, + { + "bbox": [ + 487, + 153, + 493, + 161 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 148, + 507, + 163 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 486, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 141, + 173 + ], + "score": 1.0, + "content": "place of", + "type": "text" + }, + { + "bbox": [ + 141, + 162, + 165, + 172 + ], + "score": 0.9, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 160, + 486, + 173 + ], + "score": 1.0, + "content": ". Therefore, the alternating stochastic gradients for this special case are given by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 176, + 431, + 193 + ], + "lines": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "spans": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "score": 0.91, + "content": "\\begin{array} { r } { h _ { g } ^ { k , t } = - \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "58407e3ce8ffa81f4d704d1bc7baa5788597a9607ae95f312d352a11482405a2.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 507, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 209 + ], + "score": 1.0, + "content": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 2.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 207, + 507, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 190, + 220 + ], + "score": 1.0, + "content": "When the number of", + "type": "text" + }, + { + "bbox": [ + 190, + 209, + 197, + 219 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 207, + 237, + 220 + ], + "score": 1.0, + "content": "-update is", + "type": "text" + }, + { + "bbox": [ + 237, + 207, + 263, + 217 + ], + "score": 0.89, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 207, + 507, + 220 + ], + "score": 1.0, + "content": ", the ALSET algorithm reduces to the SGDA method in [28].", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 506, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 497, + 234 + ], + "score": 1.0, + "content": "Proposition 3 (Min-max problems). Choose the same choice of parameters as those in Theorem", + "type": "text" + }, + { + "bbox": [ + 497, + 223, + 502, + 231 + ], + "score": 0.54, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 221, + 506, + 234 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 231, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 231, + 313, + 246 + ], + "score": 1.0, + "content": "and follow the same assumption as those in Theorem", + "type": "text" + }, + { + "bbox": [ + 313, + 233, + 318, + 242 + ], + "score": 0.52, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 231, + 364, + 246 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 365, + 232, + 391, + 244 + ], + "score": 0.92, + "content": "f ( \\cdot , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 231, + 473, + 246 + ], + "score": 1.0, + "content": "is only Lipchitz over", + "type": "text" + }, + { + "bbox": [ + 473, + 232, + 504, + 243 + ], + "score": 0.88, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 154, + 258 + ], + "score": 1.0, + "content": "but not that", + "type": "text" + }, + { + "bbox": [ + 154, + 245, + 181, + 257 + ], + "score": 0.91, + "content": "f ( x , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 244, + 294, + 258 + ], + "score": 1.0, + "content": "is Lipschitz continuous over", + "type": "text" + }, + { + "bbox": [ + 294, + 244, + 326, + 257 + ], + "score": 0.92, + "content": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 244, + 377, + 258 + ], + "score": 1.0, + "content": ". If we select", + "type": "text" + }, + { + "bbox": [ + 377, + 244, + 429, + 257 + ], + "score": 0.89, + "content": "\\alpha = \\Theta ( \\kappa ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 244, + 433, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 433, + 245, + 476, + 257 + ], + "score": 0.86, + "content": "T = \\Theta ( \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 244, + 479, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 480, + 245, + 505, + 257 + ], + "score": 0.8, + "content": "\\eta = 1", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 318, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 318, + 269 + ], + "score": 1.0, + "content": "in (12), the iterates generated by Algorithm 2 satisfy", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 271, + 394, + 302 + ], + "lines": [ + { + "bbox": [ + 217, + 271, + 394, + 302 + ], + "spans": [ + { + "bbox": [ + 217, + 271, + 394, + 302 + ], + "score": 0.94, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 2 } } { K } + \\frac { \\kappa } { \\sqrt { K } } \\right) .", + "type": "interline_equation", + "image_path": "ab11ba632dabb369af924b5558ebc5ef26ce0eec93e31e05228192c6775091d7.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 271, + 394, + 286.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 217, + 286.5, + 394, + 302.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 270, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 271, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 271, + 322 + ], + "score": 1.0, + "content": "Proposition 3 implies that for the min-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 270, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 270, + 333 + ], + "score": 1.0, + "content": "max problem, the convergence rate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 330, + 270, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 270, + 345 + ], + "score": 1.0, + "content": "of ALSET to the stationary point of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 341, + 271, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 256, + 356 + ], + "score": 0.88, + "content": "\\begin{array} { r } { F ( x ) \\ \\mathrel { \\mathop : } = \\ \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 341, + 271, + 358 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 353, + 271, + 370 + ], + "spans": [ + { + "bbox": [ + 107, + 356, + 151, + 369 + ], + "score": 0.91, + "content": "\\mathcal { O } ( K ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 353, + 219, + 370 + ], + "score": 1.0, + "content": ". To achieve", + "type": "text" + }, + { + "bbox": [ + 219, + 359, + 225, + 367 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 353, + 271, + 370 + ], + "score": 1.0, + "content": "-stationary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 270, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 172, + 379 + ], + "score": 1.0, + "content": "point, we need", + "type": "text" + }, + { + "bbox": [ + 172, + 367, + 241, + 380 + ], + "score": 0.93, + "content": "K = \\mathcal { O } ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 367, + 270, + 379 + ], + "score": 1.0, + "content": ". And", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 270, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 270, + 390 + ], + "score": 1.0, + "content": "the number of gradient evaluations for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 387, + 271, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 139, + 403 + ], + "score": 0.93, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 387, + 160, + 403 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 160, + 389, + 201, + 402 + ], + "score": 0.93, + "content": "\\mathcal { O } \\bar { ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 387, + 225, + 403 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 389, + 266, + 402 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 387, + 271, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 270, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 270, + 414 + ], + "score": 1.0, + "content": "respectively. Comparing with the results", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 412, + 271, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 271, + 425 + ], + "score": 1.0, + "content": "in [28], we achieve the same sample com-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 423, + 270, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 270, + 435 + ], + "score": 1.0, + "content": "plexity without an increasing batch size", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 433, + 271, + 447 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 138, + 446 + ], + "score": 0.91, + "content": "\\mathsf { \\bar { \\mathcal { O } } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 433, + 271, + 447 + ], + "score": 1.0, + "content": ", and improve their sample com-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 445, + 272, + 460 + ], + "spans": [ + { + "bbox": [ + 104, + 445, + 136, + 460 + ], + "score": 1.0, + "content": "plexity", + "type": "text" + }, + { + "bbox": [ + 136, + 446, + 175, + 459 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 445, + 272, + 460 + ], + "score": 1.0, + "content": "under a fixed batch size.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 277, + 321, + 479, + 332 + ], + "lines": [ + { + "bbox": [ + 275, + 318, + 482, + 335 + ], + "spans": [ + { + "bbox": [ + 275, + 318, + 482, + 335 + ], + "score": 1.0, + "content": "Algorithm 2 ALSET for the min-max problem (2)", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 280, + 335, + 506, + 438 + ], + "lines": [ + { + "bbox": [ + 280, + 334, + 445, + 350 + ], + "spans": [ + { + "bbox": [ + 280, + 334, + 336, + 350 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 336, + 336, + 362, + 348 + ], + "score": 0.84, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 334, + 404, + 350 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 404, + 337, + 441, + 349 + ], + "score": 0.91, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 334, + 445, + 350 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 280, + 347, + 406, + 360 + ], + "spans": [ + { + "bbox": [ + 280, + 347, + 308, + 360 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 309, + 348, + 391, + 359 + ], + "score": 0.7, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 347, + 406, + 360 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 280, + 357, + 363, + 372 + ], + "spans": [ + { + "bbox": [ + 280, + 359, + 292, + 371 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 306, + 357, + 322, + 372 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 322, + 358, + 363, + 370 + ], + "score": 0.81, + "content": "y ^ { k , 0 } = y ^ { k }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 281, + 370, + 417, + 381 + ], + "spans": [ + { + "bbox": [ + 281, + 370, + 291, + 381 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 308, + 370, + 323, + 381 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 324, + 370, + 402, + 381 + ], + "score": 0.42, + "content": "t = 0 , 1 , \\dots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 370, + 417, + 381 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 280, + 379, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 280, + 382, + 292, + 394 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 321, + 379, + 352, + 397 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 352, + 381, + 505, + 395 + ], + "score": 0.89, + "content": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } )", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 281, + 393, + 342, + 405 + ], + "spans": [ + { + "bbox": [ + 281, + 394, + 291, + 405 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 307, + 393, + 342, + 405 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 281, + 402, + 375, + 416 + ], + "spans": [ + { + "bbox": [ + 281, + 405, + 291, + 416 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 306, + 402, + 322, + 416 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 322, + 403, + 375, + 415 + ], + "score": 0.77, + "content": "y ^ { k + 1 } = y ^ { k , T }", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 280, + 412, + 483, + 429 + ], + "spans": [ + { + "bbox": [ + 280, + 415, + 292, + 427 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 306, + 412, + 338, + 429 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 338, + 415, + 483, + 427 + ], + "score": 0.88, + "content": "\\boldsymbol { x } ^ { k + \\mathrm { i } } = x ^ { k } - \\alpha _ { k } \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 279, + 425, + 327, + 438 + ], + "spans": [ + { + "bbox": [ + 279, + 425, + 327, + 438 + ], + "score": 1.0, + "content": "9: end for", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "However, it is also worth mentioning that compared with [28], our analysis requires the additional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 252, + 481 + ], + "score": 1.0, + "content": "Lipschitz continuity assumption of", + "type": "text" + }, + { + "bbox": [ + 253, + 469, + 280, + 480 + ], + "score": 0.93, + "content": "f ( \\cdot , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 468, + 302, + 481 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 302, + 468, + 335, + 479 + ], + "score": 0.91, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 468, + 506, + 481 + ], + "score": 1.0, + "content": ", which inherits from the analysis for the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 479, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 506, + 492 + ], + "score": 1.0, + "content": "general bilevel problem. Therefore, our result complements, rather than improves, the analysis in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 491, + 475, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 475, + 504 + ], + "score": 1.0, + "content": "[28]. We view our contribution in min-max problems as a supplementary of existing results.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 107, + 514, + 277, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 279, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 279, + 529 + ], + "score": 1.0, + "content": "3.2 Stochastic compositional problems", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "In this section, we apply our results to the stochastic compositional problem (3). In this special", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 239, + 559 + ], + "score": 1.0, + "content": "case, the upper-level function is", + "type": "text" + }, + { + "bbox": [ + 239, + 545, + 322, + 558 + ], + "score": 0.92, + "content": "f ( x , y ; \\xi ) : = f ( y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 545, + 453, + 559 + ], + "score": 1.0, + "content": ", and the lower-level function is", + "type": "text" + }, + { + "bbox": [ + 453, + 545, + 505, + 558 + ], + "score": 0.91, + "content": "g ( x , y ; \\phi ) =", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 556, + 336, + 569 + ], + "spans": [ + { + "bbox": [ + 107, + 556, + 169, + 568 + ], + "score": 0.93, + "content": "\\| y - h ( x ; \\phi ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 556, + 336, + 569 + ], + "score": 1.0, + "content": ", and the bilevel gradient in (6) reduces to", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 572, + 471, + 607 + ], + "lines": [ + { + "bbox": [ + 138, + 572, + 471, + 607 + ], + "spans": [ + { + "bbox": [ + 138, + 572, + 471, + 607 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla F ( x ) : = \\nabla _ { x } f \\big ( x , y ^ { * } ( x ) \\big ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big [ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big ] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\\\ & { \\qquad = \\nabla h ( x ; \\phi ) ^ { \\top } \\nabla _ { y } f ( y ^ { * } ( x ) ) } \\end{array}", + "type": "interline_equation", + "image_path": "9aae8fbe3a436ac5e47f8422667811d722986fe4cc12e4704b598719ee99e25b.jpg" + } + ] + } + ], + "index": 48, + "virtual_lines": [ + { + "bbox": [ + 138, + 572, + 471, + 583.6666666666666 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 138, + 583.6666666666666, + 471, + 595.3333333333333 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 138, + 595.3333333333333, + 471, + 606.9999999999999 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 222, + 628 + ], + "score": 1.0, + "content": "where we use the fact that", + "type": "text" + }, + { + "bbox": [ + 222, + 611, + 452, + 625 + ], + "score": 0.88, + "content": "\\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi ) = \\mathbf { I } _ { d ^ { \\prime } \\times d ^ { \\prime } } , \\nabla _ { x y } ^ { 2 } g ( x , y ; \\phi ) = - \\nabla h ( x ; \\phi ) ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 609, + 507, + 628 + ], + "score": 1.0, + "content": ". Similar to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 222, + 637 + ], + "score": 1.0, + "content": "Section 2, we again evaluate", + "type": "text" + }, + { + "bbox": [ + 222, + 624, + 252, + 636 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 622, + 329, + 637 + ], + "score": 1.0, + "content": "on a certain vector", + "type": "text" + }, + { + "bbox": [ + 330, + 626, + 336, + 636 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 622, + 381, + 637 + ], + "score": 1.0, + "content": "in place of", + "type": "text" + }, + { + "bbox": [ + 382, + 624, + 406, + 636 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 622, + 505, + 637 + ], + "score": 1.0, + "content": ". Therefore, by choosing", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 107, + 633, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 107, + 636, + 133, + 646 + ], + "score": 0.88, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 633, + 277, + 651 + ], + "score": 1.0, + "content": ", the alternating stochastic gradients", + "type": "text" + }, + { + "bbox": [ + 278, + 635, + 310, + 650 + ], + "score": 0.92, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 633, + 504, + 651 + ], + "score": 1.0, + "content": "for this special case are much simpler, given by", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 653, + 445, + 669 + ], + "lines": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "spans": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "score": 0.89, + "content": "h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla h ( x ^ { k } ; \\phi ^ { k } ) \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) .", + "type": "interline_equation", + "image_path": "42286cab55485d382d6e1041ea11717fe6526c9dcee0c3889714188952cc40b3.jpg" + } + ] + } + ], + "index": 53, + "virtual_lines": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "spans": [], + "index": 53 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 672, + 507, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 507, + 685 + ], + "score": 1.0, + "content": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 3.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 682, + 395, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 132, + 696 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 132, + 684, + 159, + 693 + ], + "score": 0.88, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 682, + 395, + 696 + ], + "score": 1.0, + "content": ", the ALSET algorithm reduces to SCGD proposed in [12].", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54.5 + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "In the supplementary document, we have verified that the standard assumptions of stochastic compo-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 710, + 453, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 453, + 723 + ], + "score": 1.0, + "content": "sitional optimization in [12, 37, 14, 41, 38] are sufficient for Assumptions 1–3 to hold.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 257, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 258, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 258, + 86 + ], + "score": 1.0, + "content": "3.1 Stochastic min-max problems", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 505, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "We first apply our results to the stochastic min-max problem (2). In this special case, the lower-level", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 419, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 151, + 116 + ], + "score": 1.0, + "content": "function is", + "type": "text" + }, + { + "bbox": [ + 152, + 103, + 250, + 115 + ], + "score": 0.92, + "content": "\\bar { g ( x , y ; \\phi ) } = - f ( x , y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 103, + 419, + 116 + ], + "score": 1.0, + "content": ", and the bilevel gradient in (6) reduces to", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 92, + 505, + 116 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 119, + 456, + 135 + ], + "lines": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "spans": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "score": 0.89, + "content": "\\nabla F ( x ) : = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } + \\nabla _ { x } y ^ { * } ( x ) ^ { \\top } \\nabla _ { y } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) }", + "type": "interline_equation", + "image_path": "670d59345221271862aa7b56d1bcb3615feddc89ce834a80ac0f6e011fda27ff.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 119, + 456, + 135 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 507, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 507, + 152 + ], + "score": 1.0, + "content": "where the second equality follows from the optimality condition of the lower-level problem, i.e.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 148, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 149, + 188, + 162 + ], + "score": 0.91, + "content": "\\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 148, + 374, + 163 + ], + "score": 1.0, + "content": ". Similar to Section 2, we again approximate", + "type": "text" + }, + { + "bbox": [ + 375, + 150, + 405, + 162 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 148, + 487, + 163 + ], + "score": 1.0, + "content": "on a certain vector", + "type": "text" + }, + { + "bbox": [ + 487, + 153, + 493, + 161 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 148, + 507, + 163 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 486, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 141, + 173 + ], + "score": 1.0, + "content": "place of", + "type": "text" + }, + { + "bbox": [ + 141, + 162, + 165, + 172 + ], + "score": 0.9, + "content": "y ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 160, + 486, + 173 + ], + "score": 1.0, + "content": ". Therefore, the alternating stochastic gradients for this special case are given by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 137, + 507, + 173 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 176, + 431, + 193 + ], + "lines": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "spans": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "score": 0.91, + "content": "\\begin{array} { r } { h _ { g } ^ { k , t } = - \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "58407e3ce8ffa81f4d704d1bc7baa5788597a9607ae95f312d352a11482405a2.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 180, + 176, + 431, + 193 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 196, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 507, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 209 + ], + "score": 1.0, + "content": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 2.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 207, + 507, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 190, + 220 + ], + "score": 1.0, + "content": "When the number of", + "type": "text" + }, + { + "bbox": [ + 190, + 209, + 197, + 219 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 207, + 237, + 220 + ], + "score": 1.0, + "content": "-update is", + "type": "text" + }, + { + "bbox": [ + 237, + 207, + 263, + 217 + ], + "score": 0.89, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 207, + 507, + 220 + ], + "score": 1.0, + "content": ", the ALSET algorithm reduces to the SGDA method in [28].", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 196, + 507, + 220 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 506, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 497, + 234 + ], + "score": 1.0, + "content": "Proposition 3 (Min-max problems). Choose the same choice of parameters as those in Theorem", + "type": "text" + }, + { + "bbox": [ + 497, + 223, + 502, + 231 + ], + "score": 0.54, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 221, + 506, + 234 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 231, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 231, + 313, + 246 + ], + "score": 1.0, + "content": "and follow the same assumption as those in Theorem", + "type": "text" + }, + { + "bbox": [ + 313, + 233, + 318, + 242 + ], + "score": 0.52, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 231, + 364, + 246 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 365, + 232, + 391, + 244 + ], + "score": 0.92, + "content": "f ( \\cdot , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 231, + 473, + 246 + ], + "score": 1.0, + "content": "is only Lipchitz over", + "type": "text" + }, + { + "bbox": [ + 473, + 232, + 504, + 243 + ], + "score": 0.88, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 154, + 258 + ], + "score": 1.0, + "content": "but not that", + "type": "text" + }, + { + "bbox": [ + 154, + 245, + 181, + 257 + ], + "score": 0.91, + "content": "f ( x , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 244, + 294, + 258 + ], + "score": 1.0, + "content": "is Lipschitz continuous over", + "type": "text" + }, + { + "bbox": [ + 294, + 244, + 326, + 257 + ], + "score": 0.92, + "content": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 244, + 377, + 258 + ], + "score": 1.0, + "content": ". If we select", + "type": "text" + }, + { + "bbox": [ + 377, + 244, + 429, + 257 + ], + "score": 0.89, + "content": "\\alpha = \\Theta ( \\kappa ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 244, + 433, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 433, + 245, + 476, + 257 + ], + "score": 0.86, + "content": "T = \\Theta ( \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 244, + 479, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 480, + 245, + 505, + 257 + ], + "score": 0.8, + "content": "\\eta = 1", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 318, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 318, + 269 + ], + "score": 1.0, + "content": "in (12), the iterates generated by Algorithm 2 satisfy", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 221, + 506, + 269 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 271, + 394, + 302 + ], + "lines": [ + { + "bbox": [ + 217, + 271, + 394, + 302 + ], + "spans": [ + { + "bbox": [ + 217, + 271, + 394, + 302 + ], + "score": 0.94, + "content": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 2 } } { K } + \\frac { \\kappa } { \\sqrt { K } } \\right) .", + "type": "interline_equation", + "image_path": "ab11ba632dabb369af924b5558ebc5ef26ce0eec93e31e05228192c6775091d7.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 271, + 394, + 286.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 217, + 286.5, + 394, + 302.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 270, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 271, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 271, + 322 + ], + "score": 1.0, + "content": "Proposition 3 implies that for the min-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 270, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 270, + 333 + ], + "score": 1.0, + "content": "max problem, the convergence rate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 330, + 270, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 270, + 345 + ], + "score": 1.0, + "content": "of ALSET to the stationary point of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 341, + 271, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 256, + 356 + ], + "score": 0.88, + "content": "\\begin{array} { r } { F ( x ) \\ \\mathrel { \\mathop : } = \\ \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 341, + 271, + 358 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 353, + 271, + 370 + ], + "spans": [ + { + "bbox": [ + 107, + 356, + 151, + 369 + ], + "score": 0.91, + "content": "\\mathcal { O } ( K ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 353, + 219, + 370 + ], + "score": 1.0, + "content": ". To achieve", + "type": "text" + }, + { + "bbox": [ + 219, + 359, + 225, + 367 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 353, + 271, + 370 + ], + "score": 1.0, + "content": "-stationary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 270, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 172, + 379 + ], + "score": 1.0, + "content": "point, we need", + "type": "text" + }, + { + "bbox": [ + 172, + 367, + 241, + 380 + ], + "score": 0.93, + "content": "K = \\mathcal { O } ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 367, + 270, + 379 + ], + "score": 1.0, + "content": ". And", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 270, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 270, + 390 + ], + "score": 1.0, + "content": "the number of gradient evaluations for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 387, + 271, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 139, + 403 + ], + "score": 0.93, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 387, + 160, + 403 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 160, + 389, + 201, + 402 + ], + "score": 0.93, + "content": "\\mathcal { O } \\bar { ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 387, + 225, + 403 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 389, + 266, + 402 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 387, + 271, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 270, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 270, + 414 + ], + "score": 1.0, + "content": "respectively. Comparing with the results", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 412, + 271, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 271, + 425 + ], + "score": 1.0, + "content": "in [28], we achieve the same sample com-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 423, + 270, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 270, + 435 + ], + "score": 1.0, + "content": "plexity without an increasing batch size", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 433, + 271, + 447 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 138, + 446 + ], + "score": 0.91, + "content": "\\mathsf { \\bar { \\mathcal { O } } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 433, + 271, + 447 + ], + "score": 1.0, + "content": ", and improve their sample com-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 445, + 272, + 460 + ], + "spans": [ + { + "bbox": [ + 104, + 445, + 136, + 460 + ], + "score": 1.0, + "content": "plexity", + "type": "text" + }, + { + "bbox": [ + 136, + 446, + 175, + 459 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 445, + 272, + 460 + ], + "score": 1.0, + "content": "under a fixed batch size.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 310, + 272, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 277, + 321, + 479, + 332 + ], + "lines": [ + { + "bbox": [ + 275, + 318, + 482, + 335 + ], + "spans": [ + { + "bbox": [ + 275, + 318, + 482, + 335 + ], + "score": 1.0, + "content": "Algorithm 2 ALSET for the min-max problem (2)", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 275, + 318, + 482, + 335 + ] + }, + { + "type": "index", + "bbox": [ + 280, + 335, + 506, + 438 + ], + "lines": [ + { + "bbox": [ + 280, + 334, + 445, + 350 + ], + "spans": [ + { + "bbox": [ + 280, + 334, + 336, + 350 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 336, + 336, + 362, + 348 + ], + "score": 0.84, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 334, + 404, + 350 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 404, + 337, + 441, + 349 + ], + "score": 0.91, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 334, + 445, + 350 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 347, + 406, + 360 + ], + "spans": [ + { + "bbox": [ + 280, + 347, + 308, + 360 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 309, + 348, + 391, + 359 + ], + "score": 0.7, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 347, + 406, + 360 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 357, + 363, + 372 + ], + "spans": [ + { + "bbox": [ + 280, + 359, + 292, + 371 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 306, + 357, + 322, + 372 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 322, + 358, + 363, + 370 + ], + "score": 0.81, + "content": "y ^ { k , 0 } = y ^ { k }", + "type": "inline_equation" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 281, + 370, + 417, + 381 + ], + "spans": [ + { + "bbox": [ + 281, + 370, + 291, + 381 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 308, + 370, + 323, + 381 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 324, + 370, + 402, + 381 + ], + "score": 0.42, + "content": "t = 0 , 1 , \\dots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 370, + 417, + 381 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 379, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 280, + 382, + 292, + 394 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 321, + 379, + 352, + 397 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 352, + 381, + 505, + 395 + ], + "score": 0.89, + "content": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } )", + "type": "inline_equation" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 281, + 393, + 342, + 405 + ], + "spans": [ + { + "bbox": [ + 281, + 394, + 291, + 405 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 307, + 393, + 342, + 405 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 281, + 402, + 375, + 416 + ], + "spans": [ + { + "bbox": [ + 281, + 405, + 291, + 416 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 306, + 402, + 322, + 416 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 322, + 403, + 375, + 415 + ], + "score": 0.77, + "content": "y ^ { k + 1 } = y ^ { k , T }", + "type": "inline_equation" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 412, + 483, + 429 + ], + "spans": [ + { + "bbox": [ + 280, + 415, + 292, + 427 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 306, + 412, + 338, + 429 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 338, + 415, + 483, + 427 + ], + "score": 0.88, + "content": "\\boldsymbol { x } ^ { k + \\mathrm { i } } = x ^ { k } - \\alpha _ { k } \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } )", + "type": "inline_equation" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 279, + 425, + 327, + 438 + ], + "spans": [ + { + "bbox": [ + 279, + 425, + 327, + 438 + ], + "score": 1.0, + "content": "9: end for", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + } + ], + "index": 34, + "bbox_fs": [ + 279, + 334, + 505, + 438 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "However, it is also worth mentioning that compared with [28], our analysis requires the additional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 252, + 481 + ], + "score": 1.0, + "content": "Lipschitz continuity assumption of", + "type": "text" + }, + { + "bbox": [ + 253, + 469, + 280, + 480 + ], + "score": 0.93, + "content": "f ( \\cdot , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 468, + 302, + 481 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 302, + 468, + 335, + 479 + ], + "score": 0.91, + "content": "x \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 468, + 506, + 481 + ], + "score": 1.0, + "content": ", which inherits from the analysis for the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 479, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 506, + 492 + ], + "score": 1.0, + "content": "general bilevel problem. Therefore, our result complements, rather than improves, the analysis in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 491, + 475, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 475, + 504 + ], + "score": 1.0, + "content": "[28]. We view our contribution in min-max problems as a supplementary of existing results.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 457, + 506, + 504 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 514, + 277, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 279, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 279, + 529 + ], + "score": 1.0, + "content": "3.2 Stochastic compositional problems", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "In this section, we apply our results to the stochastic compositional problem (3). In this special", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 239, + 559 + ], + "score": 1.0, + "content": "case, the upper-level function is", + "type": "text" + }, + { + "bbox": [ + 239, + 545, + 322, + 558 + ], + "score": 0.92, + "content": "f ( x , y ; \\xi ) : = f ( y ; \\xi )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 545, + 453, + 559 + ], + "score": 1.0, + "content": ", and the lower-level function is", + "type": "text" + }, + { + "bbox": [ + 453, + 545, + 505, + 558 + ], + "score": 0.91, + "content": "g ( x , y ; \\phi ) =", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 556, + 336, + 569 + ], + "spans": [ + { + "bbox": [ + 107, + 556, + 169, + 568 + ], + "score": 0.93, + "content": "\\| y - h ( x ; \\phi ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 556, + 336, + 569 + ], + "score": 1.0, + "content": ", and the bilevel gradient in (6) reduces to", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 534, + 506, + 569 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 572, + 471, + 607 + ], + "lines": [ + { + "bbox": [ + 138, + 572, + 471, + 607 + ], + "spans": [ + { + "bbox": [ + 138, + 572, + 471, + 607 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla F ( x ) : = \\nabla _ { x } f \\big ( x , y ^ { * } ( x ) \\big ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big [ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big ] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\\\ & { \\qquad = \\nabla h ( x ; \\phi ) ^ { \\top } \\nabla _ { y } f ( y ^ { * } ( x ) ) } \\end{array}", + "type": "interline_equation", + "image_path": "9aae8fbe3a436ac5e47f8422667811d722986fe4cc12e4704b598719ee99e25b.jpg" + } + ] + } + ], + "index": 48, + "virtual_lines": [ + { + "bbox": [ + 138, + 572, + 471, + 583.6666666666666 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 138, + 583.6666666666666, + 471, + 595.3333333333333 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 138, + 595.3333333333333, + 471, + 606.9999999999999 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 222, + 628 + ], + "score": 1.0, + "content": "where we use the fact that", + "type": "text" + }, + { + "bbox": [ + 222, + 611, + 452, + 625 + ], + "score": 0.88, + "content": "\\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi ) = \\mathbf { I } _ { d ^ { \\prime } \\times d ^ { \\prime } } , \\nabla _ { x y } ^ { 2 } g ( x , y ; \\phi ) = - \\nabla h ( x ; \\phi ) ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 609, + 507, + 628 + ], + "score": 1.0, + "content": ". Similar to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 222, + 637 + ], + "score": 1.0, + "content": "Section 2, we again evaluate", + "type": "text" + }, + { + "bbox": [ + 222, + 624, + 252, + 636 + ], + "score": 0.92, + "content": "\\nabla F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 622, + 329, + 637 + ], + "score": 1.0, + "content": "on a certain vector", + "type": "text" + }, + { + "bbox": [ + 330, + 626, + 336, + 636 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 622, + 381, + 637 + ], + "score": 1.0, + "content": "in place of", + "type": "text" + }, + { + "bbox": [ + 382, + 624, + 406, + 636 + ], + "score": 0.91, + "content": "y ^ { \\ast } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 622, + 505, + 637 + ], + "score": 1.0, + "content": ". Therefore, by choosing", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 107, + 633, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 107, + 636, + 133, + 646 + ], + "score": 0.88, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 633, + 277, + 651 + ], + "score": 1.0, + "content": ", the alternating stochastic gradients", + "type": "text" + }, + { + "bbox": [ + 278, + 635, + 310, + 650 + ], + "score": 0.92, + "content": "h _ { f } ^ { k } , h _ { g } ^ { k , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 633, + 504, + 651 + ], + "score": 1.0, + "content": "for this special case are much simpler, given by", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51, + "bbox_fs": [ + 104, + 609, + 507, + 651 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 653, + 445, + 669 + ], + "lines": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "spans": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "score": 0.89, + "content": "h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla h ( x ^ { k } ; \\phi ^ { k } ) \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) .", + "type": "interline_equation", + "image_path": "42286cab55485d382d6e1041ea11717fe6526c9dcee0c3889714188952cc40b3.jpg" + } + ] + } + ], + "index": 53, + "virtual_lines": [ + { + "bbox": [ + 165, + 653, + 445, + 669 + ], + "spans": [], + "index": 53 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 672, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 672, + 507, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 507, + 685 + ], + "score": 1.0, + "content": "Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 3.", + "type": "text" + } + ], + "index": 54, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 682, + 395, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 132, + 696 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 132, + 684, + 159, + 693 + ], + "score": 0.88, + "content": "T = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 682, + 395, + 696 + ], + "score": 1.0, + "content": ", the ALSET algorithm reduces to SCGD proposed in [12].", + "type": "text" + } + ], + "index": 55, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 54.5, + "bbox_fs": [ + 106, + 672, + 507, + 696 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "In the supplementary document, we have verified that the standard assumptions of stochastic compo-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 710, + 453, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 453, + 723 + ], + "score": 1.0, + "content": "sitional optimization in [12, 37, 14, 41, 38] are sufficient for Assumptions 1–3 to hold.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56.5, + "bbox_fs": [ + 105, + 699, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 98 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "Proposition 4 (Compositional problems). Under the same assumptions and the parameters as those", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 504, + 99 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 157, + 97 + ], + "score": 1.0, + "content": "in Theorem", + "type": "text" + }, + { + "bbox": [ + 158, + 85, + 163, + 93 + ], + "score": 0.28, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 83, + 219, + 97 + ], + "score": 1.0, + "content": ", if we select", + "type": "text" + }, + { + "bbox": [ + 219, + 83, + 325, + 99 + ], + "score": 0.92, + "content": "\\begin{array} { r } { T ^ { } = 1 , \\alpha = 1 , \\eta = \\frac { 1 } { L _ { y x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 83, + 504, + 97 + ], + "score": 1.0, + "content": "in (12), the iterates of Algorithm 3 satisfy", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 104, + 104, + 248, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 104, + 248, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 248, + 135 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left\\| \\nabla F ( x ^ { k } ) \\right\\| ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) .", + "type": "interline_equation", + "image_path": "d7205188d54ac793707f65121e39f67779191a30272311d0f8d2c3ce2d903eab.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 104, + 104, + 248, + 119.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 104, + 119.5, + 248, + 135.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 140, + 270, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 270, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 270, + 153 + ], + "score": 1.0, + "content": "Since each iteration of ALSET only uses", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 151, + 271, + 164 + ], + "spans": [ + { + "bbox": [ + 107, + 151, + 128, + 164 + ], + "score": 0.87, + "content": "\\mathcal { O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 151, + 271, + 164 + ], + "score": 1.0, + "content": "samples (see Algorithm 3), Propo-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 163, + 271, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 271, + 175 + ], + "score": 1.0, + "content": "sition 4 implies that the sample complex-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 270, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 173, + 186 + ], + "score": 1.0, + "content": "ity to achieve an", + "type": "text" + }, + { + "bbox": [ + 174, + 176, + 179, + 183 + ], + "score": 0.62, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 173, + 270, + 186 + ], + "score": 1.0, + "content": "-stationary point of (3)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 269, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 116, + 196 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 184, + 148, + 196 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 184, + 269, + 196 + ], + "score": 1.0, + "content": ". Comparing with the results", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 276, + 108, + 503, + 120 + ], + "lines": [ + { + "bbox": [ + 276, + 105, + 503, + 124 + ], + "spans": [ + { + "bbox": [ + 276, + 105, + 503, + 124 + ], + "score": 1.0, + "content": "Algorithm 3 ALSET for the compositional problem (3)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 281, + 124, + 509, + 182 + ], + "lines": [ + { + "bbox": [ + 280, + 122, + 445, + 138 + ], + "spans": [ + { + "bbox": [ + 280, + 122, + 336, + 138 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 336, + 124, + 362, + 137 + ], + "score": 0.84, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 122, + 404, + 138 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 404, + 125, + 441, + 137 + ], + "score": 0.89, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 122, + 445, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 280, + 135, + 407, + 148 + ], + "spans": [ + { + "bbox": [ + 280, + 135, + 308, + 148 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 309, + 137, + 392, + 147 + ], + "score": 0.74, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 135, + 407, + 148 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 280, + 144, + 475, + 160 + ], + "spans": [ + { + "bbox": [ + 280, + 147, + 293, + 159 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 306, + 144, + 338, + 160 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 338, + 146, + 475, + 159 + ], + "score": 0.84, + "content": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) )", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 280, + 156, + 509, + 172 + ], + "spans": [ + { + "bbox": [ + 280, + 159, + 294, + 170 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 306, + 156, + 336, + 172 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 337, + 159, + 509, + 171 + ], + "score": 0.9, + "content": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) \\nabla h ( x ^ { k } ; \\phi ^ { k } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 280, + 169, + 328, + 181 + ], + "spans": [ + { + "bbox": [ + 280, + 169, + 328, + 181 + ], + "score": 1.0, + "content": "5: end for", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 394, + 208 + ], + "score": 1.0, + "content": "of the SCGD method in [12], our result improves the sample complexity", + "type": "text" + }, + { + "bbox": [ + 394, + 195, + 426, + 208 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 4 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "under a fixed batch", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 207, + 469, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 469, + 219 + ], + "score": 1.0, + "content": "size. Importantly, our analysis does not introduce additional assumption compared to [12].", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 106, + 232, + 316, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 317, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 317, + 247 + ], + "score": 1.0, + "content": "4 Applications to Actor-Critic Methods", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "In this section, we apply our tighter analysis to the actor-critic (AC) method with linear value function", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "approximation [44], which can be viewed as a special case of the stochastic bilevel algorithm [45, 46].", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 306, + 297 + ], + "score": 1.0, + "content": "Consider a Markov decision process described by", + "type": "text" + }, + { + "bbox": [ + 306, + 284, + 396, + 296 + ], + "score": 0.93, + "content": "\\mathcal { M } = \\{ { \\cal S } , \\mathcal { A } , \\mathcal { P } , { \\cal R } , \\gamma \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 282, + 425, + 297 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 426, + 285, + 434, + 294 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 282, + 506, + 297 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 295, + 116, + 305 + ], + "score": 0.8, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 294, + 196, + 307 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 197, + 295, + 237, + 307 + ], + "score": 0.92, + "content": "\\mathcal { P } ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 294, + 386, + 307 + ], + "score": 1.0, + "content": "is the probability of transitioning to", + "type": "text" + }, + { + "bbox": [ + 386, + 295, + 414, + 305 + ], + "score": 0.9, + "content": "s ^ { \\prime } \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 294, + 461, + 307 + ], + "score": 1.0, + "content": "given state", + "type": "text" + }, + { + "bbox": [ + 461, + 295, + 487, + 305 + ], + "score": 0.9, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 134, + 318 + ], + "score": 1.0, + "content": "action", + "type": "text" + }, + { + "bbox": [ + 135, + 306, + 162, + 316 + ], + "score": 0.89, + "content": "a \\in { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 306, + 184, + 318 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 185, + 306, + 227, + 317 + ], + "score": 0.92, + "content": "R ( s , a , s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 306, + 351, + 318 + ], + "score": 1.0, + "content": "is the reward associated with", + "type": "text" + }, + { + "bbox": [ + 351, + 306, + 385, + 317 + ], + "score": 0.93, + "content": "( s , a , s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 306, + 407, + 318 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 407, + 306, + 449, + 317 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "is a discount", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 317, + 489, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 185, + 329 + ], + "score": 1.0, + "content": "factor. For a policy", + "type": "text" + }, + { + "bbox": [ + 185, + 319, + 196, + 328 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 317, + 301, + 329 + ], + "score": 1.0, + "content": ", define the value function", + "type": "text" + }, + { + "bbox": [ + 301, + 317, + 330, + 329 + ], + "score": 0.93, + "content": "V _ { \\pi _ { \\theta } } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 317, + 489, + 329 + ], + "score": 1.0, + "content": "that satisfies the Bellman equation [47]", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 331, + 418, + 345 + ], + "lines": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "spans": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "score": 0.88, + "content": "\\begin{array} { r } { V _ { \\pi _ { \\theta } } ( s ) = \\mathbb { E } _ { a \\sim \\pi _ { \\theta } ( . | s ) , s ^ { \\prime } \\sim \\mathcal { P } ( \\cdot | s , a ) } \\left[ r ( s , a , s ^ { \\prime } ) + \\gamma V _ { \\pi _ { \\theta } } ( s ^ { \\prime } ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "f74791f3420c18b5453cccfcd8a7f2aedabd56eaf6bef77d96754b16068daa3b.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 241, + 362 + ], + "score": 1.0, + "content": "Given the state feature mapping", + "type": "text" + }, + { + "bbox": [ + 241, + 348, + 309, + 360 + ], + "score": 0.92, + "content": "\\phi ( \\cdot ) : \\mathcal { S } \\mathbb { R } ^ { d _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 345, + 506, + 362 + ], + "score": 1.0, + "content": ", we approximate the value function linearly as", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 360, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 220, + 374 + ], + "score": 0.92, + "content": "V _ { \\pi _ { \\boldsymbol { \\theta } } } ( s ) \\approx \\hat { V } _ { y } ( s ) : = \\boldsymbol { \\phi } ( s ) ^ { \\top } \\boldsymbol { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 360, + 251, + 375 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 251, + 361, + 286, + 373 + ], + "score": 0.91, + "content": "\\boldsymbol { y } \\in \\mathbb { R } ^ { d _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 360, + 497, + 375 + ], + "score": 1.0, + "content": "is the critic parameter. The task of finding the best", + "type": "text" + }, + { + "bbox": [ + 497, + 364, + 504, + 373 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 373, + 379, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 145, + 388 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 145, + 374, + 209, + 387 + ], + "score": 0.94, + "content": "V _ { \\pi _ { \\theta } } ( s ) \\approx \\hat { V } _ { y } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 373, + 379, + 388 + ], + "score": 1.0, + "content": "is usually addressed by TD learning [48].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 105, + 391, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 378, + 404 + ], + "score": 1.0, + "content": "Defining the stationary distribution induced by the policy parameter", + "type": "text" + }, + { + "bbox": [ + 378, + 392, + 389, + 402 + ], + "score": 0.86, + "content": "\\theta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 390, + 401, + 404 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 401, + 393, + 416, + 403 + ], + "score": 0.84, + "content": "\\mu _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 390, + 449, + 404 + ], + "score": 1.0, + "content": "and the", + "type": "text" + }, + { + "bbox": [ + 450, + 392, + 456, + 401 + ], + "score": 0.53, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "th transition", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 401, + 484, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 117, + 415 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 402, + 199, + 414 + ], + "score": 0.92, + "content": "\\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 401, + 297, + 415 + ], + "score": 1.0, + "content": ", which is sampled from", + "type": "text" + }, + { + "bbox": [ + 297, + 404, + 417, + 414 + ], + "score": 0.72, + "content": "s _ { k } \\sim \\mu _ { \\theta _ { k } } , a \\sim \\pi _ { \\theta _ { k } } , s _ { k + 1 } \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 401, + 484, + 415 + ], + "score": 1.0, + "content": ", the TD-error is", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 417, + 423, + 432 + ], + "lines": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "spans": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "score": 0.88, + "content": "\\hat { \\delta } ( \\xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \\gamma \\phi ( s _ { k + 1 } ) ^ { \\top } y _ { k } - \\phi ( s _ { k } ) ^ { \\top } y _ { k }", + "type": "interline_equation", + "image_path": "3a65ad360fd1c65f714ce075dccb4b8d554c095a5fb47320954acba9d15161d3.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 434, + 459, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 461, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 196, + 451 + ], + "score": 1.0, + "content": "and the critic gradient", + "type": "text" + }, + { + "bbox": [ + 197, + 435, + 332, + 449 + ], + "score": 0.91, + "content": "h _ { g } ( \\xi _ { k } , y _ { k } ) : = \\hat { \\delta } ( \\xi _ { k } , y _ { k } ) \\nabla \\hat { V } _ { y _ { k } } ( s _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 433, + 437, + 451 + ], + "score": 1.0, + "content": ". We update the parameter", + "type": "text" + }, + { + "bbox": [ + 437, + 439, + 444, + 448 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 433, + 461, + 451 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 451, + 374, + 466 + ], + "lines": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "spans": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "score": 0.9, + "content": "y _ { k + 1 } = \\Pi _ { R _ { y } } \\big ( y _ { k } + \\beta _ { k } h _ { g } ( \\xi _ { k } , y _ { k } ) \\big ) ,", + "type": "interline_equation", + "image_path": "144d8a586a43048d150440c89d7efb72f27ab8c19abf0d066fb42849bd5c8340.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 134, + 480 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 468, + 146, + 479 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 467, + 253, + 480 + ], + "score": 1.0, + "content": "is the critic stepsize, and", + "type": "text" + }, + { + "bbox": [ + 253, + 468, + 272, + 480 + ], + "score": 0.91, + "content": "\\Pi _ { R _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "is the projection to control the norm of the gradient. A", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 478, + 403, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 190, + 491 + ], + "score": 1.0, + "content": "pre-defined constant", + "type": "text" + }, + { + "bbox": [ + 190, + 479, + 204, + 491 + ], + "score": 0.9, + "content": "R _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 478, + 403, + 491 + ], + "score": 1.0, + "content": "will be specified in the supplementary document.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 494, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 281, + 509 + ], + "score": 1.0, + "content": "The goal of policy optimization is to solve", + "type": "text" + }, + { + "bbox": [ + 282, + 494, + 343, + 507 + ], + "score": 0.75, + "content": "{ \\mathrm { m a x } } _ { \\theta \\in \\mathbb { R } ^ { d } } F ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 493, + 365, + 509 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 365, + 494, + 456, + 507 + ], + "score": 0.93, + "content": "F ( \\theta ) : = \\mathbb { E } _ { s \\sim \\eta } [ V _ { \\pi _ { \\theta } } ( s ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 493, + 487, + 509 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 488, + 497, + 495, + 506 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "the initial distribution. Leveraging the value function approximation and the policy gradient theorem", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 516, + 485, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 240, + 533 + ], + "score": 1.0, + "content": "[49], we have the policy gradient", + "type": "text" + }, + { + "bbox": [ + 240, + 516, + 360, + 531 + ], + "score": 0.9, + "content": "h _ { f } ( \\xi , \\theta , y ) : = \\hat { \\delta } ( \\xi , \\bar { y ) \\psi } _ { \\theta } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 517, + 485, + 533 + ], + "score": 1.0, + "content": ", which gives the policy update", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 533, + 372, + 546 + ], + "lines": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "spans": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "score": 0.89, + "content": "\\theta _ { k + 1 } = \\theta _ { k } + \\alpha _ { k } h _ { f } ( \\xi _ { k } ^ { \\prime } , \\theta _ { k } , y _ { k + 1 } ) ,", + "type": "interline_equation", + "image_path": "f68fc6a295fc04dc069efa01f19f9e23d49e51efd97555db17610adb1eab595f.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 104, + 545, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 133, + 563 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 550, + 146, + 559 + ], + "score": 0.86, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 545, + 224, + 563 + ], + "score": 1.0, + "content": "is the stepsize and", + "type": "text" + }, + { + "bbox": [ + 225, + 548, + 330, + 560 + ], + "score": 0.91, + "content": "\\psi _ { \\boldsymbol \\theta } ( s , a ) : = \\nabla \\log \\pi _ { \\boldsymbol \\theta } ( a | s )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 545, + 422, + 563 + ], + "score": 1.0, + "content": ". Note that the sample", + "type": "text" + }, + { + "bbox": [ + 423, + 548, + 505, + 561 + ], + "score": 0.9, + "content": "\\xi _ { k } ^ { \\prime } : = ( s _ { k } ^ { \\prime } , a _ { k } ^ { \\prime } , s _ { k + 1 } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 246, + 574 + ], + "score": 1.0, + "content": "used in (30) is independent from", + "type": "text" + }, + { + "bbox": [ + 247, + 561, + 258, + 572 + ], + "score": 0.87, + "content": "\\xi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 559, + 350, + 574 + ], + "score": 1.0, + "content": "in (29). Specifically,", + "type": "text" + }, + { + "bbox": [ + 351, + 560, + 361, + 573 + ], + "score": 0.89, + "content": "\\xi _ { k } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 559, + 435, + 574 + ], + "score": 1.0, + "content": "is sampled from", + "type": "text" + }, + { + "bbox": [ + 435, + 561, + 505, + 573 + ], + "score": 0.89, + "content": "s _ { k } ^ { \\prime } \\sim d _ { \\theta _ { k } } , a _ { k } ^ { \\prime } \\sim", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 570, + 454, + 585 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 167, + 585 + ], + "score": 0.93, + "content": "\\pi _ { \\boldsymbol { \\theta } _ { k } } , s _ { k + 1 } ^ { \\prime } \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 570, + 189, + 585 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 189, + 572, + 203, + 583 + ], + "score": 0.9, + "content": "d _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 570, + 438, + 585 + ], + "score": 1.0, + "content": "being the discounted state action visitation measure under", + "type": "text" + }, + { + "bbox": [ + 438, + 573, + 448, + 582 + ], + "score": 0.86, + "content": "\\theta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 570, + 454, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 601 + ], + "score": 1.0, + "content": "The alternating AC update (29)-(30) is a special case of ALSET, where the critic update is the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 599, + 370, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 370, + 612 + ], + "score": 1.0, + "content": "lower-level update, and the actor update is the upper-level update.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "Due to space limitation, we will directly present the results of the alternating AC next, and defer pre-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "sentation of the proof and the corresponding assumptions, which are the counterparts of Assumptions", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 636, + 339, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 339, + 650 + ], + "score": 1.0, + "content": "1–3 in the context of AC, to the supplementary document.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Theorem 2 (Actor-critic). Under the some regularity conditions that are specified in the supplemen-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 659, + 438, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 243, + 678 + ], + "score": 1.0, + "content": "tary document, selecting step size", + "type": "text" + }, + { + "bbox": [ + 243, + 661, + 320, + 677 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\alpha _ { k } = \\alpha = \\overset { \\cdot } { \\mathcal { O } } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 659, + 324, + 678 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 325, + 661, + 400, + 677 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\beta _ { k } = \\beta = \\mathcal { O } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 659, + 438, + 678 + ], + "score": 1.0, + "content": ", it holds", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 678, + 388, + 709 + ], + "lines": [ + { + "bbox": [ + 223, + 678, + 388, + 709 + ], + "spans": [ + { + "bbox": [ + 223, + 678, + 388, + 709 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\| \\nabla F ( \\theta _ { k } ) \\| ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { 1 } { \\sqrt { K } } \\right) + \\epsilon _ { \\mathrm { a p p } }", + "type": "interline_equation", + "image_path": "6e8745504937552e960e3105a3635f680c42e33ac18f071f89ac3ebc5f3c4946.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 678, + 388, + 693.5 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 223, + 693.5, + 388, + 709.0 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 711, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 132, + 725 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 712, + 150, + 723 + ], + "score": 0.86, + "content": "\\epsilon _ { \\mathrm { a p p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 709, + 507, + 725 + ], + "score": 1.0, + "content": ", defined in the supplementary document, captures the richness of the linear function class.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 51 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 98 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "Proposition 4 (Compositional problems). Under the same assumptions and the parameters as those", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 504, + 99 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 157, + 97 + ], + "score": 1.0, + "content": "in Theorem", + "type": "text" + }, + { + "bbox": [ + 158, + 85, + 163, + 93 + ], + "score": 0.28, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 83, + 219, + 97 + ], + "score": 1.0, + "content": ", if we select", + "type": "text" + }, + { + "bbox": [ + 219, + 83, + 325, + 99 + ], + "score": 0.92, + "content": "\\begin{array} { r } { T ^ { } = 1 , \\alpha = 1 , \\eta = \\frac { 1 } { L _ { y x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 83, + 504, + 97 + ], + "score": 1.0, + "content": "in (12), the iterates of Algorithm 3 satisfy", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 72, + 505, + 99 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 104, + 104, + 248, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 104, + 248, + 135 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 248, + 135 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left\\| \\nabla F ( x ^ { k } ) \\right\\| ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) .", + "type": "interline_equation", + "image_path": "d7205188d54ac793707f65121e39f67779191a30272311d0f8d2c3ce2d903eab.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 104, + 104, + 248, + 119.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 104, + 119.5, + 248, + 135.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 140, + 270, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 270, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 270, + 153 + ], + "score": 1.0, + "content": "Since each iteration of ALSET only uses", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 151, + 271, + 164 + ], + "spans": [ + { + "bbox": [ + 107, + 151, + 128, + 164 + ], + "score": 0.87, + "content": "\\mathcal { O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 151, + 271, + 164 + ], + "score": 1.0, + "content": "samples (see Algorithm 3), Propo-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 163, + 271, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 271, + 175 + ], + "score": 1.0, + "content": "sition 4 implies that the sample complex-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 270, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 173, + 186 + ], + "score": 1.0, + "content": "ity to achieve an", + "type": "text" + }, + { + "bbox": [ + 174, + 176, + 179, + 183 + ], + "score": 0.62, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 173, + 270, + 186 + ], + "score": 1.0, + "content": "-stationary point of (3)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 269, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 116, + 196 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 184, + 148, + 196 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 184, + 269, + 196 + ], + "score": 1.0, + "content": ". Comparing with the results", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 140, + 271, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 276, + 108, + 503, + 120 + ], + "lines": [ + { + "bbox": [ + 276, + 105, + 503, + 124 + ], + "spans": [ + { + "bbox": [ + 276, + 105, + 503, + 124 + ], + "score": 1.0, + "content": "Algorithm 3 ALSET for the compositional problem (3)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 276, + 105, + 503, + 124 + ] + }, + { + "type": "index", + "bbox": [ + 281, + 124, + 509, + 182 + ], + "lines": [ + { + "bbox": [ + 280, + 122, + 445, + 138 + ], + "spans": [ + { + "bbox": [ + 280, + 122, + 336, + 138 + ], + "score": 1.0, + "content": "1: initialize:", + "type": "text" + }, + { + "bbox": [ + 336, + 124, + 362, + 137 + ], + "score": 0.84, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 122, + 404, + 138 + ], + "score": 1.0, + "content": ", stepsizes", + "type": "text" + }, + { + "bbox": [ + 404, + 125, + 441, + 137 + ], + "score": 0.89, + "content": "\\{ \\alpha _ { k } , \\beta _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 122, + 445, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 135, + 407, + 148 + ], + "spans": [ + { + "bbox": [ + 280, + 135, + 308, + 148 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 309, + 137, + 392, + 147 + ], + "score": 0.74, + "content": "k = 0 , 1 , \\ldots , K - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 135, + 407, + 148 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 144, + 475, + 160 + ], + "spans": [ + { + "bbox": [ + 280, + 147, + 293, + 159 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 306, + 144, + 338, + 160 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 338, + 146, + 475, + 159 + ], + "score": 0.84, + "content": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) )", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 156, + 509, + 172 + ], + "spans": [ + { + "bbox": [ + 280, + 159, + 294, + 170 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 306, + 156, + 336, + 172 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 337, + 159, + 509, + 171 + ], + "score": 0.9, + "content": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) \\nabla h ( x ^ { k } ; \\phi ^ { k } )", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 280, + 169, + 328, + 181 + ], + "spans": [ + { + "bbox": [ + 280, + 169, + 328, + 181 + ], + "score": 1.0, + "content": "5: end for", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + } + ], + "index": 12, + "bbox_fs": [ + 280, + 122, + 509, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 394, + 208 + ], + "score": 1.0, + "content": "of the SCGD method in [12], our result improves the sample complexity", + "type": "text" + }, + { + "bbox": [ + 394, + 195, + 426, + 208 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 4 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "under a fixed batch", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 207, + 469, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 469, + 219 + ], + "score": 1.0, + "content": "size. Importantly, our analysis does not introduce additional assumption compared to [12].", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 195, + 505, + 219 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 232, + 316, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 317, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 317, + 247 + ], + "score": 1.0, + "content": "4 Applications to Actor-Critic Methods", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "In this section, we apply our tighter analysis to the actor-critic (AC) method with linear value function", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "approximation [44], which can be viewed as a special case of the stochastic bilevel algorithm [45, 46].", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 257, + 506, + 281 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 306, + 297 + ], + "score": 1.0, + "content": "Consider a Markov decision process described by", + "type": "text" + }, + { + "bbox": [ + 306, + 284, + 396, + 296 + ], + "score": 0.93, + "content": "\\mathcal { M } = \\{ { \\cal S } , \\mathcal { A } , \\mathcal { P } , { \\cal R } , \\gamma \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 282, + 425, + 297 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 426, + 285, + 434, + 294 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 282, + 506, + 297 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 295, + 116, + 305 + ], + "score": 0.8, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 294, + 196, + 307 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 197, + 295, + 237, + 307 + ], + "score": 0.92, + "content": "\\mathcal { P } ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 294, + 386, + 307 + ], + "score": 1.0, + "content": "is the probability of transitioning to", + "type": "text" + }, + { + "bbox": [ + 386, + 295, + 414, + 305 + ], + "score": 0.9, + "content": "s ^ { \\prime } \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 294, + 461, + 307 + ], + "score": 1.0, + "content": "given state", + "type": "text" + }, + { + "bbox": [ + 461, + 295, + 487, + 305 + ], + "score": 0.9, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 134, + 318 + ], + "score": 1.0, + "content": "action", + "type": "text" + }, + { + "bbox": [ + 135, + 306, + 162, + 316 + ], + "score": 0.89, + "content": "a \\in { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 306, + 184, + 318 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 185, + 306, + 227, + 317 + ], + "score": 0.92, + "content": "R ( s , a , s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 306, + 351, + 318 + ], + "score": 1.0, + "content": "is the reward associated with", + "type": "text" + }, + { + "bbox": [ + 351, + 306, + 385, + 317 + ], + "score": 0.93, + "content": "( s , a , s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 306, + 407, + 318 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 407, + 306, + 449, + 317 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "is a discount", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 317, + 489, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 185, + 329 + ], + "score": 1.0, + "content": "factor. For a policy", + "type": "text" + }, + { + "bbox": [ + 185, + 319, + 196, + 328 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 317, + 301, + 329 + ], + "score": 1.0, + "content": ", define the value function", + "type": "text" + }, + { + "bbox": [ + 301, + 317, + 330, + 329 + ], + "score": 0.93, + "content": "V _ { \\pi _ { \\theta } } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 317, + 489, + 329 + ], + "score": 1.0, + "content": "that satisfies the Bellman equation [47]", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 282, + 506, + 329 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 331, + 418, + 345 + ], + "lines": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "spans": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "score": 0.88, + "content": "\\begin{array} { r } { V _ { \\pi _ { \\theta } } ( s ) = \\mathbb { E } _ { a \\sim \\pi _ { \\theta } ( . | s ) , s ^ { \\prime } \\sim \\mathcal { P } ( \\cdot | s , a ) } \\left[ r ( s , a , s ^ { \\prime } ) + \\gamma V _ { \\pi _ { \\theta } } ( s ^ { \\prime } ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "f74791f3420c18b5453cccfcd8a7f2aedabd56eaf6bef77d96754b16068daa3b.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 192, + 331, + 418, + 345 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 241, + 362 + ], + "score": 1.0, + "content": "Given the state feature mapping", + "type": "text" + }, + { + "bbox": [ + 241, + 348, + 309, + 360 + ], + "score": 0.92, + "content": "\\phi ( \\cdot ) : \\mathcal { S } \\mathbb { R } ^ { d _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 345, + 506, + 362 + ], + "score": 1.0, + "content": ", we approximate the value function linearly as", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 360, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 220, + 374 + ], + "score": 0.92, + "content": "V _ { \\pi _ { \\boldsymbol { \\theta } } } ( s ) \\approx \\hat { V } _ { y } ( s ) : = \\boldsymbol { \\phi } ( s ) ^ { \\top } \\boldsymbol { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 360, + 251, + 375 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 251, + 361, + 286, + 373 + ], + "score": 0.91, + "content": "\\boldsymbol { y } \\in \\mathbb { R } ^ { d _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 360, + 497, + 375 + ], + "score": 1.0, + "content": "is the critic parameter. The task of finding the best", + "type": "text" + }, + { + "bbox": [ + 497, + 364, + 504, + 373 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 373, + 379, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 145, + 388 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 145, + 374, + 209, + 387 + ], + "score": 0.94, + "content": "V _ { \\pi _ { \\theta } } ( s ) \\approx \\hat { V } _ { y } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 373, + 379, + 388 + ], + "score": 1.0, + "content": "is usually addressed by TD learning [48].", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 345, + 506, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 391, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 378, + 404 + ], + "score": 1.0, + "content": "Defining the stationary distribution induced by the policy parameter", + "type": "text" + }, + { + "bbox": [ + 378, + 392, + 389, + 402 + ], + "score": 0.86, + "content": "\\theta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 390, + 401, + 404 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 401, + 393, + 416, + 403 + ], + "score": 0.84, + "content": "\\mu _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 390, + 449, + 404 + ], + "score": 1.0, + "content": "and the", + "type": "text" + }, + { + "bbox": [ + 450, + 392, + 456, + 401 + ], + "score": 0.53, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "th transition", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 401, + 484, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 117, + 415 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 402, + 199, + 414 + ], + "score": 0.92, + "content": "\\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 401, + 297, + 415 + ], + "score": 1.0, + "content": ", which is sampled from", + "type": "text" + }, + { + "bbox": [ + 297, + 404, + 417, + 414 + ], + "score": 0.72, + "content": "s _ { k } \\sim \\mu _ { \\theta _ { k } } , a \\sim \\pi _ { \\theta _ { k } } , s _ { k + 1 } \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 401, + 484, + 415 + ], + "score": 1.0, + "content": ", the TD-error is", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 390, + 505, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 417, + 423, + 432 + ], + "lines": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "spans": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "score": 0.88, + "content": "\\hat { \\delta } ( \\xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \\gamma \\phi ( s _ { k + 1 } ) ^ { \\top } y _ { k } - \\phi ( s _ { k } ) ^ { \\top } y _ { k }", + "type": "interline_equation", + "image_path": "3a65ad360fd1c65f714ce075dccb4b8d554c095a5fb47320954acba9d15161d3.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 188, + 417, + 423, + 432 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 434, + 459, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 461, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 196, + 451 + ], + "score": 1.0, + "content": "and the critic gradient", + "type": "text" + }, + { + "bbox": [ + 197, + 435, + 332, + 449 + ], + "score": 0.91, + "content": "h _ { g } ( \\xi _ { k } , y _ { k } ) : = \\hat { \\delta } ( \\xi _ { k } , y _ { k } ) \\nabla \\hat { V } _ { y _ { k } } ( s _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 433, + 437, + 451 + ], + "score": 1.0, + "content": ". We update the parameter", + "type": "text" + }, + { + "bbox": [ + 437, + 439, + 444, + 448 + ], + "score": 0.82, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 433, + 461, + 451 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 433, + 461, + 451 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 451, + 374, + 466 + ], + "lines": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "spans": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "score": 0.9, + "content": "y _ { k + 1 } = \\Pi _ { R _ { y } } \\big ( y _ { k } + \\beta _ { k } h _ { g } ( \\xi _ { k } , y _ { k } ) \\big ) ,", + "type": "interline_equation", + "image_path": "144d8a586a43048d150440c89d7efb72f27ab8c19abf0d066fb42849bd5c8340.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 235, + 451, + 374, + 466 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 134, + 480 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 468, + 146, + 479 + ], + "score": 0.89, + "content": "\\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 467, + 253, + 480 + ], + "score": 1.0, + "content": "is the critic stepsize, and", + "type": "text" + }, + { + "bbox": [ + 253, + 468, + 272, + 480 + ], + "score": 0.91, + "content": "\\Pi _ { R _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "is the projection to control the norm of the gradient. A", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 478, + 403, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 190, + 491 + ], + "score": 1.0, + "content": "pre-defined constant", + "type": "text" + }, + { + "bbox": [ + 190, + 479, + 204, + 491 + ], + "score": 0.9, + "content": "R _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 478, + 403, + 491 + ], + "score": 1.0, + "content": "will be specified in the supplementary document.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 467, + 505, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 494, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 281, + 509 + ], + "score": 1.0, + "content": "The goal of policy optimization is to solve", + "type": "text" + }, + { + "bbox": [ + 282, + 494, + 343, + 507 + ], + "score": 0.75, + "content": "{ \\mathrm { m a x } } _ { \\theta \\in \\mathbb { R } ^ { d } } F ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 493, + 365, + 509 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 365, + 494, + 456, + 507 + ], + "score": 0.93, + "content": "F ( \\theta ) : = \\mathbb { E } _ { s \\sim \\eta } [ V _ { \\pi _ { \\theta } } ( s ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 493, + 487, + 509 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 488, + 497, + 495, + 506 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "the initial distribution. Leveraging the value function approximation and the policy gradient theorem", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 516, + 485, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 240, + 533 + ], + "score": 1.0, + "content": "[49], we have the policy gradient", + "type": "text" + }, + { + "bbox": [ + 240, + 516, + 360, + 531 + ], + "score": 0.9, + "content": "h _ { f } ( \\xi , \\theta , y ) : = \\hat { \\delta } ( \\xi , \\bar { y ) \\psi } _ { \\theta } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 517, + 485, + 533 + ], + "score": 1.0, + "content": ", which gives the policy update", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 493, + 506, + 533 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 533, + 372, + 546 + ], + "lines": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "spans": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "score": 0.89, + "content": "\\theta _ { k + 1 } = \\theta _ { k } + \\alpha _ { k } h _ { f } ( \\xi _ { k } ^ { \\prime } , \\theta _ { k } , y _ { k + 1 } ) ,", + "type": "interline_equation", + "image_path": "f68fc6a295fc04dc069efa01f19f9e23d49e51efd97555db17610adb1eab595f.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 236, + 533, + 372, + 546 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 104, + 545, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 133, + 563 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 550, + 146, + 559 + ], + "score": 0.86, + "content": "\\alpha _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 545, + 224, + 563 + ], + "score": 1.0, + "content": "is the stepsize and", + "type": "text" + }, + { + "bbox": [ + 225, + 548, + 330, + 560 + ], + "score": 0.91, + "content": "\\psi _ { \\boldsymbol \\theta } ( s , a ) : = \\nabla \\log \\pi _ { \\boldsymbol \\theta } ( a | s )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 545, + 422, + 563 + ], + "score": 1.0, + "content": ". Note that the sample", + "type": "text" + }, + { + "bbox": [ + 423, + 548, + 505, + 561 + ], + "score": 0.9, + "content": "\\xi _ { k } ^ { \\prime } : = ( s _ { k } ^ { \\prime } , a _ { k } ^ { \\prime } , s _ { k + 1 } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 246, + 574 + ], + "score": 1.0, + "content": "used in (30) is independent from", + "type": "text" + }, + { + "bbox": [ + 247, + 561, + 258, + 572 + ], + "score": 0.87, + "content": "\\xi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 559, + 350, + 574 + ], + "score": 1.0, + "content": "in (29). Specifically,", + "type": "text" + }, + { + "bbox": [ + 351, + 560, + 361, + 573 + ], + "score": 0.89, + "content": "\\xi _ { k } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 559, + 435, + 574 + ], + "score": 1.0, + "content": "is sampled from", + "type": "text" + }, + { + "bbox": [ + 435, + 561, + 505, + 573 + ], + "score": 0.89, + "content": "s _ { k } ^ { \\prime } \\sim d _ { \\theta _ { k } } , a _ { k } ^ { \\prime } \\sim", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 570, + 454, + 585 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 167, + 585 + ], + "score": 0.93, + "content": "\\pi _ { \\boldsymbol { \\theta } _ { k } } , s _ { k + 1 } ^ { \\prime } \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 570, + 189, + 585 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 189, + 572, + 203, + 583 + ], + "score": 0.9, + "content": "d _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 570, + 438, + 585 + ], + "score": 1.0, + "content": "being the discounted state action visitation measure under", + "type": "text" + }, + { + "bbox": [ + 438, + 573, + 448, + 582 + ], + "score": 0.86, + "content": "\\theta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 570, + 454, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 545, + 505, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 601 + ], + "score": 1.0, + "content": "The alternating AC update (29)-(30) is a special case of ALSET, where the critic update is the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 599, + 370, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 370, + 612 + ], + "score": 1.0, + "content": "lower-level update, and the actor update is the upper-level update.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 586, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "Due to space limitation, we will directly present the results of the alternating AC next, and defer pre-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "sentation of the proof and the corresponding assumptions, which are the counterparts of Assumptions", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 636, + 339, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 339, + 650 + ], + "score": 1.0, + "content": "1–3 in the context of AC, to the supplementary document.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 615, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Theorem 2 (Actor-critic). Under the some regularity conditions that are specified in the supplemen-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 659, + 438, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 243, + 678 + ], + "score": 1.0, + "content": "tary document, selecting step size", + "type": "text" + }, + { + "bbox": [ + 243, + 661, + 320, + 677 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\alpha _ { k } = \\alpha = \\overset { \\cdot } { \\mathcal { O } } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 659, + 324, + 678 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 325, + 661, + 400, + 677 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\beta _ { k } = \\beta = \\mathcal { O } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 659, + 438, + 678 + ], + "score": 1.0, + "content": ", it holds", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 104, + 650, + 505, + 678 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 678, + 388, + 709 + ], + "lines": [ + { + "bbox": [ + 223, + 678, + 388, + 709 + ], + "spans": [ + { + "bbox": [ + 223, + 678, + 388, + 709 + ], + "score": 0.93, + "content": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\| \\nabla F ( \\theta _ { k } ) \\| ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { 1 } { \\sqrt { K } } \\right) + \\epsilon _ { \\mathrm { a p p } }", + "type": "interline_equation", + "image_path": "6e8745504937552e960e3105a3635f680c42e33ac18f071f89ac3ebc5f3c4946.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 678, + 388, + 693.5 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 223, + 693.5, + 388, + 709.0 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 711, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 132, + 725 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 712, + 150, + 723 + ], + "score": 0.86, + "content": "\\epsilon _ { \\mathrm { a p p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 709, + 507, + 725 + ], + "score": 1.0, + "content": ", defined in the supplementary document, captures the richness of the linear function class.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 51, + "bbox_fs": [ + 106, + 709, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "score": 1.0, + "content": "Both sides of Theorem 2. As an application of our tighter analysis, Theorem 2 establishes for the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 454, + 96 + ], + "score": 1.0, + "content": "first time that the sample complexity of the single-loop alternating actor-critic method is", + "type": "text" + }, + { + "bbox": [ + 455, + 83, + 486, + 96 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 83, + 506, + 96 + ], + "score": 1.0, + "content": ". On", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 372, + 109 + ], + "score": 1.0, + "content": "the positive side, this new result improves the previous complexity", + "type": "text" + }, + { + "bbox": [ + 372, + 95, + 412, + 107 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 93, + 506, + 109 + ], + "score": 1.0, + "content": "for the single-loop AC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 507, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 146, + 121 + ], + "score": 1.0, + "content": "[50], and", + "type": "text" + }, + { + "bbox": [ + 147, + 106, + 208, + 119 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } \\log \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 105, + 383, + 121 + ], + "score": 1.0, + "content": "for the nested-loop AC [51], and matches", + "type": "text" + }, + { + "bbox": [ + 383, + 107, + 415, + 119 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 105, + 507, + 121 + ], + "score": 1.0, + "content": "for AC with an exact", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "critic oracle [52]. In addition to using two independent samples, one limitation of our result is that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 128, + 504, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 504, + 140 + ], + "score": 1.0, + "content": "inheriting from the analysis for the general bilevel case, our analysis of AC requires the smoothness", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 204, + 153 + ], + "score": 1.0, + "content": "of the critic fixed-point", + "type": "text" + }, + { + "bbox": [ + 204, + 140, + 227, + 151 + ], + "score": 0.92, + "content": "y ^ { * } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 138, + 505, + 153 + ], + "score": 1.0, + "content": ". As shown in the supplementary document, this implicitly requires", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 470, + 163 + ], + "score": 1.0, + "content": "the additional bounded and Lipschitz continuity assumption on the stationary distribution", + "type": "text" + }, + { + "bbox": [ + 471, + 152, + 482, + 162 + ], + "score": 0.83, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 150, + 505, + 163 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 161, + 493, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 493, + 174 + ], + "score": 1.0, + "content": "removal of this assumption and the extension to Markovian sampling are left for future research.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 184, + 255, + 198 + ], + "lines": [ + { + "bbox": [ + 104, + 183, + 257, + 202 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 257, + 202 + ], + "score": 1.0, + "content": "5 Preliminary Experiments", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 221 + ], + "score": 1.0, + "content": "To validate our new theoretical results, we have conducted the simple experiment using the risk-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "averse portfolio management task on a benchmark dataset - 100 Book-to-Market. This is a typical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "application of stochastic compositional optimization (3) that is used in [40, 41]. We compared the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 241, + 467, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 467, + 254 + ], + "score": 1.0, + "content": "popular two-timescale SCGD approach [12] with our single-timescale ALSET approach.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 277, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 278, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 236, + 270 + ], + "score": 1.0, + "content": "We use the same initialization of", + "type": "text" + }, + { + "bbox": [ + 237, + 257, + 262, + 269 + ], + "score": 0.88, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 256, + 278, + 270 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 278, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 278, + 281 + ], + "score": 1.0, + "content": "both SCGD and ALSET, and tune the step-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 279, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 128, + 291 + ], + "score": 1.0, + "content": "sizes", + "type": "text" + }, + { + "bbox": [ + 128, + 280, + 155, + 291 + ], + "score": 0.89, + "content": "\\alpha _ { k } , \\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 280, + 279, + 291 + ], + "score": 1.0, + "content": "by following the suggested or-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 290, + 277, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 277, + 302 + ], + "score": 1.0, + "content": "der in the original SCGD paper and then", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 302, + 277, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 277, + 313 + ], + "score": 1.0, + "content": "using a grid search for the multiplicative", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 313, + 178, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 142, + 324 + ], + "score": 1.0, + "content": "constant", + "type": "text" + }, + { + "bbox": [ + 142, + 315, + 148, + 322 + ], + "score": 0.67, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 313, + 178, + 324 + ], + "score": 1.0, + "content": ", that is", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "table", + "bbox": [ + 288, + 266, + 501, + 337 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 288, + 266, + 501, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 288, + 266, + 501, + 337 + ], + "spans": [ + { + "bbox": [ + 288, + 266, + 501, + 337 + ], + "score": 0.98, + "html": "
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
", + "type": "table", + "image_path": "54ca6523954c21ed762295cfb1704e2b9d8895c5ceea245c1861ad223663912e.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 288, + 266, + 501, + 280.2 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 288, + 280.2, + 501, + 294.4 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 288, + 294.4, + 501, + 308.59999999999997 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 288, + 308.59999999999997, + 501, + 322.79999999999995 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 288, + 322.79999999999995, + 501, + 336.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 358, + 276, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 277, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 158, + 372 + ], + "score": 1.0, + "content": "The constant", + "type": "text" + }, + { + "bbox": [ + 158, + 361, + 164, + 368 + ], + "score": 0.76, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 356, + 277, + 372 + ], + "score": 1.0, + "content": "is chosen from the searching", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 284, + 342, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 280, + 337, + 508, + 361 + ], + "spans": [ + { + "bbox": [ + 280, + 337, + 378, + 361 + ], + "score": 1.0, + "content": "Table 4: Comparison of", + "type": "text" + }, + { + "bbox": [ + 379, + 342, + 475, + 356 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\ln ( \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ) } \\quad } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 337, + 508, + 361 + ], + "score": 1.0, + "content": "among", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 284, + 353, + 489, + 366 + ], + "spans": [ + { + "bbox": [ + 284, + 353, + 489, + 366 + ], + "score": 1.0, + "content": "the two-timescale and single-timescale algorithms.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.0 + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 506, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 124, + 382 + ], + "score": 1.0, + "content": "grid", + "type": "text" + }, + { + "bbox": [ + 125, + 369, + 222, + 381 + ], + "score": 0.9, + "content": "\\{ 1 0 ^ { - 3 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 367, + 506, + 382 + ], + "score": 1.0, + "content": "and is optimized for each algorithm in terms of ergodic average gradient", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 506, + 393 + ], + "score": 1.0, + "content": "norm versus the number of iterations. In Table 4, we report the logarithmic value of the average", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 391, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 403 + ], + "score": 1.0, + "content": "gradient norm performance of SCGD, ALSET with both the above decreasing stepsizes and ALSET-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 285, + 414 + ], + "score": 1.0, + "content": "const with the constant stepsizes (replacing", + "type": "text" + }, + { + "bbox": [ + 286, + 402, + 293, + 412 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 402, + 315, + 414 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 315, + 402, + 360, + 412 + ], + "score": 0.89, + "content": "K = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "). Since SCGD and ALSET use the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "same number of samples and gradient evaluations per iteration, we report the progress in terms of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "iterations. By calculating the decay rate, we can observe that the empirical convergence rate of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 281, + 448 + ], + "score": 1.0, + "content": "ALSET is no worse than the theoretical rate", + "type": "text" + }, + { + "bbox": [ + 281, + 434, + 322, + 448 + ], + "score": 0.93, + "content": "\\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 434, + 506, + 448 + ], + "score": 1.0, + "content": ", and ALSET outperforms SCGD thanks to its", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 447, + 491, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 491, + 458 + ], + "score": 1.0, + "content": "single-timescale stepsizes. We will pursue more comprehensive experiments in our future work.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 107, + 470, + 188, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 468, + 190, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 190, + 486 + ], + "score": 1.0, + "content": "6 Conclusions", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "This paper unifies several SGD-type updates for stochastic nested problems into a single nested SGD", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "score": 1.0, + "content": "approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. ALSET runs", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "in the single-timescale and uses a fixed batch size. This paper presents a tighter analysis for using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 433, + 540 + ], + "score": 1.0, + "content": "ALSET to solve stochastic nested problems. Under the new analysis, to achieve an", + "type": "text" + }, + { + "bbox": [ + 434, + 529, + 439, + 537 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "-stationary point", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 264, + 550 + ], + "score": 1.0, + "content": "of the nested problem, ALSET requires", + "type": "text" + }, + { + "bbox": [ + 264, + 537, + 296, + 550 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "samples in total. As a by-product, this general result", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "also improves the existing sample complexity of the min-max and compositional cases. It matches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "the sample complexity of SGD for single-level stochastic problems. Applying our analysis to an", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 570, + 489, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 489, + 583 + ], + "score": 1.0, + "content": "alternating version of the actor-critic algorithm also yields a state-of-the-art sample complexity.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Potential limitations of our results include additional assumptions in the min-max and actor-critic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "cases, which inherit from the assumptions of general bilevel problems. Nevertheless, our work", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "can also lead to promising future research in understanding the theoretical performance of many", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "successful empirical nested optimization algorithms. To this end, our future work consists of relaxing", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "the regularity conditions needed to achieve our theoretical results and Possible extensions include", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 642, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 653 + ], + "score": 1.0, + "content": "applying our the tighter analysis in this paper to the existing two-timescale Hessian-free bilevel", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 652, + 447, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 447, + 665 + ], + "score": 1.0, + "content": "optimization algorithms and decentralized stochastic nested optimization algorithms.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + }, + { + "type": "title", + "bbox": [ + 108, + 676, + 207, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 674, + 208, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 208, + 692 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 52 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "The work of T. Chen was partially supported by NSF Grant 2047177 and the RPI-IBM Artificial", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "Intelligence Research Collaboration (AIRC). The work of Y. Sun was partially supported by ONR", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "score": 1.0, + "content": "Both sides of Theorem 2. As an application of our tighter analysis, Theorem 2 establishes for the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 454, + 96 + ], + "score": 1.0, + "content": "first time that the sample complexity of the single-loop alternating actor-critic method is", + "type": "text" + }, + { + "bbox": [ + 455, + 83, + 486, + 96 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 83, + 506, + 96 + ], + "score": 1.0, + "content": ". On", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 372, + 109 + ], + "score": 1.0, + "content": "the positive side, this new result improves the previous complexity", + "type": "text" + }, + { + "bbox": [ + 372, + 95, + 412, + 107 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 93, + 506, + 109 + ], + "score": 1.0, + "content": "for the single-loop AC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 507, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 146, + 121 + ], + "score": 1.0, + "content": "[50], and", + "type": "text" + }, + { + "bbox": [ + 147, + 106, + 208, + 119 + ], + "score": 0.92, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } \\log \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 105, + 383, + 121 + ], + "score": 1.0, + "content": "for the nested-loop AC [51], and matches", + "type": "text" + }, + { + "bbox": [ + 383, + 107, + 415, + 119 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 105, + 507, + 121 + ], + "score": 1.0, + "content": "for AC with an exact", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "critic oracle [52]. In addition to using two independent samples, one limitation of our result is that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 128, + 504, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 504, + 140 + ], + "score": 1.0, + "content": "inheriting from the analysis for the general bilevel case, our analysis of AC requires the smoothness", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 204, + 153 + ], + "score": 1.0, + "content": "of the critic fixed-point", + "type": "text" + }, + { + "bbox": [ + 204, + 140, + 227, + 151 + ], + "score": 0.92, + "content": "y ^ { * } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 138, + 505, + 153 + ], + "score": 1.0, + "content": ". As shown in the supplementary document, this implicitly requires", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 470, + 163 + ], + "score": 1.0, + "content": "the additional bounded and Lipschitz continuity assumption on the stationary distribution", + "type": "text" + }, + { + "bbox": [ + 471, + 152, + 482, + 162 + ], + "score": 0.83, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 150, + 505, + 163 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 161, + 493, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 493, + 174 + ], + "score": 1.0, + "content": "removal of this assumption and the extension to Markovian sampling are left for future research.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 73, + 507, + 174 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 184, + 255, + 198 + ], + "lines": [ + { + "bbox": [ + 104, + 183, + 257, + 202 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 257, + 202 + ], + "score": 1.0, + "content": "5 Preliminary Experiments", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 221 + ], + "score": 1.0, + "content": "To validate our new theoretical results, we have conducted the simple experiment using the risk-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "averse portfolio management task on a benchmark dataset - 100 Book-to-Market. This is a typical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "application of stochastic compositional optimization (3) that is used in [40, 41]. We compared the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 241, + 467, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 467, + 254 + ], + "score": 1.0, + "content": "popular two-timescale SCGD approach [12] with our single-timescale ALSET approach.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 209, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 277, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 278, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 236, + 270 + ], + "score": 1.0, + "content": "We use the same initialization of", + "type": "text" + }, + { + "bbox": [ + 237, + 257, + 262, + 269 + ], + "score": 0.88, + "content": "x ^ { 0 } , y ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 256, + 278, + 270 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 278, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 278, + 281 + ], + "score": 1.0, + "content": "both SCGD and ALSET, and tune the step-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 279, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 128, + 291 + ], + "score": 1.0, + "content": "sizes", + "type": "text" + }, + { + "bbox": [ + 128, + 280, + 155, + 291 + ], + "score": 0.89, + "content": "\\alpha _ { k } , \\beta _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 280, + 279, + 291 + ], + "score": 1.0, + "content": "by following the suggested or-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 290, + 277, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 277, + 302 + ], + "score": 1.0, + "content": "der in the original SCGD paper and then", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 302, + 277, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 277, + 313 + ], + "score": 1.0, + "content": "using a grid search for the multiplicative", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 313, + 178, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 142, + 324 + ], + "score": 1.0, + "content": "constant", + "type": "text" + }, + { + "bbox": [ + 142, + 315, + 148, + 322 + ], + "score": 0.67, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 313, + 178, + 324 + ], + "score": 1.0, + "content": ", that is", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 256, + 279, + 324 + ] + }, + { + "type": "table", + "bbox": [ + 288, + 266, + 501, + 337 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 288, + 266, + 501, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 288, + 266, + 501, + 337 + ], + "spans": [ + { + "bbox": [ + 288, + 266, + 501, + 337 + ], + "score": 0.98, + "html": "
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
", + "type": "table", + "image_path": "54ca6523954c21ed762295cfb1704e2b9d8895c5ceea245c1861ad223663912e.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 288, + 266, + 501, + 280.2 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 288, + 280.2, + 501, + 294.4 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 288, + 294.4, + 501, + 308.59999999999997 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 288, + 308.59999999999997, + 501, + 322.79999999999995 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 288, + 322.79999999999995, + 501, + 336.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 358, + 276, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 277, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 158, + 372 + ], + "score": 1.0, + "content": "The constant", + "type": "text" + }, + { + "bbox": [ + 158, + 361, + 164, + 368 + ], + "score": 0.76, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 356, + 277, + 372 + ], + "score": 1.0, + "content": "is chosen from the searching", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 356, + 277, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 284, + 342, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 280, + 337, + 508, + 361 + ], + "spans": [ + { + "bbox": [ + 280, + 337, + 378, + 361 + ], + "score": 1.0, + "content": "Table 4: Comparison of", + "type": "text" + }, + { + "bbox": [ + 379, + 342, + 475, + 356 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\ln ( \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ) } \\quad } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 337, + 508, + 361 + ], + "score": 1.0, + "content": "among", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 284, + 353, + 489, + 366 + ], + "spans": [ + { + "bbox": [ + 284, + 353, + 489, + 366 + ], + "score": 1.0, + "content": "the two-timescale and single-timescale algorithms.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.0, + "bbox_fs": [ + 280, + 337, + 508, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 506, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 124, + 382 + ], + "score": 1.0, + "content": "grid", + "type": "text" + }, + { + "bbox": [ + 125, + 369, + 222, + 381 + ], + "score": 0.9, + "content": "\\{ 1 0 ^ { - 3 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 367, + 506, + 382 + ], + "score": 1.0, + "content": "and is optimized for each algorithm in terms of ergodic average gradient", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 506, + 393 + ], + "score": 1.0, + "content": "norm versus the number of iterations. In Table 4, we report the logarithmic value of the average", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 391, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 403 + ], + "score": 1.0, + "content": "gradient norm performance of SCGD, ALSET with both the above decreasing stepsizes and ALSET-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 285, + 414 + ], + "score": 1.0, + "content": "const with the constant stepsizes (replacing", + "type": "text" + }, + { + "bbox": [ + 286, + 402, + 293, + 412 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 402, + 315, + 414 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 315, + 402, + 360, + 412 + ], + "score": 0.89, + "content": "K = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "). Since SCGD and ALSET use the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "same number of samples and gradient evaluations per iteration, we report the progress in terms of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "iterations. By calculating the decay rate, we can observe that the empirical convergence rate of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 281, + 448 + ], + "score": 1.0, + "content": "ALSET is no worse than the theoretical rate", + "type": "text" + }, + { + "bbox": [ + 281, + 434, + 322, + 448 + ], + "score": 0.93, + "content": "\\mathcal { O } ( k ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 434, + 506, + 448 + ], + "score": 1.0, + "content": ", and ALSET outperforms SCGD thanks to its", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 447, + 491, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 491, + 458 + ], + "score": 1.0, + "content": "single-timescale stepsizes. We will pursue more comprehensive experiments in our future work.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 367, + 506, + 458 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 470, + 188, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 468, + 190, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 190, + 486 + ], + "score": 1.0, + "content": "6 Conclusions", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "This paper unifies several SGD-type updates for stochastic nested problems into a single nested SGD", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "score": 1.0, + "content": "approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. ALSET runs", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "in the single-timescale and uses a fixed batch size. This paper presents a tighter analysis for using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 433, + 540 + ], + "score": 1.0, + "content": "ALSET to solve stochastic nested problems. Under the new analysis, to achieve an", + "type": "text" + }, + { + "bbox": [ + 434, + 529, + 439, + 537 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "-stationary point", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 264, + 550 + ], + "score": 1.0, + "content": "of the nested problem, ALSET requires", + "type": "text" + }, + { + "bbox": [ + 264, + 537, + 296, + 550 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "samples in total. As a by-product, this general result", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "also improves the existing sample complexity of the min-max and compositional cases. It matches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "the sample complexity of SGD for single-level stochastic problems. Applying our analysis to an", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 570, + 489, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 489, + 583 + ], + "score": 1.0, + "content": "alternating version of the actor-critic algorithm also yields a state-of-the-art sample complexity.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 493, + 506, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Potential limitations of our results include additional assumptions in the min-max and actor-critic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "cases, which inherit from the assumptions of general bilevel problems. Nevertheless, our work", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "can also lead to promising future research in understanding the theoretical performance of many", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "successful empirical nested optimization algorithms. To this end, our future work consists of relaxing", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "the regularity conditions needed to achieve our theoretical results and Possible extensions include", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 642, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 653 + ], + "score": 1.0, + "content": "applying our the tighter analysis in this paper to the existing two-timescale Hessian-free bilevel", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 652, + 447, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 447, + 665 + ], + "score": 1.0, + "content": "optimization algorithms and decentralized stochastic nested optimization algorithms.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48, + "bbox_fs": [ + 104, + 587, + 506, + 665 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 676, + 207, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 674, + 208, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 208, + 692 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 52 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "The work of T. Chen was partially supported by NSF Grant 2047177 and the RPI-IBM Artificial", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "Intelligence Research Collaboration (AIRC). The work of Y. Sun was partially supported by ONR", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53.5, + "bbox_fs": [ + 106, + 699, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 505, + 86 + ], + "score": 1.0, + "content": "Grant N000141712162 and AFOSR MURI FA9550-18-1-0502. We thank anonymous reviewers for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 330, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 330, + 97 + ], + "score": 1.0, + "content": "their valuable feedback on improving the current paper.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 167, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 167, + 127 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 130, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 506, + 145 + ], + "score": 1.0, + "content": "[1] H. Robbins and S. Monro, “A stochastic approximation method,” Annals of Mathematical", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 141, + 327, + 156 + ], + "spans": [ + { + "bbox": [ + 126, + 141, + 327, + 156 + ], + "score": 1.0, + "content": "Statistics, vol. 22, no. 3, pp. 400–407, Sep. 1951.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 110, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "[2] C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 172, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 126, + 172, + 504, + 187 + ], + "score": 1.0, + "content": "networks,” in Proc. Intl. Conf. Machine Learn., Sydney, Australia, Jun. 2017, pp. 1126–1135.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 191, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 110, + 191, + 506, + 207 + ], + "score": 1.0, + "content": "[3] L. Franceschi, P. Frasconi, S. Salzo, R. Grazzi, and M. Pontil, “Bilevel programming for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 203, + 507, + 218 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 507, + 218 + ], + "score": 1.0, + "content": "hyperparameter optimization and meta-learning,” in Proc. Intl. Conf. Machine Learn., Vienna,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 214, + 271, + 227 + ], + "spans": [ + { + "bbox": [ + 127, + 214, + 271, + 227 + ], + "score": 1.0, + "content": "Austria, Jun. 2018, pp. 1568–1577.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 109, + 232, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 109, + 232, + 507, + 249 + ], + "score": 1.0, + "content": "[4] B. Colson, P. Marcotte, and G. Savard, “An overview of bilevel optimization,” Annals of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 244, + 356, + 260 + ], + "spans": [ + { + "bbox": [ + 126, + 244, + 356, + 260 + ], + "score": 1.0, + "content": "operations research, vol. 153, no. 1, pp. 235–256, 2007.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 110, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "[5] G. Kunapuli, K. P. Bennett, J. Hu, and J.-S. Pang, “Classification model selection via bilevel", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 124, + 275, + 471, + 290 + ], + "spans": [ + { + "bbox": [ + 124, + 275, + 471, + 290 + ], + "score": 1.0, + "content": "programming,” Optimization Methods & Software, vol. 23, no. 4, pp. 475–489, 2008.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 295, + 401, + 309 + ], + "spans": [ + { + "bbox": [ + 110, + 295, + 401, + 309 + ], + "score": 1.0, + "content": "[6] S. Dempe and A. Zemkoho, Bilevel Optimization. Springer, 2020.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 110, + 315, + 506, + 330 + ], + "score": 1.0, + "content": "[7] C. Daskalakis and I. Panageas, “The limit points of (optimistic) gradient descent in min-max", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 125, + 325, + 508, + 342 + ], + "spans": [ + { + "bbox": [ + 125, + 325, + 508, + 342 + ], + "score": 1.0, + "content": "optimization,” in Proc. Advances in Neural Info. Process. Syst., Montreal, Canada, Dec. 2018,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 337, + 194, + 350 + ], + "spans": [ + { + "bbox": [ + 125, + 337, + 194, + 350 + ], + "score": 1.0, + "content": "pp. 9256–9266.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 109, + 356, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 109, + 356, + 506, + 372 + ], + "score": 1.0, + "content": "[8] G. Gidel, H. Berard, G. Vignoud, P. Vincent, and S. Lacoste-Julien, “A variational inequality", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 368, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 368, + 507, + 383 + ], + "score": 1.0, + "content": "perspective on generative adversarial networks,” in Proc. Intl. Conf. Learn. Representations,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 378, + 256, + 393 + ], + "spans": [ + { + "bbox": [ + 127, + 378, + 256, + 393 + ], + "score": 1.0, + "content": "Vancouver, Canada, Apr. 2018.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 110, + 398, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 110, + 398, + 506, + 414 + ], + "score": 1.0, + "content": "[9] H. Rafique, M. Liu, Q. Lin, and T. Yang, “Non-convex min-max optimization: Provable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 410, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 126, + 410, + 507, + 424 + ], + "score": 1.0, + "content": "algorithms and applications in machine learning,” Optimization Methods and Software, Mar.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 420, + 154, + 434 + ], + "spans": [ + { + "bbox": [ + 127, + 420, + 154, + 434 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 455 + ], + "score": 1.0, + "content": "[10] K. K. Thekumparampil, P. Jain, P. Netrapalli, and S. Oh, “Efficient algorithms for smooth", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 452, + 404, + 465 + ], + "spans": [ + { + "bbox": [ + 127, + 452, + 404, + 465 + ], + "score": 1.0, + "content": "minimax optimization,” in NeurIPS, Vancouver, Canada, Dec. 2019.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "score": 1.0, + "content": "[11] A. Mokhtari, A. Ozdaglar, and S. Pattathil, “A unified analysis of extra-gradient and optimistic", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "gradient methods for saddle point problems: Proximal point approach,” in Proc. Intl. Conf. on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 125, + 493, + 390, + 508 + ], + "spans": [ + { + "bbox": [ + 125, + 493, + 390, + 508 + ], + "score": 1.0, + "content": "Artif. Intell. and Stat., Palermo, Italy, Aug. 2020, pp. 1497–1507.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "[12] M. Wang, E. X. Fang, and H. Liu, “Stochastic compositional gradient descent: algorithms for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 127, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "minimizing compositions of expected-value functions,” Mathematical Programming, vol. 161,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 535, + 260, + 549 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 260, + 549 + ], + "score": 1.0, + "content": "no. 1-2, pp. 419–449, Jan. 2017.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "[13] B. Dai, N. He, Y. Pan, B. Boots, and L. Song, “Learning from conditional distributions via dual", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 125, + 564, + 508, + 582 + ], + "spans": [ + { + "bbox": [ + 125, + 564, + 508, + 582 + ], + "score": 1.0, + "content": "embeddings,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017, pp.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 577, + 177, + 590 + ], + "spans": [ + { + "bbox": [ + 127, + 577, + 177, + 590 + ], + "score": 1.0, + "content": "1458–1467.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "score": 1.0, + "content": "[14] S. Ghadimi, A. Ruszczynski, and M. Wang, “A single timescale stochastic approximation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 606, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 606, + 507, + 623 + ], + "score": 1.0, + "content": "method for nested stochastic optimization,” SIAM Journal on Optimization, vol. 30, no. 1, pp.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 618, + 214, + 631 + ], + "spans": [ + { + "bbox": [ + 127, + 618, + 214, + 631 + ], + "score": 1.0, + "content": "960–979, Mar. 2020.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 637, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 506, + 653 + ], + "score": 1.0, + "content": "[15] K. Ji, J. Yang, and Y. Liang, “Multi-step model-agnostic meta-learning: Convergence and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 649, + 377, + 664 + ], + "spans": [ + { + "bbox": [ + 127, + 649, + 377, + 664 + ], + "score": 1.0, + "content": "improved algorithms,” arXiv preprint:2002.07836, Feb. 2020.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "score": 1.0, + "content": "[16] S. Ghadimi and M. Wang, “Approximation methods for bilevel programming,” arXiv", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 125, + 680, + 243, + 693 + ], + "spans": [ + { + "bbox": [ + 125, + 680, + 243, + 693 + ], + "score": 1.0, + "content": "preprint:1802.02246, 2018.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[17] K. Ji, J. Yang, and Y. Liang, “Provably faster algorithms for bilevel optimization and applications", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 125, + 710, + 423, + 724 + ], + "spans": [ + { + "bbox": [ + 125, + 710, + 423, + 724 + ], + "score": 1.0, + "content": "to meta-learning,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 22.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 505, + 86 + ], + "score": 1.0, + "content": "Grant N000141712162 and AFOSR MURI FA9550-18-1-0502. We thank anonymous reviewers for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 330, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 330, + 97 + ], + "score": 1.0, + "content": "their valuable feedback on improving the current paper.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 71, + 505, + 97 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 111, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 167, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 167, + 127 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 130, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 506, + 145 + ], + "score": 1.0, + "content": "[1] H. Robbins and S. Monro, “A stochastic approximation method,” Annals of Mathematical", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 141, + 327, + 156 + ], + "spans": [ + { + "bbox": [ + 126, + 141, + 327, + 156 + ], + "score": 1.0, + "content": "Statistics, vol. 22, no. 3, pp. 400–407, Sep. 1951.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 110, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "[2] C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 172, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 126, + 172, + 504, + 187 + ], + "score": 1.0, + "content": "networks,” in Proc. Intl. Conf. Machine Learn., Sydney, Australia, Jun. 2017, pp. 1126–1135.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 191, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 110, + 191, + 506, + 207 + ], + "score": 1.0, + "content": "[3] L. Franceschi, P. Frasconi, S. Salzo, R. Grazzi, and M. Pontil, “Bilevel programming for", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 203, + 507, + 218 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 507, + 218 + ], + "score": 1.0, + "content": "hyperparameter optimization and meta-learning,” in Proc. Intl. Conf. Machine Learn., Vienna,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 214, + 271, + 227 + ], + "spans": [ + { + "bbox": [ + 127, + 214, + 271, + 227 + ], + "score": 1.0, + "content": "Austria, Jun. 2018, pp. 1568–1577.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 232, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 109, + 232, + 507, + 249 + ], + "score": 1.0, + "content": "[4] B. Colson, P. Marcotte, and G. Savard, “An overview of bilevel optimization,” Annals of", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 244, + 356, + 260 + ], + "spans": [ + { + "bbox": [ + 126, + 244, + 356, + 260 + ], + "score": 1.0, + "content": "operations research, vol. 153, no. 1, pp. 235–256, 2007.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 110, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "[5] G. Kunapuli, K. P. Bennett, J. Hu, and J.-S. Pang, “Classification model selection via bilevel", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 275, + 471, + 290 + ], + "spans": [ + { + "bbox": [ + 124, + 275, + 471, + 290 + ], + "score": 1.0, + "content": "programming,” Optimization Methods & Software, vol. 23, no. 4, pp. 475–489, 2008.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 295, + 401, + 309 + ], + "spans": [ + { + "bbox": [ + 110, + 295, + 401, + 309 + ], + "score": 1.0, + "content": "[6] S. Dempe and A. Zemkoho, Bilevel Optimization. Springer, 2020.", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 110, + 315, + 506, + 330 + ], + "score": 1.0, + "content": "[7] C. Daskalakis and I. Panageas, “The limit points of (optimistic) gradient descent in min-max", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 325, + 508, + 342 + ], + "spans": [ + { + "bbox": [ + 125, + 325, + 508, + 342 + ], + "score": 1.0, + "content": "optimization,” in Proc. Advances in Neural Info. Process. Syst., Montreal, Canada, Dec. 2018,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 337, + 194, + 350 + ], + "spans": [ + { + "bbox": [ + 125, + 337, + 194, + 350 + ], + "score": 1.0, + "content": "pp. 9256–9266.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 356, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 109, + 356, + 506, + 372 + ], + "score": 1.0, + "content": "[8] G. Gidel, H. Berard, G. Vignoud, P. Vincent, and S. Lacoste-Julien, “A variational inequality", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 368, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 127, + 368, + 507, + 383 + ], + "score": 1.0, + "content": "perspective on generative adversarial networks,” in Proc. Intl. Conf. Learn. Representations,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 378, + 256, + 393 + ], + "spans": [ + { + "bbox": [ + 127, + 378, + 256, + 393 + ], + "score": 1.0, + "content": "Vancouver, Canada, Apr. 2018.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 398, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 110, + 398, + 506, + 414 + ], + "score": 1.0, + "content": "[9] H. Rafique, M. Liu, Q. Lin, and T. Yang, “Non-convex min-max optimization: Provable", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 410, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 126, + 410, + 507, + 424 + ], + "score": 1.0, + "content": "algorithms and applications in machine learning,” Optimization Methods and Software, Mar.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 420, + 154, + 434 + ], + "spans": [ + { + "bbox": [ + 127, + 420, + 154, + 434 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 440, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 455 + ], + "score": 1.0, + "content": "[10] K. K. Thekumparampil, P. Jain, P. Netrapalli, and S. Oh, “Efficient algorithms for smooth", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 452, + 404, + 465 + ], + "spans": [ + { + "bbox": [ + 127, + 452, + 404, + 465 + ], + "score": 1.0, + "content": "minimax optimization,” in NeurIPS, Vancouver, Canada, Dec. 2019.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "score": 1.0, + "content": "[11] A. Mokhtari, A. Ozdaglar, and S. Pattathil, “A unified analysis of extra-gradient and optimistic", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 127, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "gradient methods for saddle point problems: Proximal point approach,” in Proc. Intl. Conf. on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 125, + 493, + 390, + 508 + ], + "spans": [ + { + "bbox": [ + 125, + 493, + 390, + 508 + ], + "score": 1.0, + "content": "Artif. Intell. and Stat., Palermo, Italy, Aug. 2020, pp. 1497–1507.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "[12] M. Wang, E. X. Fang, and H. Liu, “Stochastic compositional gradient descent: algorithms for", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 127, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "minimizing compositions of expected-value functions,” Mathematical Programming, vol. 161,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 535, + 260, + 549 + ], + "spans": [ + { + "bbox": [ + 126, + 535, + 260, + 549 + ], + "score": 1.0, + "content": "no. 1-2, pp. 419–449, Jan. 2017.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "[13] B. Dai, N. He, Y. Pan, B. Boots, and L. Song, “Learning from conditional distributions via dual", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 564, + 508, + 582 + ], + "spans": [ + { + "bbox": [ + 125, + 564, + 508, + 582 + ], + "score": 1.0, + "content": "embeddings,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017, pp.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 577, + 177, + 590 + ], + "spans": [ + { + "bbox": [ + 127, + 577, + 177, + 590 + ], + "score": 1.0, + "content": "1458–1467.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "score": 1.0, + "content": "[14] S. Ghadimi, A. Ruszczynski, and M. Wang, “A single timescale stochastic approximation", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 606, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 606, + 507, + 623 + ], + "score": 1.0, + "content": "method for nested stochastic optimization,” SIAM Journal on Optimization, vol. 30, no. 1, pp.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 618, + 214, + 631 + ], + "spans": [ + { + "bbox": [ + 127, + 618, + 214, + 631 + ], + "score": 1.0, + "content": "960–979, Mar. 2020.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 637, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 506, + 653 + ], + "score": 1.0, + "content": "[15] K. Ji, J. Yang, and Y. Liang, “Multi-step model-agnostic meta-learning: Convergence and", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 649, + 377, + 664 + ], + "spans": [ + { + "bbox": [ + 127, + 649, + 377, + 664 + ], + "score": 1.0, + "content": "improved algorithms,” arXiv preprint:2002.07836, Feb. 2020.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "score": 1.0, + "content": "[16] S. Ghadimi and M. Wang, “Approximation methods for bilevel programming,” arXiv", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 680, + 243, + 693 + ], + "spans": [ + { + "bbox": [ + 125, + 680, + 243, + 693 + ], + "score": 1.0, + "content": "preprint:1802.02246, 2018.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "[17] K. Ji, J. Yang, and Y. Liang, “Provably faster algorithms for bilevel optimization and applications", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 710, + 423, + 724 + ], + "spans": [ + { + "bbox": [ + 125, + 710, + 423, + 724 + ], + "score": 1.0, + "content": "to meta-learning,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 72, + 507, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 507, + 87 + ], + "score": 1.0, + "content": "[18] M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A two-timescale framework for bilevel opti-", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 84, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 84, + 506, + 98 + ], + "score": 1.0, + "content": "mization: Complexity analysis and application to actor-critic,” arXiv preprint:2007.05170,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 93, + 154, + 109 + ], + "spans": [ + { + "bbox": [ + 126, + 93, + 154, + 109 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "[19] T. Chen, Y. Sun, and W. Yin, “A single-timescale stochastic bilevel optimization method,” arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 126, + 267, + 138 + ], + "spans": [ + { + "bbox": [ + 125, + 126, + 267, + 138 + ], + "score": 1.0, + "content": "preprint arXiv:2102.04671, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 144, + 468, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 468, + 158 + ], + "score": 1.0, + "content": "[20] H. V. Stackelberg, The Theory of Market Economy. Oxford University Press, 1952.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 164, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 507, + 178 + ], + "score": 1.0, + "content": "[21] S. Sabach and S. Shtern, “A first order method for solving convex bilevel optimization problems,”", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 175, + 394, + 189 + ], + "spans": [ + { + "bbox": [ + 126, + 175, + 394, + 189 + ], + "score": 1.0, + "content": "SIAM Journal on Optimization, vol. 27, no. 2, pp. 640–660, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "score": 1.0, + "content": "[22] A. Shaban, C.-A. Cheng, N. Hatch, and B. Boots, “Truncated back-propagation for bilevel", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 126, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Naha, Okinawa, Japan, Apr. 2019,", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 217, + 193, + 229 + ], + "spans": [ + { + "bbox": [ + 126, + 217, + 193, + 229 + ], + "score": 1.0, + "content": "pp. 1723–1732.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 236, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 249 + ], + "score": 1.0, + "content": "[23] R. Grazzi, L. Franceschi, M. Pontil, and S. Salzo, “On the iteration complexity of hypergradient", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 247, + 470, + 261 + ], + "spans": [ + { + "bbox": [ + 126, + 247, + 470, + 261 + ], + "score": 1.0, + "content": "computation,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 3748–3758.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[24] R. Liu, P. Mu, X. Yuan, S. Zeng, and J. Zhang, “A generic first-order algorithmic framework for", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 276, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 127, + 276, + 505, + 290 + ], + "score": 1.0, + "content": "bi-level programming beyond lower-level singleton,” in Proc. of International Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 288, + 348, + 302 + ], + "spans": [ + { + "bbox": [ + 126, + 288, + 348, + 302 + ], + "score": 1.0, + "content": "Machine Learning, Virtual, July 2020, pp. 6305–6315.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "[25] P. Khanduri, S. Zeng, M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A momentum-assisted", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 317, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 126, + 317, + 507, + 334 + ], + "score": 1.0, + "content": "single-timescale stochastic approximation algorithm for bilevel optimization,” arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 330, + 252, + 343 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 252, + 343 + ], + "score": 1.0, + "content": "arXiv:2102.07367, Feb. 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "[26] Z. Guo and T. Yang, “Randomized stochastic variance-reduced methods for stochastic bilevel", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 360, + 371, + 374 + ], + "spans": [ + { + "bbox": [ + 126, + 360, + 371, + 374 + ], + "score": 1.0, + "content": "optimization,” arXiv preprint arXiv:2105.02266, May 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 378, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 394 + ], + "score": 1.0, + "content": "[27] J. Yang, K. Ji, and Y. Liang, “Provably faster algorithms for bilevel optimization,” arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 392, + 250, + 403 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 250, + 403 + ], + "score": 1.0, + "content": "arXiv:2106.04692, Jun. 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 409, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 507, + 425 + ], + "score": 1.0, + "content": "[28] T. Lin, C. Jin, and M. Jordan, “On gradient descent ascent for nonconvex-concave minimax", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 421, + 457, + 434 + ], + "spans": [ + { + "bbox": [ + 126, + 421, + 457, + 434 + ], + "score": 1.0, + "content": "problems,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 6083–6093.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "[29] T. Yoon and E. K. Ryu, “Accelerated algorithms for smooth convex-concave minimax problems", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 451, + 507, + 465 + ], + "spans": [ + { + "bbox": [ + 126, + 451, + 147, + 465 + ], + "score": 1.0, + "content": "with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 148, + 451, + 184, + 464 + ], + "score": 0.92, + "content": "O ( 1 / k ^ { 2 } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 185, + 451, + 507, + 465 + ], + "score": 1.0, + "content": "rate on squared gradient norm,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul.", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 126, + 461, + 155, + 476 + ], + "spans": [ + { + "bbox": [ + 126, + 461, + 155, + 476 + ], + "score": 1.0, + "content": "2021.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "[30] M. Nouiehed, M. Sanjabi, T. Huang, J. D. Lee, and M. Razaviyayn, “Solving a class of non-", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 127, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "convex min-max games using iterative first order methods,” in Proc. Advances in Neural Info.", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 504, + 394, + 518 + ], + "spans": [ + { + "bbox": [ + 126, + 504, + 394, + 518 + ], + "score": 1.0, + "content": "Process. Syst., Vancouver, Canada, Dec. 2019, pp. 14 934–14 942.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "[31] L. Luo, H. Ye, Z. Huang, and T. Zhang, “Stochastic recursive gradient descent ascent for", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 127, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "stochastic nonconvex-strongly-concave minimax problems,” in Proc. Advances in Neural Info.", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 546, + 266, + 558 + ], + "spans": [ + { + "bbox": [ + 127, + 546, + 266, + 558 + ], + "score": 1.0, + "content": "Process. Syst., Virtual, Dec. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 564, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 579 + ], + "score": 1.0, + "content": "[32] Y. Yan, Y. Xu, Q. Lin, W. Liu, and T. Yang, “Optimal epoch stochastic gradient descent ascent", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 577, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 127, + 577, + 506, + 588 + ], + "score": 1.0, + "content": "methods for min-max optimization,” Proc. Advances in Neural Info. Process. Syst., vol. 33, Dec.", + "type": "text", + "cross_page": true + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 587, + 154, + 599 + ], + "spans": [ + { + "bbox": [ + 127, + 587, + 154, + 599 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "[33] Q. Tran Dinh, D. Liu, and L. Nguyen, “Hybrid variance-reduced sgd algorithms for minimax", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 616, + 507, + 632 + ], + "spans": [ + { + "bbox": [ + 126, + 616, + 507, + 632 + ], + "score": 1.0, + "content": "problems with nonconvex-linear function,” in Proc. Advances in Neural Info. Process. Syst.,", + "type": "text", + "cross_page": true + } + ], + "index": 38 + }, + { + "bbox": [ + 128, + 628, + 205, + 640 + ], + "spans": [ + { + "bbox": [ + 128, + 628, + 205, + 640 + ], + "score": 1.0, + "content": "Virtual, Dec. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 646, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 507, + 662 + ], + "score": 1.0, + "content": "[34] M. Liu, Y. Mroueh, J. Ross, W. Zhang, X. Cui, P. Das, and T. Yang, “Towards better understand-", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 127, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "ing of adaptive gradient algorithms in generative adversarial nets,” in Proc. Intl. Conf. Learn.", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 669, + 274, + 683 + ], + "spans": [ + { + "bbox": [ + 127, + 669, + 274, + 683 + ], + "score": 1.0, + "content": "Representations, Virtual, Apr. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[35] J. Yang, N. Kiyavash, and N. He, “Global convergence and variance reduction for a class of", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 698, + 508, + 715 + ], + "spans": [ + { + "bbox": [ + 125, + 698, + 508, + 715 + ], + "score": 1.0, + "content": "nonconvex-nonconcave minimax problems,” in Proc. Advances in Neural Info. Process. Syst.,", + "type": "text", + "cross_page": true + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 710, + 207, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 710, + 207, + 723 + ], + "score": 1.0, + "content": "Virtual, Dec. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "score": 1.0, + "content": "[36] J. Diakonikolas, C. Daskalakis, and M. Jordan, “Efficient methods for structured nonconvex-", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "nonconcave min-max optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Virtual, Apr.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 154, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 154, + 108 + ], + "score": 1.0, + "content": "2021.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "score": 1.0, + "content": "[37] M. Wang, J. Liu, and E. Fang, “Accelerating stochastic composition optimization,” Journal", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 124, + 394, + 138 + ], + "spans": [ + { + "bbox": [ + 126, + 124, + 394, + 138 + ], + "score": 1.0, + "content": "Machine Learning Research, vol. 18, no. 1, pp. 3721–3743, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 141, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 157 + ], + "score": 1.0, + "content": "[38] T. Chen, Y. Sun, and W. Yin, “Solving stochastic compositional optimization is nearly as easy", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 154, + 445, + 166 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 445, + 166 + ], + "score": 1.0, + "content": "as solving stochastic optimization,” IEEE Trans. Sig. Proc., vol. 69, Aug. 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 171, + 507, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 186 + ], + "score": 1.0, + "content": "[39] A. Ruszczynski, “A stochastic subgradient method for nonsmooth nonconvex multi-level com-", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 182, + 379, + 196 + ], + "spans": [ + { + "bbox": [ + 125, + 182, + 379, + 196 + ], + "score": 1.0, + "content": "position optimization,” arXiv preprint:2001.10669, Jan. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "[40] X. Lian, M. Wang, and J. Liu, “Finite-sum composition optimization via variance reduced", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 211, + 508, + 226 + ], + "spans": [ + { + "bbox": [ + 126, + 211, + 508, + 226 + ], + "score": 1.0, + "content": "gradient descent,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "[41] J. Zhang and L. Xiao, “A stochastic composite gradient method with incremental variance", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 243, + 498, + 254 + ], + "spans": [ + { + "bbox": [ + 127, + 243, + 498, + 254 + ], + "score": 1.0, + "content": "reduction,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 1.0, + "content": "[42] Q. Tran-Dinh, N. Pham, and L. Nguyen, “Stochastic gauss-newton algorithms for nonconvex", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 271, + 465, + 283 + ], + "spans": [ + { + "bbox": [ + 126, + 271, + 465, + 283 + ], + "score": 1.0, + "content": "compositional optimization,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "[43] S. Ghadimi and G. Lan, “Stochastic first-and zeroth-order methods for nonconvex stochastic", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 300, + 467, + 313 + ], + "spans": [ + { + "bbox": [ + 126, + 300, + 467, + 313 + ], + "score": 1.0, + "content": "programming,” SIAM Journal on Optimization, vol. 23, no. 4, pp. 2341–2368, 2013.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "[44] V. Konda and V. Borkar, “Actor-critic-type learning algorithms for markov decision processes,”", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 330, + 437, + 342 + ], + "spans": [ + { + "bbox": [ + 127, + 330, + 437, + 342 + ], + "score": 1.0, + "content": "SIAM Journal on Control and Optimization, vol. 38, no. 1, pp. 94–123, 1999.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "[45] J. Wen, S. Kumar, R. Gummadi, and D. Schuurmans, “Characterizing the gap between actor-", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 358, + 439, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 358, + 439, + 372 + ], + "score": 1.0, + "content": "critic and policy gradient,” in Proc. Intl. Conf. Machine Learn., Virtual, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 378, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 506, + 389 + ], + "score": 1.0, + "content": "[46] L. Zheng, T. Fiez, Z. Alumbaugh, B. Chasnov, and L. J. Ratliff, “Stackelberg actor-critic:", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 388, + 501, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 501, + 402 + ], + "score": 1.0, + "content": "Game-theoretic reinforcement learning algorithms,” arXiv preprint arXiv:2109.12286, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 407, + 495, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 495, + 420 + ], + "score": 1.0, + "content": "[47] R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction. MIT Press, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 104, + 423, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 507, + 441 + ], + "score": 1.0, + "content": "[48] R. Sutton, “Learning to predict by the methods of temporal differences,” Machine Learning,", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 435, + 222, + 449 + ], + "spans": [ + { + "bbox": [ + 126, + 435, + 222, + 449 + ], + "score": 1.0, + "content": "vol. 3, pp. 9–44, 1988.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "[49] R. Sutton, D. McAllester, S. Singh, and Y. Mansour, “Policy gradient methods for reinforcement", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 465, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 127, + 465, + 507, + 479 + ], + "score": 1.0, + "content": "learning with function approximation.” in Proc. Advances in Neural Info. Process. Syst., 2000.", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "[50] Y. Wu, W. Zhang, P. Xu, and Q. Gu, “A finite time analysis of two time-scale actor critic", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 496, + 391, + 507 + ], + "spans": [ + { + "bbox": [ + 127, + 496, + 391, + 507 + ], + "score": 1.0, + "content": "methods,” in Proc. Advances in Neural Info. Process. Syst., 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "[51] T. Xu, Z. Wang, and Y. Liang, “Improving sample complexity bounds for (natural) actor-critic", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 524, + 399, + 536 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 399, + 536 + ], + "score": 1.0, + "content": "algorithms,” in Proc. Advances in Neural Info. Process. Syst., 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "[52] Z. Fu, Z. Yang, and Z. Wang, “Single-timescale actor-critic provably finds globally optimal", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 552, + 361, + 567 + ], + "spans": [ + { + "bbox": [ + 125, + 552, + 361, + 567 + ], + "score": 1.0, + "content": "policy,” in Proc. Intl. Conf. Learn. Representations, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 570, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 507, + 586 + ], + "score": 1.0, + "content": "[53] Y. Nesterov, Introductory Lectures on Convex Optimization: A basic course. Berlin, Germany:", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 582, + 225, + 595 + ], + "spans": [ + { + "bbox": [ + 126, + 582, + 225, + 595 + ], + "score": 1.0, + "content": "Springer, 2013, vol. 87.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 599, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 616 + ], + "score": 1.0, + "content": "[54] J. Bhandari, D. Russo, and R. Singal, “A finite time analysis of temporal difference learning", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 612, + 340, + 625 + ], + "spans": [ + { + "bbox": [ + 126, + 612, + 340, + 625 + ], + "score": 1.0, + "content": "with linear function approximation.” in COLT, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "score": 1.0, + "content": "[55] T. Xu, Z. Wang, Y. Zhou, and Y. Liang, “Reanalysis of variance reduced temporal difference", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 641, + 369, + 655 + ], + "spans": [ + { + "bbox": [ + 127, + 641, + 369, + 655 + ], + "score": 1.0, + "content": "learning,” in Proc. Intl. Conf. Learn. Representations, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 658, + 507, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 674 + ], + "score": 1.0, + "content": "[56] K. Zhang, A. Koppel, H. Zhu, and T. Ba¸sar, “Global convergence of policy gradient methods to", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 671, + 403, + 684 + ], + "spans": [ + { + "bbox": [ + 127, + 671, + 403, + 684 + ], + "score": 1.0, + "content": "(almost) locally optimal policies,” arXiv preprint:1906.08383, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "[57] A. Agarwal, S. M. Kakade, J. D. Lee, and G. Mahajan, “Optimality and approximation with", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 125, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "policy gradient methods in markov decision processes.” in Proc. of Thirty Third Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 711, + 226, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 226, + 724 + ], + "score": 1.0, + "content": "Learning Theory, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "score": 1.0, + "content": "[58] K. Doya, “Reinforcement learning in continuous time and space,” Neural Computation, vol. 12,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 84, + 232, + 95 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 232, + 95 + ], + "score": 1.0, + "content": "no. 1, pp. 219–245, 2000.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "score": 1.0, + "content": "[59] J. Baxter and P. L. Bartlett, “Infinite-horizon policy-gradient estimation,” J. Artificial Intelligence", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 114, + 262, + 126 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 262, + 126 + ], + "score": 1.0, + "content": "Res., vol. 15, pp. 319–350, 2001.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 131, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 506, + 146 + ], + "score": 1.0, + "content": "[60] A. Y. Mitrophanov, “Sensitivity and convergence of uniformly ergodic markov chains,” Journal", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 143, + 369, + 155 + ], + "spans": [ + { + "bbox": [ + 127, + 143, + 369, + 155 + ], + "score": 1.0, + "content": "of Applied Probability, vol. 42, no. 4, pp. 1003–1014, 2005.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "[61] S. Qiu, Z. Yang, J. Ye, and Z. Wang, “On the finite-time convergence of actor-critic algorithm,”", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 172, + 506, + 187 + ], + "score": 1.0, + "content": "in Optimization Foundations for Reinforcement Learning Workshop at Advances in Neural", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 184, + 286, + 198 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 286, + 198 + ], + "score": 1.0, + "content": "Information Processing Systems, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 109, + 508, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 63, + 507, + 726 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 507, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 507, + 87 + ], + "score": 1.0, + "content": "[18] M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A two-timescale framework for bilevel opti-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 84, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 84, + 506, + 98 + ], + "score": 1.0, + "content": "mization: Complexity analysis and application to actor-critic,” arXiv preprint:2007.05170,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 93, + 154, + 109 + ], + "spans": [ + { + "bbox": [ + 126, + 93, + 154, + 109 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "[19] T. Chen, Y. Sun, and W. Yin, “A single-timescale stochastic bilevel optimization method,” arXiv", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 125, + 126, + 267, + 138 + ], + "spans": [ + { + "bbox": [ + 125, + 126, + 267, + 138 + ], + "score": 1.0, + "content": "preprint arXiv:2102.04671, 2021.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 468, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 468, + 158 + ], + "score": 1.0, + "content": "[20] H. V. Stackelberg, The Theory of Market Economy. Oxford University Press, 1952.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 507, + 178 + ], + "score": 1.0, + "content": "[21] S. Sabach and S. Shtern, “A first order method for solving convex bilevel optimization problems,”", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 175, + 394, + 189 + ], + "spans": [ + { + "bbox": [ + 126, + 175, + 394, + 189 + ], + "score": 1.0, + "content": "SIAM Journal on Optimization, vol. 27, no. 2, pp. 640–660, 2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "score": 1.0, + "content": "[22] A. Shaban, C.-A. Cheng, N. Hatch, and B. Boots, “Truncated back-propagation for bilevel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 126, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 126, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Naha, Okinawa, Japan, Apr. 2019,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 217, + 193, + 229 + ], + "spans": [ + { + "bbox": [ + 126, + 217, + 193, + 229 + ], + "score": 1.0, + "content": "pp. 1723–1732.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 236, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 249 + ], + "score": 1.0, + "content": "[23] R. Grazzi, L. Franceschi, M. Pontil, and S. Salzo, “On the iteration complexity of hypergradient", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 247, + 470, + 261 + ], + "spans": [ + { + "bbox": [ + 126, + 247, + 470, + 261 + ], + "score": 1.0, + "content": "computation,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 3748–3758.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[24] R. Liu, P. Mu, X. Yuan, S. Zeng, and J. Zhang, “A generic first-order algorithmic framework for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 276, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 127, + 276, + 505, + 290 + ], + "score": 1.0, + "content": "bi-level programming beyond lower-level singleton,” in Proc. of International Conference on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 288, + 348, + 302 + ], + "spans": [ + { + "bbox": [ + 126, + 288, + 348, + 302 + ], + "score": 1.0, + "content": "Machine Learning, Virtual, July 2020, pp. 6305–6315.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "[25] P. Khanduri, S. Zeng, M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A momentum-assisted", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 317, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 126, + 317, + 507, + 334 + ], + "score": 1.0, + "content": "single-timescale stochastic approximation algorithm for bilevel optimization,” arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 330, + 252, + 343 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 252, + 343 + ], + "score": 1.0, + "content": "arXiv:2102.07367, Feb. 2021.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "[26] Z. Guo and T. Yang, “Randomized stochastic variance-reduced methods for stochastic bilevel", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 360, + 371, + 374 + ], + "spans": [ + { + "bbox": [ + 126, + 360, + 371, + 374 + ], + "score": 1.0, + "content": "optimization,” arXiv preprint arXiv:2105.02266, May 2021.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 378, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 394 + ], + "score": 1.0, + "content": "[27] J. Yang, K. Ji, and Y. Liang, “Provably faster algorithms for bilevel optimization,” arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 392, + 250, + 403 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 250, + 403 + ], + "score": 1.0, + "content": "arXiv:2106.04692, Jun. 2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 409, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 507, + 425 + ], + "score": 1.0, + "content": "[28] T. Lin, C. Jin, and M. Jordan, “On gradient descent ascent for nonconvex-concave minimax", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 421, + 457, + 434 + ], + "spans": [ + { + "bbox": [ + 126, + 421, + 457, + 434 + ], + "score": 1.0, + "content": "problems,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 6083–6093.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "[29] T. Yoon and E. K. Ryu, “Accelerated algorithms for smooth convex-concave minimax problems", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 451, + 507, + 465 + ], + "spans": [ + { + "bbox": [ + 126, + 451, + 147, + 465 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 148, + 451, + 184, + 464 + ], + "score": 0.92, + "content": "O ( 1 / k ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 451, + 507, + 465 + ], + "score": 1.0, + "content": "rate on squared gradient norm,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 126, + 461, + 155, + 476 + ], + "spans": [ + { + "bbox": [ + 126, + 461, + 155, + 476 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "[30] M. Nouiehed, M. Sanjabi, T. Huang, J. D. Lee, and M. Razaviyayn, “Solving a class of non-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 127, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "convex min-max games using iterative first order methods,” in Proc. Advances in Neural Info.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 504, + 394, + 518 + ], + "spans": [ + { + "bbox": [ + 126, + 504, + 394, + 518 + ], + "score": 1.0, + "content": "Process. Syst., Vancouver, Canada, Dec. 2019, pp. 14 934–14 942.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "[31] L. Luo, H. Ye, Z. Huang, and T. Zhang, “Stochastic recursive gradient descent ascent for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 127, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "stochastic nonconvex-strongly-concave minimax problems,” in Proc. Advances in Neural Info.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 546, + 266, + 558 + ], + "spans": [ + { + "bbox": [ + 127, + 546, + 266, + 558 + ], + "score": 1.0, + "content": "Process. Syst., Virtual, Dec. 2020.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 564, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 579 + ], + "score": 1.0, + "content": "[32] Y. Yan, Y. Xu, Q. Lin, W. Liu, and T. Yang, “Optimal epoch stochastic gradient descent ascent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 577, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 127, + 577, + 506, + 588 + ], + "score": 1.0, + "content": "methods for min-max optimization,” Proc. Advances in Neural Info. Process. Syst., vol. 33, Dec.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 587, + 154, + 599 + ], + "spans": [ + { + "bbox": [ + 127, + 587, + 154, + 599 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "[33] Q. Tran Dinh, D. Liu, and L. Nguyen, “Hybrid variance-reduced sgd algorithms for minimax", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 616, + 507, + 632 + ], + "spans": [ + { + "bbox": [ + 126, + 616, + 507, + 632 + ], + "score": 1.0, + "content": "problems with nonconvex-linear function,” in Proc. Advances in Neural Info. Process. Syst.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 128, + 628, + 205, + 640 + ], + "spans": [ + { + "bbox": [ + 128, + 628, + 205, + 640 + ], + "score": 1.0, + "content": "Virtual, Dec. 2020.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 646, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 507, + 662 + ], + "score": 1.0, + "content": "[34] M. Liu, Y. Mroueh, J. Ross, W. Zhang, X. Cui, P. Das, and T. Yang, “Towards better understand-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 127, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "ing of adaptive gradient algorithms in generative adversarial nets,” in Proc. Intl. Conf. Learn.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 669, + 274, + 683 + ], + "spans": [ + { + "bbox": [ + 127, + 669, + 274, + 683 + ], + "score": 1.0, + "content": "Representations, Virtual, Apr. 2020.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[35] J. Yang, N. Kiyavash, and N. He, “Global convergence and variance reduction for a class of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 125, + 698, + 508, + 715 + ], + "spans": [ + { + "bbox": [ + 125, + 698, + 508, + 715 + ], + "score": 1.0, + "content": "nonconvex-nonconcave minimax problems,” in Proc. Advances in Neural Info. Process. Syst.,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 710, + 207, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 710, + 207, + 723 + ], + "score": 1.0, + "content": "Virtual, Dec. 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 63, + 507, + 726 + ], + "lines": [], + "index": 22.5, + "bbox_fs": [ + 104, + 72, + 508, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 71, + 508, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "score": 1.0, + "content": "[36] J. Diakonikolas, C. Daskalakis, and M. Jordan, “Efficient methods for structured nonconvex-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "nonconcave min-max optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Virtual, Apr.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 154, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 154, + 108 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "score": 1.0, + "content": "[37] M. Wang, J. Liu, and E. Fang, “Accelerating stochastic composition optimization,” Journal", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 124, + 394, + 138 + ], + "spans": [ + { + "bbox": [ + 126, + 124, + 394, + 138 + ], + "score": 1.0, + "content": "Machine Learning Research, vol. 18, no. 1, pp. 3721–3743, 2017.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 157 + ], + "score": 1.0, + "content": "[38] T. Chen, Y. Sun, and W. Yin, “Solving stochastic compositional optimization is nearly as easy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 154, + 445, + 166 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 445, + 166 + ], + "score": 1.0, + "content": "as solving stochastic optimization,” IEEE Trans. Sig. Proc., vol. 69, Aug. 2021.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 507, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 186 + ], + "score": 1.0, + "content": "[39] A. Ruszczynski, “A stochastic subgradient method for nonsmooth nonconvex multi-level com-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 125, + 182, + 379, + 196 + ], + "spans": [ + { + "bbox": [ + 125, + 182, + 379, + 196 + ], + "score": 1.0, + "content": "position optimization,” arXiv preprint:2001.10669, Jan. 2020.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 201, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 506, + 214 + ], + "score": 1.0, + "content": "[40] X. Lian, M. Wang, and J. Liu, “Finite-sum composition optimization via variance reduced", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 211, + 508, + 226 + ], + "spans": [ + { + "bbox": [ + 126, + 211, + 508, + 226 + ], + "score": 1.0, + "content": "gradient descent,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "[41] J. Zhang and L. Xiao, “A stochastic composite gradient method with incremental variance", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 243, + 498, + 254 + ], + "spans": [ + { + "bbox": [ + 127, + 243, + 498, + 254 + ], + "score": 1.0, + "content": "reduction,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 1.0, + "content": "[42] Q. Tran-Dinh, N. Pham, and L. Nguyen, “Stochastic gauss-newton algorithms for nonconvex", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 126, + 271, + 465, + 283 + ], + "spans": [ + { + "bbox": [ + 126, + 271, + 465, + 283 + ], + "score": 1.0, + "content": "compositional optimization,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2020.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "[43] S. Ghadimi and G. Lan, “Stochastic first-and zeroth-order methods for nonconvex stochastic", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 300, + 467, + 313 + ], + "spans": [ + { + "bbox": [ + 126, + 300, + 467, + 313 + ], + "score": 1.0, + "content": "programming,” SIAM Journal on Optimization, vol. 23, no. 4, pp. 2341–2368, 2013.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "[44] V. Konda and V. Borkar, “Actor-critic-type learning algorithms for markov decision processes,”", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 330, + 437, + 342 + ], + "spans": [ + { + "bbox": [ + 127, + 330, + 437, + 342 + ], + "score": 1.0, + "content": "SIAM Journal on Control and Optimization, vol. 38, no. 1, pp. 94–123, 1999.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "[45] J. Wen, S. Kumar, R. Gummadi, and D. Schuurmans, “Characterizing the gap between actor-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 358, + 439, + 372 + ], + "spans": [ + { + "bbox": [ + 127, + 358, + 439, + 372 + ], + "score": 1.0, + "content": "critic and policy gradient,” in Proc. Intl. Conf. Machine Learn., Virtual, 2021.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 378, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 506, + 389 + ], + "score": 1.0, + "content": "[46] L. Zheng, T. Fiez, Z. Alumbaugh, B. Chasnov, and L. J. Ratliff, “Stackelberg actor-critic:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 388, + 501, + 402 + ], + "spans": [ + { + "bbox": [ + 127, + 388, + 501, + 402 + ], + "score": 1.0, + "content": "Game-theoretic reinforcement learning algorithms,” arXiv preprint arXiv:2109.12286, 2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 407, + 495, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 495, + 420 + ], + "score": 1.0, + "content": "[47] R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction. MIT Press, 2018.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 423, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 507, + 441 + ], + "score": 1.0, + "content": "[48] R. Sutton, “Learning to predict by the methods of temporal differences,” Machine Learning,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 126, + 435, + 222, + 449 + ], + "spans": [ + { + "bbox": [ + 126, + 435, + 222, + 449 + ], + "score": 1.0, + "content": "vol. 3, pp. 9–44, 1988.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "[49] R. Sutton, D. McAllester, S. Singh, and Y. Mansour, “Policy gradient methods for reinforcement", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 465, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 127, + 465, + 507, + 479 + ], + "score": 1.0, + "content": "learning with function approximation.” in Proc. Advances in Neural Info. Process. Syst., 2000.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "[50] Y. Wu, W. Zhang, P. Xu, and Q. Gu, “A finite time analysis of two time-scale actor critic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 496, + 391, + 507 + ], + "spans": [ + { + "bbox": [ + 127, + 496, + 391, + 507 + ], + "score": 1.0, + "content": "methods,” in Proc. Advances in Neural Info. Process. Syst., 2020.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "[51] T. Xu, Z. Wang, and Y. Liang, “Improving sample complexity bounds for (natural) actor-critic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 524, + 399, + 536 + ], + "spans": [ + { + "bbox": [ + 126, + 524, + 399, + 536 + ], + "score": 1.0, + "content": "algorithms,” in Proc. Advances in Neural Info. Process. Syst., 2020.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "[52] Z. Fu, Z. Yang, and Z. Wang, “Single-timescale actor-critic provably finds globally optimal", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 125, + 552, + 361, + 567 + ], + "spans": [ + { + "bbox": [ + 125, + 552, + 361, + 567 + ], + "score": 1.0, + "content": "policy,” in Proc. Intl. Conf. Learn. Representations, 2020.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 507, + 586 + ], + "score": 1.0, + "content": "[53] Y. Nesterov, Introductory Lectures on Convex Optimization: A basic course. Berlin, Germany:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 126, + 582, + 225, + 595 + ], + "spans": [ + { + "bbox": [ + 126, + 582, + 225, + 595 + ], + "score": 1.0, + "content": "Springer, 2013, vol. 87.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 616 + ], + "score": 1.0, + "content": "[54] J. Bhandari, D. Russo, and R. Singal, “A finite time analysis of temporal difference learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 612, + 340, + 625 + ], + "spans": [ + { + "bbox": [ + 126, + 612, + 340, + 625 + ], + "score": 1.0, + "content": "with linear function approximation.” in COLT, 2018.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "score": 1.0, + "content": "[55] T. Xu, Z. Wang, Y. Zhou, and Y. Liang, “Reanalysis of variance reduced temporal difference", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 641, + 369, + 655 + ], + "spans": [ + { + "bbox": [ + 127, + 641, + 369, + 655 + ], + "score": 1.0, + "content": "learning,” in Proc. Intl. Conf. Learn. Representations, 2020.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 507, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 674 + ], + "score": 1.0, + "content": "[56] K. Zhang, A. Koppel, H. Zhu, and T. Ba¸sar, “Global convergence of policy gradient methods to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 671, + 403, + 684 + ], + "spans": [ + { + "bbox": [ + 127, + 671, + 403, + 684 + ], + "score": 1.0, + "content": "(almost) locally optimal policies,” arXiv preprint:1906.08383, 2019.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "[57] A. Agarwal, S. M. Kakade, J. D. Lee, and G. Mahajan, “Optimality and approximation with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 125, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 125, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "policy gradient methods in markov decision processes.” in Proc. of Thirty Third Conference on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 711, + 226, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 226, + 724 + ], + "score": 1.0, + "content": "Learning Theory, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 71, + 508, + 723 + ], + "lines": [], + "index": 22, + "bbox_fs": [ + 104, + 73, + 508, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 507, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 506, + 86 + ], + "score": 1.0, + "content": "[58] K. Doya, “Reinforcement learning in continuous time and space,” Neural Computation, vol. 12,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 84, + 232, + 95 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 232, + 95 + ], + "score": 1.0, + "content": "no. 1, pp. 219–245, 2000.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 505, + 116 + ], + "score": 1.0, + "content": "[59] J. Baxter and P. L. Bartlett, “Infinite-horizon policy-gradient estimation,” J. Artificial Intelligence", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 114, + 262, + 126 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 262, + 126 + ], + "score": 1.0, + "content": "Res., vol. 15, pp. 319–350, 2001.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 131, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 506, + 146 + ], + "score": 1.0, + "content": "[60] A. Y. Mitrophanov, “Sensitivity and convergence of uniformly ergodic markov chains,” Journal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 143, + 369, + 155 + ], + "spans": [ + { + "bbox": [ + 127, + 143, + 369, + 155 + ], + "score": 1.0, + "content": "of Applied Probability, vol. 42, no. 4, pp. 1003–1014, 2005.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "[61] S. Qiu, Z. Yang, J. Ye, and Z. Wang, “On the finite-time convergence of actor-critic algorithm,”", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 172, + 506, + 187 + ], + "score": 1.0, + "content": "in Optimization Foundations for Reinforcement Learning Workshop at Advances in Neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 184, + 286, + 198 + ], + "spans": [ + { + "bbox": [ + 127, + 184, + 286, + 198 + ], + "score": 1.0, + "content": "Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 72, + 507, + 196 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 105, + 73, + 506, + 198 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_model.json b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1177ad939d960949ac3a527d96a0f4ad6206eb81 --- /dev/null +++ b/parse/train/r6cNUjS8cm0/r6cNUjS8cm0_model.json @@ -0,0 +1,24503 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 733, + 1304, + 733, + 1304, + 1248, + 397, + 1248 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1367, + 1406, + 1367, + 1406, + 1710, + 298, + 1710 + ], + "score": 0.983 + }, + { + "category_id": 0, + "poly": [ + 337, + 271, + 1365, + 271, + 1365, + 381, + 337, + 381 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 1926, + 1404, + 1926, + 1404, + 1989, + 299, + 1989 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1723, + 1399, + 1723, + 1399, + 1786, + 298, + 1786 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 549, + 1853, + 985, + 1853, + 985, + 1913, + 549, + 1913 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 754, + 490, + 1000, + 490, + 1000, + 588, + 754, + 588 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 1299, + 530, + 1299, + 530, + 1338, + 299, + 1338 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 1072, + 490, + 1360, + 490, + 1360, + 588, + 1072, + 588 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 788, + 664, + 912, + 664, + 912, + 700, + 788, + 700 + ], + "score": 0.894 + }, + { + "category_id": 8, + "poly": [ + 550, + 1795, + 950, + 1795, + 950, + 1847, + 550, + 1847 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 296, + 2032, + 1071, + 2032, + 1071, + 2063, + 296, + 2063 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1857, + 1399, + 1857, + 1399, + 1886, + 1353, + 1886 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1801, + 1399, + 1801, + 1399, + 1830, + 1354, + 1830 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1064, + 1856, + 1147, + 1856, + 1147, + 1888, + 1064, + 1888 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 335, + 489, + 696, + 489, + 696, + 587, + 335, + 587 + ], + "score": 0.688 + }, + { + "category_id": 9, + "poly": [ + 1065, + 1800, + 1154, + 1800, + 1154, + 1833, + 1065, + 1833 + ], + "score": 0.594 + }, + { + "category_id": 0, + "poly": [ + 1153, + 490, + 1281, + 490, + 1281, + 520, + 1153, + 520 + ], + "score": 0.1 + }, + { + "category_id": 2, + "poly": [ + 339, + 216, + 1355, + 216, + 1355, + 233, + 339, + 233 + ], + "score": 0.097 + }, + { + "category_id": 0, + "poly": [ + 440, + 490, + 589, + 490, + 589, + 521, + 440, + 521 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 1114, + 1063, + 1202, + 1063, + 1202, + 1098, + 1114, + 1098 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1461, + 1333, + 1461, + 1333, + 1497, + 1202, + 1497 + ], + "score": 0.93, + "latex": "\\nabla f ( x ^ { k } ; \\xi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 884, + 1429, + 1017, + 1429, + 1017, + 1464, + 884, + 1464 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\xi } ^ { - } \\left[ f ( x ; \\xi ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 545, + 1794, + 987, + 1794, + 987, + 1916, + 545, + 1916 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\underset { x \\in \\mathbb { R } ^ { d } } { \\operatorname* { m i n } } } & { F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\left( x , y ^ { * } ( x ) ; \\xi \\right) \\right] } \\\\ { \\mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \\underset { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } { \\operatorname { a r g m i n } } \\ \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 519, + 1460, + 828, + 1460, + 828, + 1496, + 519, + 1496 + ], + "score": 0.92, + "latex": "\\boldsymbol { x } ^ { k + 1 } = \\boldsymbol { x } ^ { k } - \\alpha \\nabla f ( x ^ { k } ; \\xi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1428, + 1296, + 1428, + 1296, + 1458, + 1211, + 1458 + ], + "score": 0.9, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 914, + 1466, + 987, + 1466, + 987, + 1493, + 914, + 1493 + ], + "score": 0.89, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 854, + 1494, + 884, + 1494, + 884, + 1529, + 854, + 1529 + ], + "score": 0.87, + "latex": "\\xi ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1495, + 681, + 1495, + 681, + 1524, + 648, + 1524 + ], + "score": 0.86, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1928, + 392, + 1928, + 392, + 1959, + 372, + 1959 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 907, + 1928, + 928, + 1928, + 928, + 1959, + 907, + 1959 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 839, + 1928, + 857, + 1928, + 857, + 1959, + 839, + 1959 + ], + "score": 0.84, + "latex": "\\xi" + }, + { + "category_id": 13, + "poly": [ + 443, + 1932, + 461, + 1932, + 461, + 1958, + 443, + 1958 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 524, + 1070, + 539, + 1070, + 539, + 1093, + 524, + 1093 + ], + "score": 0.73, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 492, + 557, + 540, + 557, + 540, + 587, + 492, + 587 + ], + "score": 0.41, + "latex": "1 9 @" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 271.0, + 1357.0, + 271.0, + 1357.0, + 329.0, + 347.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 328.0, + 1364.0, + 328.0, + 1364.0, + 380.0, + 334.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1296.0, + 536.0, + 1296.0, + 536.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 661.0, + 919.0, + 661.0, + 919.0, + 705.0, + 782.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1073.0, + 2028.0, + 1073.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 488.0, + 1284.0, + 488.0, + 1284.0, + 524.0, + 1150.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 485.0, + 595.0, + 485.0, + 595.0, + 530.0, + 437.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 731.0, + 1307.0, + 731.0, + 1307.0, + 766.0, + 396.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 763.0, + 1309.0, + 763.0, + 1309.0, + 796.0, + 395.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 791.0, + 1305.0, + 791.0, + 1305.0, + 826.0, + 393.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 823.0, + 1305.0, + 823.0, + 1305.0, + 858.0, + 393.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 853.0, + 1305.0, + 853.0, + 1305.0, + 889.0, + 393.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 883.0, + 1304.0, + 883.0, + 1304.0, + 918.0, + 393.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 914.0, + 1306.0, + 914.0, + 1306.0, + 950.0, + 394.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 944.0, + 1305.0, + 944.0, + 1305.0, + 977.0, + 393.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 973.0, + 1308.0, + 973.0, + 1308.0, + 1009.0, + 392.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1003.0, + 1308.0, + 1003.0, + 1308.0, + 1040.0, + 393.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1033.0, + 1306.0, + 1033.0, + 1306.0, + 1071.0, + 392.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1064.0, + 523.0, + 1064.0, + 523.0, + 1099.0, + 392.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1064.0, + 1113.0, + 1064.0, + 1113.0, + 1099.0, + 540.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1064.0, + 1306.0, + 1064.0, + 1306.0, + 1099.0, + 1203.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1093.0, + 1306.0, + 1093.0, + 1306.0, + 1131.0, + 391.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1127.0, + 1306.0, + 1127.0, + 1306.0, + 1160.0, + 394.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1156.0, + 1304.0, + 1156.0, + 1304.0, + 1188.0, + 394.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1187.0, + 1305.0, + 1187.0, + 1305.0, + 1220.0, + 395.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1218.0, + 1103.0, + 1218.0, + 1103.0, + 1251.0, + 394.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 1406.0, + 1364.0, + 1406.0, + 1406.0, + 292.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1408.0, + 1398.0, + 1408.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 883.0, + 1428.0, + 883.0, + 1464.0, + 293.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1428.0, + 1210.0, + 1428.0, + 1210.0, + 1464.0, + 1018.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1428.0, + 1407.0, + 1428.0, + 1407.0, + 1464.0, + 1297.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1458.0, + 518.0, + 1458.0, + 518.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1458.0, + 913.0, + 1458.0, + 913.0, + 1501.0, + 829.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1458.0, + 1201.0, + 1458.0, + 1201.0, + 1501.0, + 988.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1458.0, + 1407.0, + 1458.0, + 1407.0, + 1501.0, + 1334.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1489.0, + 647.0, + 1489.0, + 647.0, + 1536.0, + 291.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1489.0, + 853.0, + 1489.0, + 853.0, + 1536.0, + 682.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1489.0, + 1408.0, + 1489.0, + 1408.0, + 1536.0, + 885.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1525.0, + 1409.0, + 1525.0, + 1409.0, + 1566.0, + 292.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1557.0, + 1409.0, + 1557.0, + 1409.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1678.0, + 877.0, + 1678.0, + 877.0, + 1713.0, + 295.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1924.0, + 371.0, + 1924.0, + 371.0, + 1961.0, + 294.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1924.0, + 442.0, + 1924.0, + 442.0, + 1961.0, + 393.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1924.0, + 838.0, + 1924.0, + 838.0, + 1961.0, + 462.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1924.0, + 906.0, + 1924.0, + 906.0, + 1961.0, + 858.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1924.0, + 1404.0, + 1924.0, + 1404.0, + 1961.0, + 929.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1958.0, + 1403.0, + 1958.0, + 1403.0, + 1989.0, + 297.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1760.0, + 296.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1753.0, + 1259.0, + 1753.0, + 1259.0, + 1791.0, + 293.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 487.0, + 957.0, + 487.0, + 957.0, + 525.0, + 805.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 524.0, + 923.0, + 524.0, + 923.0, + 559.0, + 839.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 554.0, + 1003.0, + 554.0, + 1003.0, + 590.0, + 751.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 488.0, + 1285.0, + 488.0, + 1285.0, + 521.0, + 1151.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 524.0, + 1261.0, + 524.0, + 1261.0, + 558.0, + 1176.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 556.0, + 1363.0, + 556.0, + 1363.0, + 588.0, + 1070.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 489.0, + 595.0, + 489.0, + 595.0, + 525.0, + 437.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 523.0, + 698.0, + 523.0, + 698.0, + 562.0, + 334.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 553.0, + 491.0, + 553.0, + 491.0, + 596.0, + 368.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 553.0, + 666.0, + 553.0, + 666.0, + 596.0, + 541.0, + 596.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1216, + 1404, + 1216, + 1404, + 1481, + 297, + 1481 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1038, + 1404, + 1038, + 1404, + 1205, + 297, + 1205 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 278, + 1405, + 278, + 1405, + 433, + 297, + 433 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1654, + 1405, + 1654, + 1405, + 1808, + 298, + 1808 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 602, + 1404, + 602, + 1404, + 727, + 297, + 727 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 343, + 1884, + 1404, + 1884, + 1404, + 2007, + 343, + 2007 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 817, + 1404, + 817, + 1404, + 881, + 299, + 881 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 893, + 1399, + 893, + 1399, + 957, + 298, + 957 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1493, + 1400, + 1493, + 1400, + 1557, + 295, + 1557 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 292, + 201, + 1400, + 201, + 1400, + 265, + 292, + 265 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 528, + 1402, + 528, + 1402, + 591, + 294, + 591 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 401, + 742, + 1294, + 742, + 1294, + 798, + 401, + 798 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 437, + 450, + 1259, + 450, + 1259, + 507, + 437, + 507 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 562, + 974, + 1135, + 974, + 1135, + 1021, + 562, + 1021 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 299, + 1820, + 1226, + 1820, + 1226, + 1853, + 299, + 1853 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 1596, + 512, + 1596, + 512, + 1629, + 299, + 1629 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 983, + 1400, + 983, + 1400, + 1011, + 1366, + 1011 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 455, + 1400, + 455, + 1400, + 485, + 1365, + 485 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1366, + 749, + 1400, + 749, + 1400, + 780, + 1366, + 780 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.695 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.267 + }, + { + "category_id": 13, + "poly": [ + 851, + 1039, + 1037, + 1039, + 1037, + 1077, + 851, + 1077 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\phi } [ g ( x ^ { k } , y ^ { k } ; \\phi ) ]" + }, + { + "category_id": 13, + "poly": [ + 760, + 1172, + 826, + 1172, + 826, + 1205, + 760, + 1205 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1115, + 369, + 1397, + 369, + 1397, + 403, + 1115, + 403 + ], + "score": 0.92, + "latex": "g ( x , y ; \\phi ) : = - \\bar { f } ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 536, + 1078, + 610, + 1078, + 610, + 1113, + 536, + 1113 + ], + "score": 0.92, + "latex": "F ( x ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 664, + 665, + 731, + 665, + 731, + 698, + 664, + 698 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 198, + 1298, + 198, + 1298, + 235, + 1208, + 235 + ], + "score": 0.92, + "latex": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1157, + 1142, + 1218, + 1142, + 1218, + 1175, + 1157, + 1175 + ], + "score": 0.92, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1076, + 602, + 1306, + 602, + 1306, + 636, + 1076, + 636 + ], + "score": 0.92, + "latex": "f ( x , y ; \\xi ) : = f ( y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 977, + 233, + 1061, + 233, + 1061, + 262, + 977, + 262 + ], + "score": 0.92, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 402, + 741, + 1297, + 741, + 1297, + 800, + 402, + 800 + ], + "score": 0.91, + "latex": "\\mathrm { I f } \\ g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 } \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } \\ F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\big ( \\mathbb { E } _ { \\phi } [ h ( x ; \\phi ) ] ; \\xi \\big ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 328, + 234, + 394, + 234, + 394, + 267, + 328, + 267 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1040, + 1127, + 1040, + 1127, + 1081, + 1093, + 1081 + ], + "score": 0.91, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1217, + 689, + 1217, + 689, + 1258, + 655, + 1258 + ], + "score": 0.91, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1354, + 1350, + 1354, + 1350, + 1389, + 1121, + 1389 + ], + "score": 0.91, + "latex": "\\scriptstyle \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0" + }, + { + "category_id": 14, + "poly": [ + 564, + 974, + 1135, + 974, + 1135, + 1020, + 564, + 1020 + ], + "score": 0.91, + "latex": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } h _ { g } ^ { k } ~ \\mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 656, + 1317, + 689, + 1317, + 689, + 1355, + 656, + 1355 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 437, + 450, + 1262, + 450, + 1262, + 509, + 437, + 509 + ], + "score": 0.9, + "latex": "\\operatorname { I f } g ( x , y ; \\phi ) : = - f ( x , y ; \\xi ) \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } F ( x ) : = \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 374, + 1040, + 408, + 1040, + 408, + 1080, + 374, + 1080 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 675, + 1081, + 707, + 1081, + 707, + 1112, + 675, + 1112 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 420, + 1255, + 452, + 1255, + 452, + 1289, + 420, + 1289 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1353, + 1060, + 1353, + 1060, + 1388, + 1029, + 1388 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1386, + 967, + 1386, + 967, + 1421, + 936, + 1421 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1317, + 1244, + 1317, + 1244, + 1351, + 1213, + 1351 + ], + "score": 0.88, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1386, + 902, + 1386, + 902, + 1425, + 869, + 1425 + ], + "score": 0.88, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 914, + 635, + 1237, + 635, + 1237, + 668, + 914, + 668 + ], + "score": 0.88, + "latex": "g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1353, + 650, + 1353, + 650, + 1383, + 618, + 1383 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 501, + 1352, + 533, + 1352, + 533, + 1383, + 501, + 1383 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 794, + 1255, + 826, + 1255, + 826, + 1286, + 794, + 1286 + ], + "score": 0.87, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1084, + 791, + 1084, + 791, + 1111, + 756, + 1111 + ], + "score": 0.86, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 748, + 605, + 768, + 605, + 768, + 636, + 748, + 636 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1036, + 371, + 1055, + 371, + 1055, + 402, + 1036, + 402 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1293, + 1154, + 1293, + 1154, + 1319, + 1136, + 1319 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 367, + 929, + 385, + 929, + 385, + 957, + 367, + 957 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 537, + 375, + 555, + 375, + 555, + 402, + 537, + 402 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 394, + 666, + 414, + 666, + 414, + 692, + 394, + 692 + ], + "score": 0.81, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 533, + 640, + 552, + 640, + 552, + 666, + 533, + 666 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 447, + 669, + 466, + 669, + 466, + 692, + 447, + 692 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1116, + 1086, + 1116, + 1086, + 1138, + 1067, + 1138 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 837, + 639, + 854, + 639, + 854, + 667, + 837, + 667 + ], + "score": 0.77, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 999, + 609, + 1017, + 609, + 1017, + 635, + 999, + 635 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 298, + 931, + 316, + 931, + 316, + 952, + 298, + 952 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 514.0, + 1594.0, + 514.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 654.0, + 1217.0, + 654.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1217.0, + 1405.0, + 1217.0, + 1405.0, + 1256.0, + 690.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1255.0, + 419.0, + 1255.0, + 419.0, + 1294.0, + 296.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1255.0, + 793.0, + 1255.0, + 793.0, + 1294.0, + 453.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1255.0, + 1406.0, + 1255.0, + 1406.0, + 1294.0, + 827.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1285.0, + 1135.0, + 1285.0, + 1135.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1285.0, + 1404.0, + 1285.0, + 1404.0, + 1326.0, + 1155.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1313.0, + 655.0, + 1313.0, + 655.0, + 1361.0, + 291.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1313.0, + 1212.0, + 1313.0, + 1212.0, + 1361.0, + 690.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1313.0, + 1407.0, + 1313.0, + 1407.0, + 1361.0, + 1245.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 500.0, + 1348.0, + 500.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1348.0, + 617.0, + 1348.0, + 617.0, + 1394.0, + 534.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1348.0, + 1028.0, + 1348.0, + 1028.0, + 1394.0, + 651.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1348.0, + 1120.0, + 1348.0, + 1120.0, + 1394.0, + 1061.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1394.0, + 1351.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1384.0, + 868.0, + 1384.0, + 868.0, + 1427.0, + 292.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1384.0, + 935.0, + 1384.0, + 935.0, + 1427.0, + 903.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1427.0, + 968.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1417.0, + 1409.0, + 1417.0, + 1409.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1450.0, + 1375.0, + 1450.0, + 1375.0, + 1482.0, + 296.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 373.0, + 1039.0, + 373.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1039.0, + 850.0, + 1039.0, + 850.0, + 1080.0, + 409.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1039.0, + 1092.0, + 1039.0, + 1092.0, + 1080.0, + 1038.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1080.0, + 1128.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 535.0, + 1079.0, + 535.0, + 1116.0, + 294.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1079.0, + 674.0, + 1079.0, + 674.0, + 1116.0, + 611.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1079.0, + 755.0, + 1079.0, + 755.0, + 1116.0, + 708.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1079.0, + 1405.0, + 1079.0, + 1405.0, + 1116.0, + 792.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1111.0, + 1066.0, + 1111.0, + 1066.0, + 1144.0, + 295.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1144.0, + 1087.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1156.0, + 1141.0, + 1156.0, + 1179.0, + 292.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1179.0, + 1219.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 759.0, + 1172.0, + 759.0, + 1209.0, + 294.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1172.0, + 838.0, + 1172.0, + 838.0, + 1209.0, + 827.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 1406.0, + 278.0, + 1406.0, + 316.0, + 295.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 309.0, + 1405.0, + 309.0, + 1405.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 338.0, + 1406.0, + 338.0, + 1406.0, + 374.0, + 294.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 536.0, + 369.0, + 536.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 369.0, + 1035.0, + 369.0, + 1035.0, + 406.0, + 556.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 369.0, + 1114.0, + 369.0, + 1114.0, + 406.0, + 1056.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 369.0, + 1408.0, + 369.0, + 1408.0, + 406.0, + 1398.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1157.0, + 398.0, + 1157.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1691.0, + 296.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1408.0, + 1715.0, + 1408.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1744.0, + 1405.0, + 1744.0, + 1405.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 987.0, + 1777.0, + 987.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 747.0, + 600.0, + 747.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 600.0, + 998.0, + 600.0, + 998.0, + 640.0, + 769.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 600.0, + 1075.0, + 600.0, + 1075.0, + 640.0, + 1018.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 640.0, + 1307.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 633.0, + 532.0, + 633.0, + 532.0, + 669.0, + 292.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 633.0, + 836.0, + 633.0, + 836.0, + 669.0, + 553.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 633.0, + 913.0, + 633.0, + 913.0, + 669.0, + 855.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 669.0, + 1238.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 664.0, + 393.0, + 664.0, + 393.0, + 697.0, + 295.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 664.0, + 446.0, + 664.0, + 446.0, + 697.0, + 415.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 664.0, + 663.0, + 664.0, + 663.0, + 697.0, + 467.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 697.0, + 732.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 694.0, + 1071.0, + 694.0, + 1071.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1920.0, + 340.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1952.0, + 393.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1983.0, + 393.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1977.0, + 926.0, + 1977.0, + 926.0, + 2009.0, + 396.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 816.0, + 1403.0, + 816.0, + 1403.0, + 852.0, + 297.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1356.0, + 849.0, + 1356.0, + 885.0, + 295.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 1403.0, + 890.0, + 1403.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 297.0, + 925.0, + 297.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 925.0, + 366.0, + 925.0, + 366.0, + 957.0, + 317.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 925.0, + 776.0, + 925.0, + 776.0, + 957.0, + 386.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1525.0, + 1347.0, + 1525.0, + 1347.0, + 1561.0, + 296.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 200.0, + 1207.0, + 200.0, + 1207.0, + 237.0, + 294.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 200.0, + 1405.0, + 200.0, + 1405.0, + 237.0, + 1299.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 232.0, + 327.0, + 232.0, + 327.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 232.0, + 976.0, + 232.0, + 976.0, + 266.0, + 395.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 232.0, + 1072.0, + 232.0, + 1072.0, + 266.0, + 1062.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 1405.0, + 528.0, + 1405.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 558.0, + 1336.0, + 558.0, + 1336.0, + 594.0, + 296.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 1232.0, + 1819.0, + 1232.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1317, + 1405, + 1317, + 1405, + 1749, + 297, + 1749 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 296, + 203, + 1427, + 203, + 1427, + 375, + 296, + 375 + ], + "score": 0.978, + "html": "
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1090, + 1405, + 1090, + 1405, + 1304, + 298, + 1304 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1763, + 1404, + 1763, + 1404, + 2008, + 298, + 2008 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 299, + 986, + 602, + 986, + 602, + 1019, + 299, + 1019 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 298, + 1044, + 1348, + 1044, + 1348, + 1077, + 298, + 1077 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 338, + 559, + 1405, + 559, + 1405, + 948, + 338, + 948 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 297, + 391, + 1408, + 391, + 1408, + 521, + 297, + 521 + ], + "score": 0.466 + }, + { + "category_id": 6, + "poly": [ + 297, + 391, + 1408, + 391, + 1408, + 521, + 297, + 521 + ], + "score": 0.465 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.354 + }, + { + "category_id": 13, + "poly": [ + 782, + 913, + 890, + 913, + 890, + 949, + 782, + 949 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 412, + 1686, + 499, + 1686, + 499, + 1720, + 412, + 1720 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 730, + 1407, + 817, + 1407, + 817, + 1442, + 730, + 1442 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 3 } )" + }, + { + "category_id": 13, + "poly": [ + 806, + 1500, + 915, + 1500, + 915, + 1536, + 806, + 1536 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 897, + 880, + 985, + 880, + 985, + 915, + 897, + 915 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 845, + 682, + 931, + 682, + 931, + 718, + 845, + 718 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 559, + 1562, + 646, + 1562, + 646, + 1597, + 559, + 1597 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 724, + 1975, + 811, + 1975, + 811, + 2009, + 724, + 2009 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 868, + 1407, + 954, + 1407, + 954, + 1442, + 868, + 1442 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1944, + 385, + 1944, + 385, + 1979, + 298, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1294, + 681, + 1403, + 681, + 1403, + 718, + 1294, + 718 + ], + "score": 0.92, + "latex": "\\mathcal { O } \\dot { ( \\epsilon ^ { - 5 / 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1654, + 1052, + 1654, + 1052, + 1691, + 943, + 1691 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 3 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1945, + 1353, + 1945, + 1353, + 1979, + 1266, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 972, + 240, + 1050, + 240, + 1050, + 269, + 972, + 269 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 442, + 455, + 503, + 455, + 503, + 492, + 442, + 492 + ], + "score": 0.92, + "latex": "\\widetilde { \\mathcal { O } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 505, + 243, + 559, + 243, + 559, + 270, + 505, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 850, + 243, + 904, + 243, + 904, + 270, + 850, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 680, + 243, + 734, + 243, + 734, + 270, + 680, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 243, + 1178, + 243, + 1178, + 270, + 1124, + 270 + ], + "score": 0.9, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 424, + 1394, + 424, + 1394, + 455, + 1334, + 455 + ], + "score": 0.9, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1976, + 1189, + 1976, + 1189, + 2009, + 1129, + 2009 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 821, + 336, + 933, + 336, + 933, + 370, + 821, + 370 + ], + "score": 0.89, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 243, + 1351, + 243, + 1351, + 270, + 1296, + 270 + ], + "score": 0.89, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 271, + 687, + 271, + 687, + 299, + 609, + 299 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 961, + 460, + 992, + 460, + 992, + 486, + 961, + 486 + ], + "score": 0.85, + "latex": "\\kappa ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 720, + 456, + 804, + 456, + 804, + 490, + 720, + 490 + ], + "score": 0.84, + "latex": "\\log \\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 432, + 311, + 445, + 311, + 445, + 333, + 432, + 333 + ], + "score": 0.82, + "latex": "\\xi" + }, + { + "category_id": 13, + "poly": [ + 1267, + 337, + 1380, + 337, + 1380, + 370, + 1267, + 370 + ], + "score": 0.81, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 821, + 302, + 933, + 302, + 933, + 334, + 821, + 334 + ], + "score": 0.81, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1097, + 306, + 1205, + 306, + 1205, + 340, + 1097, + 340 + ], + "score": 0.8, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1268, + 301, + 1380, + 301, + 1380, + 335, + 1268, + 335 + ], + "score": 0.79, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 346, + 1628, + 364, + 1628, + 364, + 1656, + 346, + 1656 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 919, + 1569, + 938, + 1569, + 938, + 1595, + 919, + 1595 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 479, + 333, + 586, + 333, + 586, + 367, + 479, + 367 + ], + "score": 0.77, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 329, + 281, + 343, + 281, + 343, + 298, + 329, + 298 + ], + "score": 0.77, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 1097, + 314, + 1205, + 314, + 1205, + 365, + 1097, + 365 + ], + "score": 0.76, + "latex": "\\begin{array} { l } { { \\mathcal { O } ( \\kappa ^ { r } \\epsilon ^ { \\mathrm { ~ \\tiny ~ - ~ } } ) } } \\\\ { { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { \\mathrm { - 2 } } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 574, + 495, + 593, + 495, + 593, + 516, + 574, + 516 + ], + "score": 0.76, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 958, + 334, + 1065, + 334, + 1065, + 367, + 958, + 367 + ], + "score": 0.75, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1383, + 470, + 1401, + 470, + 1401, + 486, + 1383, + 486 + ], + "score": 0.74, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 1203, + 857, + 1217, + 857, + 1217, + 880, + 1203, + 880 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 431, + 337, + 447, + 337, + 447, + 361, + 431, + 361 + ], + "score": 0.71, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 640, + 304, + 768, + 304, + 768, + 369, + 640, + 369 + ], + "score": 0.66, + "latex": "\\begin{array} { c } { { \\mathcal { O } ( \\kappa ^ { 6 } \\epsilon ^ { - 2 } ) } } \\\\ { { \\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 3 } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1104, + 429, + 1118, + 429, + 1118, + 449, + 1104, + 449 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1385, + 1214, + 1385, + 1214, + 1406, + 1199, + 1406 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1200, + 658, + 1215, + 658, + 1215, + 679, + 1200, + 679 + ], + "score": 0.59, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 958, + 305, + 1065, + 305, + 1065, + 332, + 958, + 332 + ], + "score": 0.59, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 479, + 305, + 586, + 305, + 586, + 332, + 479, + 332 + ], + "score": 0.55, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1599, + 1396, + 1599, + 1396, + 1621, + 1377, + 1621 + ], + "score": 0.55, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 653, + 335, + 760, + 335, + 760, + 367, + 653, + 367 + ], + "score": 0.41, + "latex": "\\bar { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1258, + 300, + 1386, + 300, + 1386, + 372, + 1258, + 372 + ], + "score": 0.41, + "latex": "\\begin{array} { c } { { \\overline { { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } ) } } } } \\\\ { { \\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 811, + 301, + 939, + 301, + 939, + 372, + 811, + 372 + ], + "score": 0.4, + "latex": "\\left| \\begin{array} { l } { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } ) } \\\\ { \\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } ) } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 654, + 305, + 760, + 305, + 760, + 332, + 654, + 332 + ], + "score": 0.29, + "latex": "\\mathcal { O } ( \\kappa ^ { 6 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 605.0, + 984.0, + 605.0, + 1023.0, + 295.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 860.0, + 2058.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 389.0, + 1406.0, + 389.0, + 1406.0, + 426.0, + 292.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 1103.0, + 419.0, + 1103.0, + 458.0, + 292.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 419.0, + 1333.0, + 419.0, + 1333.0, + 458.0, + 1119.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 419.0, + 1408.0, + 419.0, + 1408.0, + 458.0, + 1395.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 454.0, + 441.0, + 454.0, + 441.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 454.0, + 719.0, + 454.0, + 719.0, + 496.0, + 504.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 454.0, + 960.0, + 454.0, + 960.0, + 496.0, + 805.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 454.0, + 1382.0, + 454.0, + 1382.0, + 496.0, + 993.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 454.0, + 1408.0, + 454.0, + 1408.0, + 496.0, + 1402.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 573.0, + 487.0, + 573.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 487.0, + 967.0, + 487.0, + 967.0, + 524.0, + 594.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1408.0, + 1317.0, + 1408.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1376.0, + 1198.0, + 1376.0, + 1198.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1376.0, + 1408.0, + 1376.0, + 1408.0, + 1417.0, + 1215.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 729.0, + 1406.0, + 729.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1406.0, + 867.0, + 1406.0, + 867.0, + 1446.0, + 818.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1406.0, + 1406.0, + 1406.0, + 1406.0, + 1446.0, + 955.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1403.0, + 1438.0, + 1403.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1497.0, + 805.0, + 1497.0, + 805.0, + 1541.0, + 290.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1497.0, + 1407.0, + 1497.0, + 1407.0, + 1541.0, + 916.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 558.0, + 1561.0, + 558.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1561.0, + 918.0, + 1561.0, + 918.0, + 1601.0, + 647.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1601.0, + 939.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1593.0, + 1376.0, + 1593.0, + 1376.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1593.0, + 1408.0, + 1593.0, + 1408.0, + 1629.0, + 1397.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 345.0, + 1624.0, + 345.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1658.0, + 365.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1653.0, + 942.0, + 1653.0, + 942.0, + 1694.0, + 291.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1653.0, + 1408.0, + 1653.0, + 1408.0, + 1694.0, + 1053.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1685.0, + 411.0, + 1685.0, + 411.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1685.0, + 1406.0, + 1685.0, + 1406.0, + 1725.0, + 500.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1155.0, + 1717.0, + 1155.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1090.0, + 1408.0, + 1090.0, + 1408.0, + 1125.0, + 295.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1121.0, + 1405.0, + 1121.0, + 1405.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1186.0, + 295.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1181.0, + 1407.0, + 1181.0, + 1407.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1247.0, + 292.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1244.0, + 1403.0, + 1244.0, + 1403.0, + 1274.0, + 296.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 943.0, + 1273.0, + 943.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1408.0, + 1762.0, + 1408.0, + 1799.0, + 293.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, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1853.0, + 1408.0, + 1853.0, + 1408.0, + 1892.0, + 292.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1923.0, + 292.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 297.0, + 1941.0, + 297.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1941.0, + 1265.0, + 1941.0, + 1265.0, + 1983.0, + 386.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1983.0, + 1354.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 723.0, + 1974.0, + 723.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1974.0, + 1128.0, + 1974.0, + 1128.0, + 2011.0, + 812.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2011.0, + 1190.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 1350.0, + 1040.0, + 1350.0, + 1083.0, + 295.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 560.0, + 1405.0, + 560.0, + 1405.0, + 596.0, + 340.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 627.0, + 394.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 623.0, + 1405.0, + 623.0, + 1405.0, + 656.0, + 395.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 651.0, + 1199.0, + 651.0, + 1199.0, + 687.0, + 394.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 687.0, + 1216.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 682.0, + 844.0, + 682.0, + 844.0, + 719.0, + 392.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 682.0, + 1293.0, + 682.0, + 1293.0, + 719.0, + 932.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 682.0, + 1407.0, + 682.0, + 1407.0, + 719.0, + 1404.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 717.0, + 890.0, + 717.0, + 890.0, + 750.0, + 395.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 796.0, + 343.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 790.0, + 1410.0, + 790.0, + 1410.0, + 826.0, + 394.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 858.0, + 393.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 853.0, + 1202.0, + 853.0, + 1202.0, + 886.0, + 395.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 853.0, + 1406.0, + 853.0, + 1406.0, + 886.0, + 1218.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 880.0, + 896.0, + 880.0, + 896.0, + 917.0, + 395.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 880.0, + 1406.0, + 880.0, + 1406.0, + 917.0, + 986.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 911.0, + 781.0, + 911.0, + 781.0, + 953.0, + 393.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 911.0, + 1081.0, + 911.0, + 1081.0, + 953.0, + 891.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 389.0, + 1406.0, + 389.0, + 1406.0, + 426.0, + 292.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 1103.0, + 419.0, + 1103.0, + 458.0, + 292.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 419.0, + 1333.0, + 419.0, + 1333.0, + 458.0, + 1119.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 419.0, + 1408.0, + 419.0, + 1408.0, + 458.0, + 1395.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 454.0, + 441.0, + 454.0, + 441.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 454.0, + 719.0, + 454.0, + 719.0, + 496.0, + 504.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 454.0, + 960.0, + 454.0, + 960.0, + 496.0, + 805.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 454.0, + 1382.0, + 454.0, + 1382.0, + 496.0, + 993.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 454.0, + 1408.0, + 454.0, + 1408.0, + 496.0, + 1402.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 573.0, + 487.0, + 573.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 487.0, + 967.0, + 487.0, + 967.0, + 524.0, + 594.0, + 524.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 368, + 1405, + 368, + 1405, + 645, + 297, + 645 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 356, + 298, + 356 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 656, + 1404, + 656, + 1404, + 781, + 297, + 781 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 296, + 1769, + 876, + 1769, + 876, + 1901, + 296, + 1901 + ], + "score": 0.973, + "html": "
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1380, + 1407, + 1380, + 1407, + 1512, + 297, + 1512 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 890, + 1770, + 1402, + 1770, + 1402, + 1901, + 890, + 1901 + ], + "score": 0.972, + "html": "
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
" + }, + { + "category_id": 8, + "poly": [ + 523, + 1159, + 1167, + 1159, + 1167, + 1287, + 523, + 1287 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 888, + 1403, + 888, + 1403, + 952, + 296, + 952 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 291, + 1304, + 1407, + 1304, + 1407, + 1369, + 291, + 1369 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1033, + 1400, + 1033, + 1400, + 1100, + 297, + 1100 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 296, + 820, + 1234, + 820, + 1234, + 860, + 296, + 860 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 298, + 977, + 524, + 977, + 524, + 1010, + 298, + 1010 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 290, + 1111, + 1377, + 1111, + 1377, + 1149, + 290, + 1149 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 301, + 1515, + 1356, + 1515, + 1356, + 1550, + 301, + 1550 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.785 + }, + { + "category_id": 6, + "poly": [ + 296, + 1918, + 852, + 1918, + 852, + 2013, + 296, + 2013 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 298, + 1568, + 1400, + 1568, + 1400, + 1633, + 298, + 1633 + ], + "score": 0.548 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1405, + 1638, + 1405, + 1736, + 298, + 1736 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 888, + 1918, + 1443, + 1918, + 1443, + 2011, + 888, + 2011 + ], + "score": 0.464 + }, + { + "category_id": 1, + "poly": [ + 296, + 1918, + 852, + 1918, + 852, + 2013, + 296, + 2013 + ], + "score": 0.215 + }, + { + "category_id": 7, + "poly": [ + 888, + 1918, + 1443, + 1918, + 1443, + 2011, + 888, + 2011 + ], + "score": 0.156 + }, + { + "category_id": 13, + "poly": [ + 1212, + 1110, + 1344, + 1110, + 1344, + 1150, + 1212, + 1150 + ], + "score": 0.94, + "latex": "\\nabla _ { x y } ^ { 2 } g \\left( x , y \\right)" + }, + { + "category_id": 13, + "poly": [ + 466, + 1111, + 598, + 1111, + 598, + 1150, + 466, + 1150 + ], + "score": 0.94, + "latex": "\\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big )" + }, + { + "category_id": 14, + "poly": [ + 523, + 1156, + 1175, + 1156, + 1175, + 1286, + 523, + 1286 + ], + "score": 0.94, + "latex": "\\nabla _ { x y } ^ { 2 } g ( x , y ) : = \\left[ \\begin{array} { l l l } { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\\\ & { \\cdot \\cdot \\cdot } \\\\ { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\end{array} \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1284, + 459, + 1371, + 459, + 1371, + 494, + 1284, + 494 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1600, + 715, + 1600, + 715, + 1634, + 648, + 1634 + ], + "score": 0.93, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 717, + 551, + 804, + 551, + 804, + 585, + 717, + 585 + ], + "score": 0.92, + "latex": "\\bar { \\mathcal { O } } \\bar { ( } \\epsilon ^ { - 2 } \\bar { ) }" + }, + { + "category_id": 13, + "poly": [ + 705, + 1064, + 986, + 1064, + 986, + 1099, + 705, + 1099 + ], + "score": 0.92, + "latex": "g ( x , y ) : = \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ]" + }, + { + "category_id": 13, + "poly": [ + 298, + 1667, + 443, + 1667, + 443, + 1702, + 298, + 1702 + ], + "score": 0.92, + "latex": "\\nabla ^ { 2 } g ( x , \\mathbf { \\bar { y } } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 461, + 1865, + 567, + 1865, + 567, + 1896, + 461, + 1896 + ], + "score": 0.92, + "latex": "\\underline { { \\boldsymbol { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 600, + 1865, + 706, + 1865, + 706, + 1896, + 600, + 1896 + ], + "score": 0.92, + "latex": "\\frac { \\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } { \\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1274, + 1983, + 1334, + 1983, + 1334, + 2012, + 1274, + 2012 + ], + "score": 0.92, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1064, + 1317, + 1064, + 1317, + 1099, + 1038, + 1099 + ], + "score": 0.91, + "latex": "f ( x , y ) : = \\mathbb { E } _ { \\xi } [ f ( x , y ; \\xi ) ]" + }, + { + "category_id": 13, + "poly": [ + 757, + 1982, + 817, + 1982, + 817, + 2013, + 757, + 2013 + ], + "score": 0.91, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1865, + 1247, + 1865, + 1247, + 1894, + 1167, + 1894 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 4 } )" + }, + { + "category_id": 13, + "poly": [ + 975, + 1515, + 1057, + 1515, + 1057, + 1549, + 975, + 1549 + ], + "score": 0.91, + "latex": "g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1864, + 1134, + 1864, + 1134, + 1894, + 1054, + 1894 + ], + "score": 0.91, + "latex": "\\overline { { \\mathcal { O } ( \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1569, + 1396, + 1569, + 1396, + 1602, + 1223, + 1602 + ], + "score": 0.9, + "latex": "f ( x , y ) , g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1602, + 1398, + 1602, + 1398, + 1634, + 1250, + 1634 + ], + "score": 0.9, + "latex": "\\kappa : = \\ell _ { g , 1 } / \\mu _ { g }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1381, + 1128, + 1381, + 1128, + 1414, + 947, + 1414 + ], + "score": 0.9, + "latex": "f , \\nabla f , \\nabla g , \\nabla ^ { 2 } g" + }, + { + "category_id": 13, + "poly": [ + 383, + 1035, + 432, + 1035, + 432, + 1068, + 383, + 1068 + ], + "score": 0.9, + "latex": "\\| \\cdot \\|" + }, + { + "category_id": 13, + "poly": [ + 614, + 1806, + 692, + 1806, + 692, + 1835, + 614, + 1835 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1807, + 1234, + 1807, + 1234, + 1834, + 1180, + 1834 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1415, + 1403, + 1415, + 1403, + 1446, + 1254, + 1446 + ], + "score": 0.89, + "latex": "\\parallel f ( x _ { 1 } , y _ { 1 } ) -" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1864, + 1371, + 1864, + 1371, + 1894, + 1292, + 1894 + ], + "score": 0.89, + "latex": "\\overline { { \\mathcal { O } ( \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1807, + 1359, + 1807, + 1359, + 1834, + 1304, + 1834 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1637, + 1241, + 1637, + 1241, + 1672, + 1110, + 1672 + ], + "score": 0.88, + "latex": "\\nabla f ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 583, + 1036, + 610, + 1036, + 610, + 1065, + 583, + 1065 + ], + "score": 0.87, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1384, + 1399, + 1384, + 1399, + 1415, + 1352, + 1415 + ], + "score": 0.87, + "latex": "\\ell _ { f , 0 } ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1414, + 450, + 1414, + 450, + 1446, + 297, + 1446 + ], + "score": 0.87, + "latex": "\\ell _ { f , 1 } , \\ell _ { g , 1 } , \\ell _ { g , 2 }" + }, + { + "category_id": 13, + "poly": [ + 767, + 1668, + 872, + 1668, + 872, + 1702, + 767, + 1702 + ], + "score": 0.87, + "latex": "\\nabla f ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 487, + 1808, + 541, + 1808, + 541, + 1835, + 487, + 1835 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 636, + 1477, + 1172, + 1477, + 1172, + 1511, + 636, + 1511 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\| \\nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \\nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \\| \\le \\ell _ { g , 2 } \\| z _ { 1 } - z _ { 2 } \\| . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1807, + 1121, + 1807, + 1121, + 1834, + 1067, + 1834 + ], + "score": 0.86, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 746, + 1864, + 852, + 1864, + 852, + 1896, + 746, + 1896 + ], + "score": 0.86, + "latex": "\\frac { \\boldsymbol { \\mathcal { O } } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } { \\boldsymbol { \\mathcal { O } } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1519, + 1118, + 1519, + 1118, + 1550, + 1086, + 1550 + ], + "score": 0.85, + "latex": "\\mu _ { g }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1639, + 1398, + 1639, + 1398, + 1672, + 1264, + 1672 + ], + "score": 0.85, + "latex": "\\nabla g ( x , y ; \\phi )" + }, + { + "category_id": 13, + "poly": [ + 989, + 1415, + 1143, + 1415, + 1143, + 1446, + 989, + 1446 + ], + "score": 0.83, + "latex": "z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 877, + 1119, + 895, + 1119, + 895, + 1146, + 877, + 1146 + ], + "score": 0.82, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1119, + 1086, + 1119, + 1086, + 1146, + 1068, + 1146 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 887, + 1668, + 991, + 1668, + 991, + 1702, + 887, + 1702 + ], + "score": 0.82, + "latex": "\\nabla g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 700, + 1520, + 719, + 1520, + 719, + 1548, + 700, + 1548 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1667, + 1122, + 1667, + 1122, + 1702, + 1005, + 1702 + ], + "score": 0.78, + "latex": "\\nabla ^ { 2 } g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 823, + 1414, + 978, + 1414, + 978, + 1445, + 823, + 1445 + ], + "score": 0.69, + "latex": "z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 750, + 1520, + 768, + 1520, + 768, + 1548, + 750, + 1548 + ], + "score": 0.69, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 912, + 1839, + 928, + 1839, + 928, + 1862, + 912, + 1862 + ], + "score": 0.67, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 527, + 1987, + 541, + 1987, + 541, + 2007, + 527, + 2007 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 693, + 1697, + 741, + 1697, + 741, + 1736, + 693, + 1736 + ], + "score": 0.63, + "latex": "\\sigma _ { g , 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 590, + 1697, + 681, + 1697, + 681, + 1737, + 590, + 1737 + ], + "score": 0.62, + "latex": "\\sigma _ { f } ^ { 2 } , \\sigma _ { g , 1 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1985, + 1057, + 1985, + 1057, + 2006, + 1043, + 2006 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 319, + 1842, + 334, + 1842, + 334, + 1863, + 319, + 1863 + ], + "score": 0.61, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 298, + 1445, + 1178, + 1445, + 1178, + 1479, + 298, + 1479 + ], + "score": 0.6, + "latex": "\\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \\| ^ { - } \\le } & { \\ell _ { f , 0 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\le } & { \\ell _ { f , 1 } \\| z _ { 1 } - x _ { 2 } \\| , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 946, + 1521, + 965, + 1521, + 965, + 1543, + 946, + 1543 + ], + "score": 0.54, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1522, + 1349, + 1522, + 1349, + 1548, + 1332, + 1548 + ], + "score": 0.54, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 647, + 1445, + 1407, + 1445, + 1407, + 1477, + 647, + 1477 + ], + "score": 0.51, + "latex": "\\begin{array} { r c l } { \\displaystyle \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\leq } & { \\ell _ { f , 1 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla g ( x _ { 1 } , y _ { 1 } ) - } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1478, + 629, + 1478, + 629, + 1511, + 298, + 1511 + ], + "score": 0.43, + "latex": "\\nabla g ( x _ { 2 } , y _ { 2 } ) \\| \\leq \\ell _ { g , 1 } \\| z _ { 1 } - z _ { 2 } \\|" + }, + { + "category_id": 13, + "poly": [ + 793, + 1808, + 806, + 1808, + 806, + 1830, + 793, + 1830 + ], + "score": 0.35, + "latex": "/" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 818.0, + 1241.0, + 818.0, + 1241.0, + 864.0, + 288.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 973.0, + 526.0, + 973.0, + 526.0, + 1014.0, + 292.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 853.0, + 1918.0, + 853.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 849.0, + 1948.0, + 849.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 526.0, + 1978.0, + 526.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1978.0, + 756.0, + 1978.0, + 756.0, + 2015.0, + 542.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1978.0, + 827.0, + 1978.0, + 827.0, + 2015.0, + 818.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1915.0, + 1446.0, + 1915.0, + 1446.0, + 1952.0, + 886.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1945.0, + 1445.0, + 1945.0, + 1445.0, + 1985.0, + 888.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1978.0, + 1042.0, + 1978.0, + 1042.0, + 2016.0, + 887.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1978.0, + 1273.0, + 1978.0, + 1273.0, + 2016.0, + 1058.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1978.0, + 1347.0, + 1978.0, + 1347.0, + 2016.0, + 1335.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 368.0, + 1405.0, + 368.0, + 1405.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 427.0, + 1408.0, + 427.0, + 1408.0, + 470.0, + 291.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 1283.0, + 458.0, + 1283.0, + 496.0, + 292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 458.0, + 1407.0, + 458.0, + 1407.0, + 496.0, + 1372.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 1407.0, + 491.0, + 1407.0, + 527.0, + 295.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 520.0, + 1408.0, + 520.0, + 1408.0, + 560.0, + 294.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 547.0, + 716.0, + 547.0, + 716.0, + 590.0, + 291.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 547.0, + 1410.0, + 547.0, + 1410.0, + 590.0, + 805.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 611.0, + 1349.0, + 611.0, + 1349.0, + 648.0, + 292.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 205.0, + 1405.0, + 205.0, + 1405.0, + 238.0, + 294.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1408.0, + 230.0, + 1408.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1406.0, + 263.0, + 1406.0, + 300.0, + 294.0, + 300.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": [ + 293.0, + 323.0, + 1041.0, + 323.0, + 1041.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 690.0, + 296.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 1405.0, + 719.0, + 1405.0, + 754.0, + 292.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1151.0, + 749.0, + 1151.0, + 782.0, + 295.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1373.0, + 946.0, + 1373.0, + 946.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1373.0, + 1351.0, + 1373.0, + 1351.0, + 1421.0, + 1129.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1373.0, + 1409.0, + 1373.0, + 1409.0, + 1421.0, + 1400.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1412.0, + 822.0, + 1412.0, + 822.0, + 1450.0, + 451.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1412.0, + 988.0, + 1412.0, + 988.0, + 1450.0, + 979.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1412.0, + 1253.0, + 1412.0, + 1253.0, + 1450.0, + 1144.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 297.0, + 1473.0, + 297.0, + 1514.0, + 294.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1473.0, + 635.0, + 1473.0, + 635.0, + 1514.0, + 630.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1473.0, + 1183.0, + 1473.0, + 1183.0, + 1514.0, + 1173.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 608.0, + 919.0, + 608.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 1410.0, + 1302.0, + 1410.0, + 1342.0, + 293.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1331.0, + 392.0, + 1331.0, + 392.0, + 1374.0, + 290.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1031.0, + 382.0, + 1031.0, + 382.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1031.0, + 582.0, + 1031.0, + 582.0, + 1069.0, + 433.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1031.0, + 1404.0, + 1031.0, + 1404.0, + 1069.0, + 611.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1060.0, + 704.0, + 1060.0, + 704.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1060.0, + 1037.0, + 1060.0, + 1037.0, + 1102.0, + 987.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1060.0, + 1327.0, + 1060.0, + 1327.0, + 1102.0, + 1318.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1103.0, + 465.0, + 1103.0, + 465.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1103.0, + 876.0, + 1103.0, + 876.0, + 1154.0, + 599.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1103.0, + 1067.0, + 1103.0, + 1067.0, + 1154.0, + 896.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1103.0, + 1211.0, + 1103.0, + 1211.0, + 1154.0, + 1087.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1103.0, + 1381.0, + 1103.0, + 1381.0, + 1154.0, + 1345.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 699.0, + 1510.0, + 699.0, + 1556.0, + 294.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1510.0, + 749.0, + 1510.0, + 749.0, + 1556.0, + 720.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1510.0, + 945.0, + 1510.0, + 945.0, + 1556.0, + 769.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1510.0, + 974.0, + 1510.0, + 974.0, + 1556.0, + 966.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1510.0, + 1085.0, + 1510.0, + 1085.0, + 1556.0, + 1058.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1510.0, + 1331.0, + 1510.0, + 1331.0, + 1556.0, + 1119.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1510.0, + 1362.0, + 1510.0, + 1362.0, + 1556.0, + 1350.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1222.0, + 1567.0, + 1222.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1607.0, + 1397.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1589.0, + 647.0, + 1589.0, + 647.0, + 1643.0, + 289.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1589.0, + 1249.0, + 1589.0, + 1249.0, + 1643.0, + 716.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1589.0, + 1408.0, + 1589.0, + 1408.0, + 1643.0, + 1399.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1633.0, + 1109.0, + 1633.0, + 1109.0, + 1675.0, + 293.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1633.0, + 1263.0, + 1633.0, + 1263.0, + 1675.0, + 1242.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1633.0, + 1407.0, + 1633.0, + 1407.0, + 1675.0, + 1399.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1665.0, + 766.0, + 1665.0, + 766.0, + 1706.0, + 444.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1665.0, + 886.0, + 1665.0, + 886.0, + 1706.0, + 873.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1665.0, + 1004.0, + 1665.0, + 1004.0, + 1706.0, + 992.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1665.0, + 1407.0, + 1665.0, + 1407.0, + 1706.0, + 1123.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1694.0, + 589.0, + 1694.0, + 589.0, + 1745.0, + 291.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1694.0, + 692.0, + 1694.0, + 692.0, + 1745.0, + 682.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1694.0, + 898.0, + 1694.0, + 898.0, + 1745.0, + 742.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1915.0, + 1446.0, + 1915.0, + 1446.0, + 1952.0, + 886.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1945.0, + 1445.0, + 1945.0, + 1445.0, + 1985.0, + 888.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1978.0, + 1042.0, + 1978.0, + 1042.0, + 2016.0, + 887.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1978.0, + 1273.0, + 1978.0, + 1273.0, + 2016.0, + 1058.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1978.0, + 1347.0, + 1978.0, + 1347.0, + 2016.0, + 1335.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 853.0, + 1918.0, + 853.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 849.0, + 1948.0, + 849.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 526.0, + 1978.0, + 526.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1978.0, + 756.0, + 1978.0, + 756.0, + 2015.0, + 542.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1978.0, + 827.0, + 1978.0, + 827.0, + 2015.0, + 818.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1116, + 1405, + 1116, + 1405, + 1221, + 297, + 1221 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 684, + 1402, + 684, + 1402, + 813, + 297, + 813 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 296, + 1310, + 716, + 1310, + 716, + 1433, + 296, + 1433 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 1446, + 718, + 1446, + 718, + 1629, + 297, + 1629 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 340, + 1405, + 340, + 1405, + 436, + 298, + 436 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 446, + 1403, + 446, + 1403, + 541, + 298, + 541 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 515, + 1018, + 1184, + 1018, + 1184, + 1108, + 515, + 1108 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 314, + 1861, + 1335, + 1861, + 1335, + 2002, + 314, + 2002 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 300, + 826, + 1402, + 826, + 1402, + 890, + 300, + 890 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 289, + 1627, + 1401, + 1627, + 1401, + 1690, + 289, + 1690 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 457, + 897, + 1239, + 897, + 1239, + 946, + 457, + 946 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 965, + 995, + 965, + 995, + 1008, + 296, + 1008 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 1790, + 1408, + 1790, + 1408, + 1857, + 295, + 1857 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 747, + 1366, + 1402, + 1366, + 1402, + 1587, + 747, + 1587 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 297, + 1253, + 847, + 1253, + 847, + 1286, + 297, + 1286 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 610, + 283, + 1089, + 283, + 1089, + 327, + 610, + 327 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 202, + 1165, + 202, + 1165, + 235, + 295, + 235 + ], + "score": 0.905 + }, + { + "category_id": 8, + "poly": [ + 430, + 1695, + 1248, + 1695, + 1248, + 1736, + 430, + 1736 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1353, + 243, + 1400, + 243, + 1400, + 273, + 1353, + 273 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 294, + 545, + 1002, + 545, + 1002, + 577, + 294, + 577 + ], + "score": 0.888 + }, + { + "category_id": 8, + "poly": [ + 609, + 238, + 1049, + 238, + 1049, + 279, + 609, + 279 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1352, + 289, + 1400, + 289, + 1400, + 318, + 1352, + 318 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1749, + 1400, + 1749, + 1400, + 1778, + 1352, + 1778 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1702, + 1400, + 1702, + 1400, + 1731, + 1354, + 1731 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1047, + 1400, + 1047, + 1400, + 1077, + 1366, + 1077 + ], + "score": 0.875 + }, + { + "category_id": 8, + "poly": [ + 344, + 585, + 1315, + 585, + 1315, + 630, + 344, + 630 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1365, + 906, + 1400, + 906, + 1400, + 937, + 1365, + 937 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1366, + 594, + 1401, + 594, + 1401, + 623, + 1366, + 623 + ], + "score": 0.853 + }, + { + "category_id": 0, + "poly": [ + 736, + 1321, + 1397, + 1321, + 1397, + 1354, + 736, + 1354 + ], + "score": 0.851 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1940, + 1401, + 1940, + 1401, + 1972, + 1352, + 1972 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 327, + 635, + 1332, + 635, + 1332, + 668, + 327, + 668 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.752 + }, + { + "category_id": 8, + "poly": [ + 442, + 1741, + 666, + 1741, + 666, + 1784, + 442, + 1784 + ], + "score": 0.214 + }, + { + "category_id": 13, + "poly": [ + 768, + 962, + 951, + 962, + 951, + 1009, + 768, + 1009 + ], + "score": 0.94, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 569, + 1119, + 725, + 1119, + 725, + 1154, + 569, + 1154 + ], + "score": 0.94, + "latex": "\\{ 1 , 2 , \\ldots , N \\}" + }, + { + "category_id": 14, + "poly": [ + 515, + 1015, + 1185, + 1015, + 1185, + 1110, + 515, + 1110 + ], + "score": 0.94, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 } \\approx \\Big [ \\frac { N } { \\ell _ { g , 1 } } \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\Big ( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi _ { ( n ) } ) \\Big ) \\Big ]" + }, + { + "category_id": 13, + "poly": [ + 685, + 778, + 769, + 778, + 769, + 811, + 685, + 811 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 936, + 686, + 1020, + 686, + 1020, + 719, + 936, + 719 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1179, + 827, + 1263, + 827, + 1263, + 861, + 1179, + 861 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 940, + 776, + 1118, + 776, + 1118, + 815, + 940, + 815 + ], + "score": 0.93, + "latex": "\\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )" + }, + { + "category_id": 14, + "poly": [ + 309, + 1855, + 1342, + 1855, + 1342, + 2004, + 309, + 2004 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\boldsymbol { h } _ { f } ^ { k } : = \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) } \\\\ & { \\qquad - \\nabla _ { \\boldsymbol { x } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ; \\phi _ { ( 0 ) } ^ { k } ) \\Bigl [ \\frac { N } { \\ell _ { g , 1 } } \\displaystyle \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\left( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { \\boldsymbol { y } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\phi _ { ( n ) } ^ { k } ) \\right) \\Bigr ] \\nabla _ { \\boldsymbol { y } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 662, + 717, + 746, + 717, + 746, + 750, + 662, + 750 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 717, + 402, + 801, + 402, + 801, + 436, + 717, + 436 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 518, + 858, + 585, + 858, + 585, + 891, + 518, + 891 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 533, + 778, + 617, + 778, + 617, + 811, + 533, + 811 + ], + "score": 0.92, + "latex": "\\dot { \\nabla } F ( { \\boldsymbol { x } } )" + }, + { + "category_id": 13, + "poly": [ + 758, + 858, + 825, + 858, + 825, + 891, + 758, + 891 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 935, + 1789, + 1241, + 1789, + 1241, + 1830, + 935, + 1830 + ], + "score": 0.92, + "latex": "h _ { g } ^ { k , t } : = \\nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \\phi ^ { k , t } )" + }, + { + "category_id": 13, + "poly": [ + 451, + 634, + 536, + 634, + 536, + 668, + 451, + 668 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 589, + 634, + 656, + 634, + 656, + 668, + 589, + 668 + ], + "score": 0.91, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 505, + 748, + 572, + 748, + 572, + 780, + 505, + 780 + ], + "score": 0.91, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1153, + 1238, + 1153, + 1238, + 1196, + 1054, + 1196 + ], + "score": 0.91, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 747, + 365, + 747, + 365, + 781, + 298, + 781 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 14, + "poly": [ + 607, + 235, + 1091, + 235, + 1091, + 332, + 607, + 332 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { \\xi } [ \\| \\nabla f ( x , y ; \\xi ) \\| ^ { 2 } ] \\le \\ell _ { f , 0 } ^ { 2 } + \\sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\\\ & { \\mathbb { E } _ { \\phi } [ \\| \\nabla ^ { 2 } g ( x , y ; \\phi ) \\| ^ { 2 } ] \\le \\ell _ { g , 1 } ^ { 2 } + \\sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1104, + 635, + 1189, + 635, + 1189, + 668, + 1104, + 668 + ], + "score": 0.91, + "latex": "L _ { F } , L _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1369, + 1193, + 1369, + 1193, + 1403, + 1091, + 1403 + ], + "score": 0.91, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 1342, + 480, + 1403, + 480, + 1403, + 512, + 1342, + 512 + ], + "score": 0.9, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 586, + 1568, + 664, + 1568, + 664, + 1596, + 586, + 1596 + ], + "score": 0.9, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1115, + 1206, + 1115, + 1206, + 1153, + 1008, + 1153 + ], + "score": 0.9, + "latex": "\\{ \\phi ^ { ( 1 ) } , \\dots , \\phi ^ { ( N ^ { \\prime } ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 471, + 1536, + 503, + 1536, + 503, + 1570, + 471, + 1570 + ], + "score": 0.9, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1657, + 547, + 1657, + 547, + 1690, + 516, + 1690 + ], + "score": 0.9, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1657, + 465, + 1657, + 465, + 1686, + 433, + 1686 + ], + "score": 0.89, + "latex": "x ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 391, + 580, + 1306, + 580, + 1306, + 630, + 391, + 630 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\nabla F ( x ) = \\nabla _ { x } f ( x , y ^ { * } ( x ) ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\right] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 570, + 1627, + 602, + 1627, + 602, + 1660, + 570, + 1660 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1629, + 1252, + 1629, + 1252, + 1660, + 1220, + 1660 + ], + "score": 0.88, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1626, + 1056, + 1626, + 1056, + 1656, + 1024, + 1656 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 458, + 895, + 1241, + 895, + 1241, + 945, + 458, + 945 + ], + "score": 0.88, + "latex": "\\overline { { \\nabla } } _ { x } f \\big ( x , y \\big ) : = \\nabla _ { x } f \\big ( x , y \\big ) - \\nabla _ { x y } ^ { 2 } g \\big ( x , y \\big ) \\left[ \\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big ) \\right] ^ { - 1 } \\nabla _ { y } f \\big ( x , y \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 1133, + 1632, + 1168, + 1632, + 1168, + 1659, + 1133, + 1659 + ], + "score": 0.87, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 633, + 1536, + 665, + 1536, + 665, + 1565, + 633, + 1565 + ], + "score": 0.87, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 903, + 1367, + 974, + 1367, + 974, + 1401, + 903, + 1401 + ], + "score": 0.85, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1120, + 405, + 1120, + 405, + 1147, + 370, + 1147 + ], + "score": 0.85, + "latex": "N ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 725, + 1191, + 753, + 1191, + 753, + 1216, + 725, + 1216 + ], + "score": 0.85, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 630, + 1798, + 649, + 1798, + 649, + 1825, + 630, + 1825 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 501, + 1600, + 526, + 1600, + 526, + 1626, + 501, + 1626 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1044, + 864, + 1062, + 864, + 1062, + 890, + 1044, + 890 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 373, + 864, + 390, + 864, + 390, + 890, + 373, + 890 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 890, + 1830, + 909, + 1830, + 909, + 1851, + 890, + 1851 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 595, + 1478, + 613, + 1478, + 613, + 1504, + 595, + 1504 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 778, + 723, + 797, + 723, + 797, + 746, + 778, + 746 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1278, + 693, + 1297, + 693, + 1297, + 714, + 1278, + 714 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 826, + 1401, + 1056, + 1401, + 1056, + 1431, + 826, + 1431 + ], + "score": 0.74, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1456, + 1400, + 1456, + 1400, + 1494, + 1286, + 1494 + ], + "score": 0.71, + "latex": "y ^ { k , 0 } = y ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 435, + 1691, + 1250, + 1691, + 1250, + 1788, + 435, + 1788 + ], + "score": 0.67, + "latex": "\\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t } , t = 0 , \\ldots , T \\quad \\mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\\\ & { x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 905, + 1517, + 1127, + 1517, + 1127, + 1558, + 905, + 1558 + ], + "score": 0.65, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1431, + 1089, + 1431, + 1089, + 1460, + 868, + 1460 + ], + "score": 0.65, + "latex": "t = 0 , 1 , \\dots , T - 1" + }, + { + "category_id": 13, + "poly": [ + 707, + 1698, + 854, + 1698, + 854, + 1733, + 707, + 1733 + ], + "score": 0.53, + "latex": "t = 0 , \\ldots , T" + }, + { + "category_id": 13, + "poly": [ + 949, + 1459, + 1209, + 1459, + 1209, + 1496, + 949, + 1496 + ], + "score": 0.5, + "latex": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 701, + 547, + 744, + 547, + 744, + 574, + 701, + 574 + ], + "score": 0.42, + "latex": "_ { I - 3 }" + }, + { + "category_id": 13, + "poly": [ + 904, + 1514, + 1402, + 1514, + 1402, + 1558, + 904, + 1558 + ], + "score": 0.32, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } \\qquad \\Join" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 849.0, + 1252.0, + 849.0, + 1291.0, + 294.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1314.0, + 1398.0, + 1314.0, + 1398.0, + 1364.0, + 733.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 861.0, + 2059.0, + 861.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1111.0, + 369.0, + 1111.0, + 369.0, + 1157.0, + 291.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1111.0, + 568.0, + 1111.0, + 568.0, + 1157.0, + 406.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1111.0, + 1007.0, + 1111.0, + 1007.0, + 1157.0, + 726.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1111.0, + 1407.0, + 1111.0, + 1407.0, + 1157.0, + 1207.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1152.0, + 1053.0, + 1152.0, + 1053.0, + 1198.0, + 288.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1152.0, + 1407.0, + 1152.0, + 1407.0, + 1198.0, + 1239.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 724.0, + 1186.0, + 724.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1186.0, + 764.0, + 1186.0, + 764.0, + 1222.0, + 754.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 684.0, + 935.0, + 684.0, + 935.0, + 722.0, + 292.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 684.0, + 1277.0, + 684.0, + 1277.0, + 722.0, + 1021.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 684.0, + 1406.0, + 684.0, + 1406.0, + 722.0, + 1298.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 661.0, + 716.0, + 661.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 716.0, + 777.0, + 716.0, + 777.0, + 753.0, + 747.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 716.0, + 1406.0, + 716.0, + 1406.0, + 753.0, + 798.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 747.0, + 504.0, + 747.0, + 504.0, + 784.0, + 366.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 747.0, + 1407.0, + 747.0, + 1407.0, + 784.0, + 573.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 532.0, + 774.0, + 532.0, + 819.0, + 292.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 774.0, + 684.0, + 774.0, + 684.0, + 819.0, + 618.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 774.0, + 939.0, + 774.0, + 939.0, + 819.0, + 770.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 774.0, + 1133.0, + 774.0, + 1133.0, + 819.0, + 1119.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 713.0, + 1310.0, + 713.0, + 1342.0, + 296.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 716.0, + 1340.0, + 716.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 717.0, + 1367.0, + 717.0, + 1404.0, + 294.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 688.0, + 1403.0, + 688.0, + 1435.0, + 295.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 720.0, + 1444.0, + 720.0, + 1481.0, + 294.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1478.0, + 594.0, + 1478.0, + 594.0, + 1506.0, + 296.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1478.0, + 717.0, + 1478.0, + 717.0, + 1506.0, + 614.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1507.0, + 720.0, + 1507.0, + 720.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 470.0, + 1537.0, + 470.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1537.0, + 632.0, + 1537.0, + 632.0, + 1569.0, + 504.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1537.0, + 721.0, + 1537.0, + 721.0, + 1569.0, + 666.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1567.0, + 585.0, + 1567.0, + 585.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1567.0, + 718.0, + 1567.0, + 718.0, + 1599.0, + 665.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 500.0, + 1599.0, + 500.0, + 1631.0, + 295.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1599.0, + 716.0, + 1599.0, + 716.0, + 1631.0, + 527.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1407.0, + 339.0, + 1407.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 375.0, + 1402.0, + 375.0, + 1402.0, + 405.0, + 295.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 401.0, + 716.0, + 401.0, + 716.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 401.0, + 813.0, + 401.0, + 813.0, + 439.0, + 802.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 1404.0, + 446.0, + 1404.0, + 484.0, + 294.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 478.0, + 1341.0, + 478.0, + 1341.0, + 515.0, + 293.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 1071.0, + 509.0, + 1071.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 826.0, + 1178.0, + 826.0, + 1178.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 826.0, + 1404.0, + 826.0, + 1404.0, + 862.0, + 1264.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 372.0, + 857.0, + 372.0, + 893.0, + 295.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 857.0, + 517.0, + 857.0, + 517.0, + 893.0, + 391.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 857.0, + 757.0, + 857.0, + 757.0, + 893.0, + 586.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 857.0, + 1043.0, + 857.0, + 1043.0, + 893.0, + 826.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 857.0, + 1187.0, + 857.0, + 1187.0, + 893.0, + 1063.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 569.0, + 1622.0, + 569.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1622.0, + 1023.0, + 1622.0, + 1023.0, + 1664.0, + 603.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1622.0, + 1132.0, + 1622.0, + 1132.0, + 1664.0, + 1057.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1622.0, + 1219.0, + 1622.0, + 1219.0, + 1664.0, + 1169.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1622.0, + 1404.0, + 1622.0, + 1404.0, + 1664.0, + 1253.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1655.0, + 432.0, + 1655.0, + 432.0, + 1694.0, + 295.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1655.0, + 515.0, + 1655.0, + 515.0, + 1694.0, + 466.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1655.0, + 1222.0, + 1655.0, + 1222.0, + 1694.0, + 548.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 956.0, + 767.0, + 956.0, + 767.0, + 1016.0, + 290.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 956.0, + 1002.0, + 956.0, + 1002.0, + 1016.0, + 952.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1783.0, + 629.0, + 1783.0, + 629.0, + 1830.0, + 292.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1783.0, + 934.0, + 1783.0, + 934.0, + 1830.0, + 650.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1783.0, + 1407.0, + 1783.0, + 1407.0, + 1830.0, + 1242.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 889.0, + 1821.0, + 889.0, + 1857.0, + 296.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1821.0, + 1244.0, + 1821.0, + 1244.0, + 1857.0, + 910.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1361.0, + 902.0, + 1361.0, + 902.0, + 1406.0, + 747.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1361.0, + 1090.0, + 1361.0, + 1090.0, + 1406.0, + 975.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1361.0, + 1205.0, + 1361.0, + 1205.0, + 1406.0, + 1194.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1394.0, + 825.0, + 1394.0, + 825.0, + 1434.0, + 745.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1394.0, + 1100.0, + 1394.0, + 1100.0, + 1434.0, + 1057.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1429.0, + 781.0, + 1429.0, + 781.0, + 1461.0, + 747.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1428.0, + 867.0, + 1428.0, + 867.0, + 1460.0, + 823.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1428.0, + 1128.0, + 1428.0, + 1128.0, + 1460.0, + 1090.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1459.0, + 780.0, + 1459.0, + 780.0, + 1493.0, + 747.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1449.0, + 948.0, + 1449.0, + 948.0, + 1504.0, + 856.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1449.0, + 1285.0, + 1449.0, + 1285.0, + 1504.0, + 1210.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1449.0, + 1409.0, + 1449.0, + 1409.0, + 1504.0, + 1401.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1490.0, + 780.0, + 1490.0, + 780.0, + 1524.0, + 747.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1490.0, + 919.0, + 1490.0, + 919.0, + 1520.0, + 823.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1521.0, + 780.0, + 1521.0, + 780.0, + 1554.0, + 747.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1507.0, + 903.0, + 1507.0, + 903.0, + 1562.0, + 817.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1551.0, + 880.0, + 1551.0, + 880.0, + 1590.0, + 745.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 1164.0, + 199.0, + 1164.0, + 242.0, + 293.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 542.0, + 700.0, + 542.0, + 700.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 542.0, + 1004.0, + 542.0, + 1004.0, + 583.0, + 745.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 630.0, + 450.0, + 630.0, + 450.0, + 673.0, + 321.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 630.0, + 588.0, + 630.0, + 588.0, + 673.0, + 537.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 630.0, + 1103.0, + 630.0, + 1103.0, + 673.0, + 657.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 630.0, + 1338.0, + 630.0, + 1338.0, + 673.0, + 1190.0, + 673.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 370, + 1407, + 370, + 1407, + 624, + 296, + 624 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1344, + 1405, + 1344, + 1405, + 1541, + 296, + 1541 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 202, + 1406, + 202, + 1406, + 360, + 297, + 360 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 355, + 1790, + 1299, + 1790, + 1299, + 1879, + 355, + 1879 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 809, + 1399, + 809, + 1399, + 872, + 296, + 872 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1627, + 1402, + 1627, + 1402, + 1693, + 297, + 1693 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 615, + 1238, + 1084, + 1238, + 1084, + 1322, + 615, + 1322 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 468, + 885, + 1230, + 885, + 1230, + 964, + 468, + 964 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 409, + 716, + 1288, + 716, + 1288, + 801, + 409, + 801 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 295, + 1705, + 1401, + 1705, + 1401, + 1781, + 295, + 1781 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 429, + 1024, + 1269, + 1024, + 1269, + 1096, + 429, + 1096 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 1898, + 1405, + 1898, + 1405, + 1962, + 294, + 1962 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 298, + 1573, + 512, + 1573, + 512, + 1606, + 298, + 1606 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1151, + 1403, + 1151, + 1403, + 1225, + 297, + 1225 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 293, + 973, + 1303, + 973, + 1303, + 1011, + 293, + 1011 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 294, + 1974, + 1182, + 1974, + 1182, + 2009, + 294, + 2009 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 635, + 860, + 635, + 860, + 667, + 295, + 667 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 735, + 1400, + 735, + 1400, + 766, + 1352, + 766 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1265, + 1400, + 1265, + 1400, + 1293, + 1356, + 1293 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 294, + 673, + 1281, + 673, + 1281, + 707, + 294, + 707 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 297, + 1111, + 1040, + 1111, + 1040, + 1145, + 297, + 1145 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1044, + 1400, + 1044, + 1400, + 1073, + 1356, + 1073 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 910, + 1400, + 910, + 1400, + 940, + 1351, + 940 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1807, + 1400, + 1807, + 1400, + 1839, + 1352, + 1839 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 839, + 2061, + 859, + 2061, + 859, + 2085, + 839, + 2085 + ], + "score": 0.799 + }, + { + "category_id": 14, + "poly": [ + 431, + 1017, + 1269, + 1017, + 1269, + 1103, + 431, + 1103 + ], + "score": 0.95, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) \\ \\mathrm { ~ a n d ~ } \\ \\mathbb { E } \\left[ \\left. y ^ { K } - y ^ { * } ( x ^ { K } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big )" + }, + { + "category_id": 14, + "poly": [ + 470, + 879, + 1232, + 879, + 1232, + 965, + 470, + 965 + ], + "score": 0.93, + "latex": "\\alpha _ { k } = \\operatorname* { m i n } \\left\\{ \\bar { \\alpha } _ { 1 } , \\bar { \\alpha } _ { 2 } , \\frac { \\alpha } { \\sqrt { K } } \\right\\} \\mathrm { a n d } \\beta _ { k } = \\frac { 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } } { 4 T \\mu _ { g } } \\alpha _ { k } ." + }, + { + "category_id": 14, + "poly": [ + 612, + 1236, + 1088, + 1236, + 1088, + 1323, + 612, + 1323 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } [ \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 3 } } { K } + \\frac { \\kappa ^ { \\frac { 5 } { 2 } } } { \\sqrt { K } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 832, + 973, + 931, + 973, + 931, + 1010, + 832, + 1010 + ], + "score": 0.93, + "latex": "\\{ x ^ { k } , y ^ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1444, + 1183, + 1444, + 1183, + 1480, + 1075, + 1480 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 14, + "poly": [ + 408, + 715, + 1289, + 715, + 1289, + 802, + 408, + 802 + ], + "score": 0.93, + "latex": "\\bar { \\alpha } _ { 1 } = \\frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \\frac { 2 L _ { f } L _ { y x } } { L _ { y } \\eta } } , \\bar { \\alpha } _ { 2 } = \\frac { 1 6 T \\mu _ { g } \\ell _ { g , 1 } } { ( \\mu _ { g } + \\ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } ) }" + }, + { + "category_id": 13, + "poly": [ + 457, + 1377, + 547, + 1377, + 547, + 1418, + 457, + 1418 + ], + "score": 0.93, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 516, + 976, + 689, + 976, + 689, + 1010, + 516, + 1010 + ], + "score": 0.93, + "latex": "N = \\mathcal { O } ( \\log K )" + }, + { + "category_id": 13, + "poly": [ + 875, + 292, + 951, + 292, + 951, + 331, + 875, + 331 + ], + "score": 0.93, + "latex": "h _ { g } ^ { k } , h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1345, + 1192, + 1345, + 1192, + 1381, + 1015, + 1381 + ], + "score": 0.93, + "latex": "K = \\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 592, + 1378, + 707, + 1378, + 707, + 1414, + 592, + 1414 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 759, + 1378, + 874, + 1378, + 874, + 1414, + 759, + 1414 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1182, + 403, + 1182, + 403, + 1230, + 298, + 1230 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\kappa : = { \\frac { \\ell _ { g , 1 } } { \\mu _ { g } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 1110, + 459, + 1110, + 459, + 1146, + 372, + 1146 + ], + "score": 0.92, + "latex": "y ^ { * } ( x ^ { K } )" + }, + { + "category_id": 14, + "poly": [ + 350, + 1787, + 1301, + 1787, + 1301, + 1878, + 350, + 1878 + ], + "score": 0.92, + "latex": "\\mathbb { V } ^ { k + 1 } - \\mathbb { V } ^ { k } = \\underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \\mathrm { L e m m a ~ 1 } } + \\ \\frac { L _ { f } } { L _ { y } } ( \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } - \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 999, + 1705, + 1401, + 1705, + 1401, + 1753, + 999, + 1753 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathbb { V } ^ { k } : = F ( x ^ { k } ) + \\frac { L _ { f } } { L _ { y } } \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 369, + 811, + 437, + 811, + 437, + 842, + 369, + 842 + ], + "score": 0.9, + "latex": "\\eta > 0" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1188, + 1197, + 1188, + 1197, + 1220, + 1091, + 1220 + ], + "score": 0.9, + "latex": "\\eta = \\mathcal { O } ( \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 775, + 523, + 822, + 523, + 822, + 560, + 775, + 560 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k , \\bar { t } }" + }, + { + "category_id": 13, + "poly": [ + 389, + 977, + 462, + 977, + 462, + 1007, + 389, + 1007 + ], + "score": 0.9, + "latex": "T \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1066, + 492, + 1110, + 492, + 1110, + 522, + 1066, + 522 + ], + "score": 0.89, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 488, + 592, + 520, + 592, + 520, + 622, + 488, + 622 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 489, + 841, + 560, + 841, + 560, + 868, + 489, + 868 + ], + "score": 0.88, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 759, + 560, + 802, + 560, + 802, + 589, + 759, + 589 + ], + "score": 0.88, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1186, + 1081, + 1186, + 1081, + 1221, + 959, + 1221 + ], + "score": 0.87, + "latex": "T = \\Theta ( \\kappa ^ { 4 } )" + }, + { + "category_id": 13, + "poly": [ + 403, + 594, + 437, + 594, + 437, + 621, + 403, + 621 + ], + "score": 0.87, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1185, + 948, + 1185, + 948, + 1220, + 795, + 1220 + ], + "score": 0.85, + "latex": "\\alpha = \\Theta ( \\kappa ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 949, + 529, + 967, + 529, + 967, + 557, + 949, + 557 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1298, + 468, + 1316, + 468, + 1316, + 495, + 1298, + 495 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1484, + 1123, + 1484, + 1123, + 1505, + 1105, + 1505 + ], + "score": 0.78, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 419, + 494, + 443, + 494, + 443, + 522, + 419, + 522 + ], + "score": 0.77, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 720, + 1354, + 733, + 1354, + 733, + 1375, + 720, + 1375 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1484, + 1056, + 1484, + 1056, + 1505, + 1040, + 1505 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1154, + 1332, + 1154, + 1332, + 1179, + 1318, + 1179 + ], + "score": 0.53, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 979, + 1220, + 979, + 1220, + 1004, + 1205, + 1004 + ], + "score": 0.43, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 906, + 675, + 951, + 675, + 951, + 703, + 906, + 703 + ], + "score": 0.33, + "latex": "_ { I - 3 }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1570.0, + 514.0, + 1570.0, + 514.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 861.0, + 2059.0, + 861.0, + 2090.0, + 840.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 1407.0, + 369.0, + 1407.0, + 407.0, + 295.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1407.0, + 402.0, + 1407.0, + 438.0, + 294.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 433.0, + 1405.0, + 433.0, + 1405.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 463.0, + 1297.0, + 463.0, + 1297.0, + 498.0, + 294.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 463.0, + 1408.0, + 463.0, + 1408.0, + 498.0, + 1317.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 418.0, + 492.0, + 418.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 492.0, + 1065.0, + 492.0, + 1065.0, + 526.0, + 444.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 526.0, + 1111.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 519.0, + 774.0, + 519.0, + 774.0, + 561.0, + 291.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 519.0, + 948.0, + 519.0, + 948.0, + 561.0, + 823.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 519.0, + 1408.0, + 519.0, + 1408.0, + 561.0, + 968.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 561.0, + 758.0, + 561.0, + 758.0, + 595.0, + 294.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 561.0, + 1405.0, + 561.0, + 1405.0, + 595.0, + 803.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 402.0, + 593.0, + 402.0, + 624.0, + 296.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 593.0, + 487.0, + 593.0, + 487.0, + 624.0, + 438.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 593.0, + 941.0, + 593.0, + 941.0, + 624.0, + 521.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 719.0, + 1344.0, + 719.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1344.0, + 1014.0, + 1344.0, + 1014.0, + 1381.0, + 734.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1381.0, + 1193.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1372.0, + 456.0, + 1372.0, + 456.0, + 1420.0, + 291.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1372.0, + 591.0, + 1372.0, + 591.0, + 1420.0, + 548.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1372.0, + 758.0, + 1372.0, + 758.0, + 1420.0, + 708.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1420.0, + 875.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1449.0, + 293.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 1074.0, + 1442.0, + 1074.0, + 1484.0, + 293.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1442.0, + 1406.0, + 1442.0, + 1406.0, + 1484.0, + 1184.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1472.0, + 1039.0, + 1472.0, + 1039.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1472.0, + 1104.0, + 1472.0, + 1104.0, + 1518.0, + 1057.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1518.0, + 1124.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1378.0, + 1506.0, + 1378.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 200.0, + 1409.0, + 200.0, + 1409.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 284.0, + 874.0, + 284.0, + 874.0, + 343.0, + 287.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 284.0, + 1412.0, + 284.0, + 1412.0, + 343.0, + 952.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 327.0, + 1270.0, + 327.0, + 1270.0, + 364.0, + 295.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 809.0, + 368.0, + 809.0, + 368.0, + 844.0, + 296.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 809.0, + 1403.0, + 809.0, + 1403.0, + 844.0, + 438.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 488.0, + 838.0, + 488.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 838.0, + 1400.0, + 838.0, + 1400.0, + 877.0, + 561.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1626.0, + 1404.0, + 1626.0, + 1404.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 911.0, + 1657.0, + 911.0, + 1696.0, + 295.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1702.0, + 998.0, + 1702.0, + 998.0, + 1753.0, + 291.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1702.0, + 1407.0, + 1702.0, + 1407.0, + 1753.0, + 1402.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 1054.0, + 1746.0, + 1054.0, + 1784.0, + 295.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1899.0, + 1403.0, + 1899.0, + 1403.0, + 1931.0, + 297.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1929.0, + 1348.0, + 1929.0, + 1348.0, + 1965.0, + 296.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1150.0, + 1317.0, + 1150.0, + 1317.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1150.0, + 1404.0, + 1150.0, + 1404.0, + 1188.0, + 1333.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 297.0, + 1189.0, + 297.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.75, + 1173.5, + 1398.75, + 1173.5, + 1398.75, + 1233.5, + 347.75, + 1233.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 972.0, + 388.0, + 972.0, + 388.0, + 1016.0, + 292.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 972.0, + 515.0, + 972.0, + 515.0, + 1016.0, + 463.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 972.0, + 831.0, + 972.0, + 831.0, + 1016.0, + 690.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 972.0, + 1204.0, + 972.0, + 1204.0, + 1016.0, + 932.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 972.0, + 1303.0, + 972.0, + 1303.0, + 1016.0, + 1221.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1184.0, + 1971.0, + 1184.0, + 2013.0, + 294.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 635.0, + 860.0, + 635.0, + 860.0, + 671.0, + 296.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 905.0, + 670.0, + 905.0, + 712.0, + 294.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 670.0, + 1282.0, + 670.0, + 1282.0, + 712.0, + 952.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1107.0, + 371.0, + 1107.0, + 371.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1107.0, + 1032.0, + 1107.0, + 1032.0, + 1151.0, + 460.0, + 1151.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1676, + 1404, + 1676, + 1404, + 1838, + 296, + 1838 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1913, + 1403, + 1913, + 1403, + 2008, + 299, + 2008 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1419, + 1406, + 1419, + 1406, + 1565, + 297, + 1565 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 302, + 498, + 1404, + 498, + 1404, + 594, + 302, + 594 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 436, + 293, + 1261, + 293, + 1261, + 426, + 436, + 426 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 604, + 1407, + 604, + 1407, + 711, + 297, + 711 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 332, + 1069, + 1304, + 1069, + 1304, + 1216, + 332, + 1216 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1284, + 1403, + 1284, + 1403, + 1349, + 298, + 1349 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 294, + 199, + 1404, + 199, + 1404, + 277, + 294, + 277 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 489, + 1621, + 1207, + 1621, + 1207, + 1667, + 489, + 1667 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 292, + 1860, + 1283, + 1860, + 1283, + 1900, + 292, + 1900 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 300, + 930, + 1407, + 930, + 1407, + 1003, + 300, + 1003 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 459, + 766, + 1243, + 766, + 1243, + 812, + 459, + 812 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 292, + 1227, + 1297, + 1227, + 1297, + 1261, + 292, + 1261 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 300, + 828, + 1094, + 828, + 1094, + 865, + 300, + 865 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 301, + 1574, + 1313, + 1574, + 1313, + 1609, + 301, + 1609 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 302, + 438, + 1245, + 438, + 1245, + 477, + 302, + 477 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 298, + 718, + 1202, + 718, + 1202, + 751, + 298, + 751 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 301, + 888, + 1155, + 888, + 1155, + 923, + 301, + 923 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1629, + 1400, + 1629, + 1400, + 1660, + 1351, + 1660 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1356, + 385, + 1401, + 385, + 1401, + 414, + 1356, + 414 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1351, + 772, + 1401, + 772, + 1401, + 804, + 1351, + 804 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1339, + 1024, + 1400, + 1024, + 1400, + 1055, + 1339, + 1055 + ], + "score": 0.884 + }, + { + "category_id": 8, + "poly": [ + 312, + 1361, + 1321, + 1361, + 1321, + 1407, + 312, + 1407 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1367, + 1400, + 1367, + 1400, + 1401, + 1353, + 1401 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1338, + 1160, + 1400, + 1160, + 1400, + 1192, + 1338, + 1192 + ], + "score": 0.866 + }, + { + "category_id": 8, + "poly": [ + 332, + 1016, + 1101, + 1016, + 1101, + 1061, + 332, + 1061 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 858, + 2060, + 858, + 2084, + 841, + 2084 + ], + "score": 0.75 + }, + { + "category_id": 13, + "poly": [ + 489, + 440, + 618, + 440, + 618, + 480, + 489, + 480 + ], + "score": 0.94, + "latex": "L _ { f } , L _ { F } , \\sigma _ { f } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 790, + 960, + 943, + 960, + 943, + 1005, + 790, + 1005 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\beta _ { k } \\le \\frac { 2 ^ { \\binom { - } { q } } } { \\mu _ { g } + \\ell _ { g , 1 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 331, + 1013, + 1306, + 1013, + 1306, + 1221, + 331, + 1221 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] \\leq ( 1 - \\mu _ { g } \\beta _ { k } ) ^ { T } \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + T \\beta _ { k } ^ { 2 } \\sigma _ { g , 1 } ^ { 2 } } \\\\ & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq \\Big ( 1 + 4 L _ { f } L _ { y } \\alpha _ { k } + \\frac { \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } } { 2 } \\alpha _ { k } ^ { 2 } \\Big ) \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] } \\\\ & { \\qquad + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y } } { 4 L _ { f } \\alpha _ { k } } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1337, + 610, + 1403, + 610, + 1403, + 640, + 1337, + 640 + ], + "score": 0.93, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 532, + 1529, + 645, + 1529, + 645, + 1565, + 532, + 1565 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 796, + 1804, + 928, + 1804, + 928, + 1837, + 796, + 1837 + ], + "score": 0.93, + "latex": "B _ { k } = \\mathcal { O } ( k )" + }, + { + "category_id": 14, + "poly": [ + 438, + 290, + 1260, + 290, + 1260, + 430, + 438, + 430 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \\mathbb { E } [ F ( { x } ^ { k } ) ] \\le - \\frac { \\alpha _ { k } } { 2 } \\mathbb { E } [ \\| \\nabla F ( { x } ^ { k } ) \\| ^ { 2 } ] - \\left( \\frac { \\alpha _ { k } } { 2 } - \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\right) \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] } \\\\ { + L _ { f } ^ { 2 } \\alpha _ { k } \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \\| ^ { 2 } ] + \\alpha _ { k } b _ { k } ^ { 2 } + \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 379, + 1803, + 548, + 1803, + 548, + 1837, + 379, + 1837 + ], + "score": 0.93, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( 1 / B _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 841, + 1492, + 1024, + 1492, + 1024, + 1530, + 841, + 1530 + ], + "score": 0.93, + "latex": "\\beta _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 603, + 1495, + 787, + 1495, + 787, + 1530, + 603, + 1530 + ], + "score": 0.92, + "latex": "\\alpha _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 347, + 237, + 661, + 237, + 661, + 280, + 347, + 280 + ], + "score": 0.92, + "latex": "\\| \\bar { h } _ { f } ^ { k } - \\overline { { \\nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \\| \\leq b _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 201, + 1401, + 201, + 1401, + 242, + 1154, + 242 + ], + "score": 0.92, + "latex": "\\bar { h } _ { f } ^ { k } : = \\mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 435, + 1742, + 663, + 1742, + 663, + 1776, + 435, + 1776 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1679, + 1298, + 1679, + 1298, + 1713, + 1191, + 1713 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( 1 / B _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 956, + 1317, + 1031, + 1317, + 1031, + 1348, + 956, + 1348 + ], + "score": 0.92, + "latex": "\\alpha _ { k } , \\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1456, + 833, + 1456, + 833, + 1495, + 727, + 1495 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 1159, + 929, + 1217, + 929, + 1217, + 964, + 1159, + 964 + ], + "score": 0.91, + "latex": "y ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 960, + 1068, + 960, + 1068, + 994, + 1010, + 994 + ], + "score": 0.91, + "latex": "y ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1230, + 440, + 1230, + 440, + 1261, + 371, + 1261 + ], + "score": 0.9, + "latex": "\\eta > 0" + }, + { + "category_id": 13, + "poly": [ + 899, + 1677, + 1153, + 1677, + 1153, + 1713, + 899, + 1713 + ], + "score": 0.9, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 982, + 1714, + 1226, + 1714, + 1226, + 1747, + 982, + 1747 + ], + "score": 0.9, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 472, + 825, + 509, + 825, + 509, + 869, + 472, + 869 + ], + "score": 0.9, + "latex": "\\tilde { C } _ { f } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 831, + 418, + 831, + 418, + 865, + 371, + 865 + ], + "score": 0.9, + "latex": "L _ { y x }" + }, + { + "category_id": 14, + "poly": [ + 492, + 1623, + 1206, + 1623, + 1206, + 1665, + 492, + 1665 + ], + "score": 0.9, + "latex": "\\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 5 } \\sigma ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 458, + 765, + 1241, + 765, + 1241, + 811, + 458, + 811 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\| \\nabla y ^ { * } ( x _ { 1 } ) - \\nabla y ^ { * } ( x _ { 2 } ) \\| \\leq L _ { y x } \\| x _ { 1 } - x _ { 2 } \\| ; \\quad \\mathbb { E } [ \\| h _ { f } ^ { k } \\| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \\leq \\tilde { C } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 621, + 638, + 655, + 638, + 655, + 677, + 621, + 677 + ], + "score": 0.9, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 640, + 604, + 670, + 604, + 670, + 638, + 640, + 638 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 677, + 1397, + 677, + 1397, + 710, + 1368, + 710 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 525, + 529, + 556, + 529, + 556, + 563, + 525, + 563 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 331, + 1361, + 1327, + 1361, + 1327, + 1407, + 331, + 1407 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\delta _ { 3 } T \\sigma _ { g , 1 } ^ { 2 } + \\delta _ { 4 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 1678, + 406, + 1678, + 406, + 1707, + 373, + 1707 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 860, + 240, + 891, + 240, + 891, + 270, + 860, + 270 + ], + "score": 0.86, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 600, + 960, + 631, + 960, + 631, + 989, + 600, + 989 + ], + "score": 0.85, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1682, + 1400, + 1682, + 1400, + 1711, + 1363, + 1711 + ], + "score": 0.85, + "latex": "B _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1751, + 1287, + 1751, + 1287, + 1775, + 1270, + 1775 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 643, + 1714, + 661, + 1714, + 661, + 1740, + 643, + 1740 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1809, + 1141, + 1809, + 1141, + 1836, + 1124, + 1836 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 516, + 1780, + 534, + 1780, + 534, + 1801, + 516, + 1801 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 571, + 1422, + 1160, + 1422, + 1160, + 1458, + 571, + 1458 + ], + "score": 0.73, + "latex": "\\delta _ { 1 } \\in [ 0 , 1 ) , \\delta _ { 2 } = \\mathcal { O } ( \\alpha _ { k } ) , \\delta _ { 3 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } ) , \\delta _ { 4 } = \\mathcal { O } ( \\alpha _ { k } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1166, + 245, + 1181, + 245, + 1181, + 269, + 1166, + 269 + ], + "score": 0.48, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 959, + 204, + 1004, + 204, + 1004, + 233, + 959, + 233 + ], + "score": 0.45, + "latex": "_ { I - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1011, + 721, + 1027, + 721, + 1027, + 747, + 1011, + 747 + ], + "score": 0.28, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1859.0, + 1284.0, + 1859.0, + 1284.0, + 1907.0, + 290.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 372.0, + 1675.0, + 372.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1675.0, + 898.0, + 1675.0, + 898.0, + 1717.0, + 407.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1675.0, + 1190.0, + 1675.0, + 1190.0, + 1717.0, + 1154.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1675.0, + 1362.0, + 1675.0, + 1362.0, + 1717.0, + 1299.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1717.0, + 1401.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 642.0, + 1708.0, + 642.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1708.0, + 981.0, + 1708.0, + 981.0, + 1750.0, + 662.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1708.0, + 1407.0, + 1708.0, + 1407.0, + 1750.0, + 1227.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 434.0, + 1741.0, + 434.0, + 1779.0, + 294.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1741.0, + 1269.0, + 1741.0, + 1269.0, + 1779.0, + 664.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1779.0, + 1288.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 515.0, + 1771.0, + 515.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1809.0, + 535.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 378.0, + 1803.0, + 378.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1803.0, + 795.0, + 1803.0, + 795.0, + 1838.0, + 549.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1803.0, + 1123.0, + 1803.0, + 1123.0, + 1838.0, + 929.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1803.0, + 1234.0, + 1803.0, + 1234.0, + 1838.0, + 1142.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1318.0, + 1975.0, + 1318.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1418.0, + 570.0, + 1418.0, + 570.0, + 1461.0, + 292.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1418.0, + 1407.0, + 1418.0, + 1407.0, + 1461.0, + 1161.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 726.0, + 1452.0, + 726.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1452.0, + 1408.0, + 1452.0, + 1408.0, + 1496.0, + 834.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1491.0, + 602.0, + 1491.0, + 602.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1491.0, + 840.0, + 1491.0, + 840.0, + 1534.0, + 788.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1491.0, + 1408.0, + 1491.0, + 1408.0, + 1534.0, + 1025.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 531.0, + 1525.0, + 531.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1525.0, + 1314.0, + 1525.0, + 1314.0, + 1568.0, + 646.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 499.0, + 1403.0, + 499.0, + 1403.0, + 534.0, + 296.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 525.0, + 524.0, + 525.0, + 524.0, + 568.0, + 293.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 568.0, + 557.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 562.0, + 719.0, + 562.0, + 719.0, + 595.0, + 296.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 602.0, + 639.0, + 602.0, + 639.0, + 643.0, + 292.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 602.0, + 1336.0, + 602.0, + 1336.0, + 643.0, + 671.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 602.0, + 1407.0, + 602.0, + 1407.0, + 643.0, + 1404.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 620.0, + 638.0, + 620.0, + 674.0, + 295.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 674.0, + 656.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 676.0, + 1367.0, + 676.0, + 1367.0, + 713.0, + 292.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 676.0, + 1407.0, + 676.0, + 1407.0, + 713.0, + 1398.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1284.0, + 1404.0, + 1284.0, + 1404.0, + 1320.0, + 296.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1315.0, + 955.0, + 1315.0, + 955.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1315.0, + 1340.0, + 1315.0, + 1340.0, + 1351.0, + 1032.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 195.0, + 958.0, + 195.0, + 958.0, + 242.0, + 293.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 195.0, + 1153.0, + 195.0, + 1153.0, + 242.0, + 1005.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 195.0, + 1405.0, + 195.0, + 1405.0, + 242.0, + 1402.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 237.0, + 346.0, + 237.0, + 346.0, + 280.0, + 294.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 237.0, + 859.0, + 237.0, + 859.0, + 280.0, + 662.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 237.0, + 1165.0, + 237.0, + 1165.0, + 280.0, + 892.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 237.0, + 1283.0, + 237.0, + 1283.0, + 280.0, + 1182.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 922.0, + 1158.0, + 922.0, + 1158.0, + 972.0, + 292.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 922.0, + 1407.0, + 922.0, + 1407.0, + 972.0, + 1218.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 949.0, + 599.0, + 949.0, + 599.0, + 1018.0, + 285.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 949.0, + 789.0, + 949.0, + 789.0, + 1018.0, + 632.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 949.0, + 1009.0, + 949.0, + 1009.0, + 1018.0, + 944.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 949.0, + 1179.0, + 949.0, + 1179.0, + 1018.0, + 1069.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 370.0, + 1225.0, + 370.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1225.0, + 1300.0, + 1225.0, + 1300.0, + 1266.0, + 441.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 822.0, + 370.0, + 822.0, + 370.0, + 872.0, + 291.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 822.0, + 471.0, + 822.0, + 471.0, + 872.0, + 419.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 822.0, + 1100.0, + 822.0, + 1100.0, + 872.0, + 510.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1313.0, + 1574.0, + 1313.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 438.0, + 488.0, + 438.0, + 488.0, + 479.0, + 302.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 438.0, + 1248.0, + 438.0, + 1248.0, + 479.0, + 619.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1010.0, + 716.0, + 1010.0, + 756.0, + 293.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 716.0, + 1205.0, + 716.0, + 1205.0, + 756.0, + 1028.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 1157.0, + 887.0, + 1157.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1698, + 1403, + 1698, + 1403, + 1803, + 296, + 1803 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 615, + 1406, + 615, + 1406, + 745, + 296, + 745 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1486, + 1406, + 1486, + 1406, + 1579, + 298, + 1579 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 295, + 386, + 1408, + 386, + 1408, + 479, + 295, + 479 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 862, + 751, + 862, + 751, + 1271, + 297, + 1271 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1273, + 1405, + 1273, + 1405, + 1396, + 298, + 1396 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 607, + 758, + 1092, + 758, + 1092, + 837, + 607, + 837 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 257, + 1403, + 257, + 1403, + 321, + 295, + 321 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 383, + 1594, + 1311, + 1594, + 1311, + 1685, + 383, + 1685 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 432, + 333, + 1271, + 333, + 1271, + 377, + 432, + 377 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1869, + 1408, + 1869, + 1408, + 1932, + 297, + 1932 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 458, + 1816, + 1236, + 1816, + 1236, + 1861, + 458, + 1861 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 498, + 491, + 1197, + 491, + 1197, + 537, + 498, + 537 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 780, + 933, + 1406, + 933, + 1406, + 1217, + 780, + 1217 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 296, + 545, + 1408, + 545, + 1408, + 609, + 296, + 609 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 298, + 203, + 715, + 203, + 715, + 236, + 298, + 236 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1429, + 772, + 1429, + 772, + 1463, + 299, + 1463 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1649, + 1400, + 1649, + 1400, + 1679, + 1352, + 1679 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1356, + 782, + 1400, + 782, + 1400, + 811, + 1356, + 811 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 297, + 1944, + 1403, + 1944, + 1403, + 2009, + 297, + 2009 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 340, + 1400, + 340, + 1400, + 371, + 1352, + 371 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1352, + 500, + 1400, + 500, + 1400, + 530, + 1352, + 530 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1822, + 1400, + 1822, + 1400, + 1853, + 1351, + 1853 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 772, + 892, + 1332, + 892, + 1332, + 923, + 772, + 923 + ], + "score": 0.51 + }, + { + "category_id": 0, + "poly": [ + 772, + 892, + 1332, + 892, + 1332, + 923, + 772, + 923 + ], + "score": 0.296 + }, + { + "category_id": 14, + "poly": [ + 605, + 755, + 1095, + 755, + 1095, + 840, + 605, + 840 + ], + "score": 0.94, + "latex": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 2 } } { K } + \\frac { \\kappa } { \\sqrt { K } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 299, + 1547, + 470, + 1547, + 470, + 1580, + 299, + 1580 + ], + "score": 0.93, + "latex": "\\| y - h ( x ; \\phi ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 480, + 1022, + 670, + 1022, + 670, + 1057, + 480, + 1057 + ], + "score": 0.93, + "latex": "K = \\mathcal { O } ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 446, + 1082, + 561, + 1082, + 561, + 1117, + 446, + 1117 + ], + "score": 0.93, + "latex": "\\mathcal { O } \\bar { ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 703, + 1303, + 778, + 1303, + 778, + 1336, + 703, + 1336 + ], + "score": 0.93, + "latex": "f ( \\cdot , y )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1081, + 388, + 1081, + 388, + 1121, + 297, + 1121 + ], + "score": 0.93, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 1042, + 417, + 1127, + 417, + 1127, + 450, + 1042, + 450 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 379, + 1239, + 488, + 1239, + 488, + 1275, + 379, + 1275 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 647, + 1087, + 647, + 1087, + 680, + 1014, + 680 + ], + "score": 0.92, + "latex": "f ( \\cdot , y )" + }, + { + "category_id": 13, + "poly": [ + 665, + 1516, + 897, + 1516, + 897, + 1550, + 665, + 1550 + ], + "score": 0.92, + "latex": "f ( x , y ; \\xi ) : = f ( y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 423, + 288, + 697, + 288, + 697, + 322, + 423, + 322 + ], + "score": 0.92, + "latex": "\\bar { g ( x , y ; \\phi ) } = - f ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 626, + 1082, + 741, + 1082, + 741, + 1117, + 626, + 1117 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 14, + "poly": [ + 386, + 1589, + 1311, + 1589, + 1311, + 1688, + 386, + 1688 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\nabla F ( x ) : = \\nabla _ { x } f \\big ( x , y ^ { * } ( x ) \\big ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big [ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big ] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\\\ & { \\qquad = \\nabla h ( x ; \\phi ) ^ { \\top } \\nabla _ { y } f ( y ^ { * } ( x ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 773, + 1765, + 862, + 1765, + 862, + 1806, + 773, + 1806 + ], + "score": 0.92, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1736, + 701, + 1736, + 701, + 1768, + 618, + 1768 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 818, + 678, + 906, + 678, + 906, + 714, + 818, + 714 + ], + "score": 0.92, + "latex": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1206, + 385, + 1206, + 385, + 1241, + 298, + 1241 + ], + "score": 0.91, + "latex": "\\mathsf { \\bar { \\mathcal { O } } } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 841, + 1301, + 932, + 1301, + 932, + 1332, + 841, + 1332 + ], + "score": 0.91, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1516, + 1405, + 1516, + 1405, + 1550, + 1261, + 1550 + ], + "score": 0.91, + "latex": "g ( x , y ; \\phi ) =" + }, + { + "category_id": 13, + "poly": [ + 429, + 682, + 504, + 682, + 504, + 716, + 429, + 716 + ], + "score": 0.91, + "latex": "f ( x , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 298, + 989, + 421, + 989, + 421, + 1026, + 298, + 1026 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( K ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1735, + 1128, + 1735, + 1128, + 1768, + 1062, + 1768 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 14, + "poly": [ + 501, + 491, + 1198, + 491, + 1198, + 538, + 501, + 538 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { h _ { g } ^ { k , t } = - \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1124, + 937, + 1226, + 937, + 1226, + 972, + 1124, + 972 + ], + "score": 0.91, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 416, + 523, + 416, + 523, + 450, + 298, + 450 + ], + "score": 0.91, + "latex": "\\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0" + }, + { + "category_id": 13, + "poly": [ + 394, + 450, + 459, + 450, + 459, + 480, + 394, + 480 + ], + "score": 0.9, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 14, + "poly": [ + 430, + 333, + 1268, + 333, + 1268, + 377, + 430, + 377 + ], + "score": 0.89, + "latex": "\\nabla F ( x ) : = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } + \\nabla _ { x } y ^ { * } ( x ) ^ { \\top } \\nabla _ { y } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) }" + }, + { + "category_id": 14, + "poly": [ + 461, + 1815, + 1238, + 1815, + 1238, + 1861, + 461, + 1861 + ], + "score": 0.89, + "latex": "h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla h ( x ^ { k } ; \\phi ^ { k } ) \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) ." + }, + { + "category_id": 13, + "poly": [ + 660, + 577, + 733, + 577, + 733, + 604, + 660, + 604 + ], + "score": 0.89, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 979, + 1061, + 1403, + 1061, + 1403, + 1098, + 979, + 1098 + ], + "score": 0.89, + "latex": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } )" + }, + { + "category_id": 13, + "poly": [ + 1049, + 680, + 1194, + 680, + 1194, + 716, + 1049, + 716 + ], + "score": 0.89, + "latex": "\\alpha = \\Theta ( \\kappa ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 369, + 1901, + 442, + 1901, + 442, + 1927, + 369, + 1927 + ], + "score": 0.88, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 618, + 1698, + 1257, + 1698, + 1257, + 1737, + 618, + 1737 + ], + "score": 0.88, + "latex": "\\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi ) = \\mathbf { I } _ { d ^ { \\prime } \\times d ^ { \\prime } } , \\nabla _ { x y } ^ { 2 } g ( x , y ; \\phi ) = - \\nabla h ( x ; \\phi ) ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 646, + 1401, + 646, + 1401, + 675, + 1316, + 675 + ], + "score": 0.88, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1768, + 371, + 1768, + 371, + 1795, + 298, + 1795 + ], + "score": 0.88, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 954, + 712, + 954, + 712, + 991, + 297, + 991 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { F ( x ) \\ \\mathrel { \\mathop : } = \\ \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 940, + 1153, + 1344, + 1153, + 1344, + 1188, + 940, + 1188 + ], + "score": 0.88, + "latex": "\\boldsymbol { x } ^ { k + \\mathrm { i } } = x ^ { k } - \\alpha _ { k } \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 681, + 1324, + 681, + 1324, + 716, + 1205, + 716 + ], + "score": 0.86, + "latex": "T = \\Theta ( \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 936, + 935, + 1007, + 935, + 1007, + 969, + 936, + 969 + ], + "score": 0.84, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 917, + 1741, + 935, + 1741, + 935, + 1767, + 917, + 1767 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 530, + 581, + 548, + 581, + 548, + 609, + 530, + 609 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 897, + 997, + 1011, + 997, + 1011, + 1030, + 897, + 1030 + ], + "score": 0.81, + "latex": "y ^ { k , 0 } = y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 683, + 1404, + 683, + 1404, + 715, + 1334, + 715 + ], + "score": 0.8, + "latex": "\\eta = 1" + }, + { + "category_id": 13, + "poly": [ + 1354, + 427, + 1371, + 427, + 1371, + 449, + 1354, + 449 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 896, + 1121, + 1044, + 1121, + 1044, + 1154, + 896, + 1154 + ], + "score": 0.77, + "latex": "y ^ { k + 1 } = y ^ { k , T }" + }, + { + "category_id": 13, + "poly": [ + 611, + 998, + 626, + 998, + 626, + 1020, + 611, + 1020 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 859, + 969, + 1088, + 969, + 1088, + 998, + 859, + 998 + ], + "score": 0.7, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1382, + 621, + 1397, + 621, + 1397, + 644, + 1382, + 644 + ], + "score": 0.54, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 872, + 649, + 886, + 649, + 886, + 673, + 872, + 673 + ], + "score": 0.52, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 900, + 1030, + 1119, + 1030, + 1119, + 1060, + 900, + 1060 + ], + "score": 0.42, + "latex": "t = 0 , 1 , \\dots , T - 1" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 718.0, + 199.0, + 718.0, + 240.0, + 293.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1424.0, + 776.0, + 1424.0, + 776.0, + 1470.0, + 292.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 884.0, + 1339.0, + 884.0, + 1339.0, + 932.0, + 765.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1693.0, + 617.0, + 1693.0, + 617.0, + 1745.0, + 290.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1693.0, + 1410.0, + 1693.0, + 1410.0, + 1745.0, + 1258.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1730.0, + 617.0, + 1730.0, + 617.0, + 1771.0, + 293.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1730.0, + 916.0, + 1730.0, + 916.0, + 1771.0, + 702.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1730.0, + 1061.0, + 1730.0, + 1061.0, + 1771.0, + 936.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1771.0, + 1129.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1761.0, + 297.0, + 1761.0, + 297.0, + 1809.0, + 291.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1761.0, + 772.0, + 1761.0, + 772.0, + 1809.0, + 372.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1761.0, + 1400.0, + 1761.0, + 1400.0, + 1809.0, + 863.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 614.0, + 1381.0, + 614.0, + 1381.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 614.0, + 1408.0, + 614.0, + 1408.0, + 651.0, + 1398.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 642.0, + 871.0, + 642.0, + 871.0, + 684.0, + 290.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 642.0, + 1013.0, + 642.0, + 1013.0, + 684.0, + 887.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 642.0, + 1315.0, + 642.0, + 1315.0, + 684.0, + 1088.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 642.0, + 1409.0, + 642.0, + 1409.0, + 684.0, + 1402.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 678.0, + 428.0, + 678.0, + 428.0, + 718.0, + 291.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 678.0, + 817.0, + 678.0, + 817.0, + 718.0, + 505.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 678.0, + 1048.0, + 678.0, + 1048.0, + 718.0, + 907.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 678.0, + 1204.0, + 678.0, + 1204.0, + 718.0, + 1195.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 678.0, + 1333.0, + 678.0, + 1333.0, + 718.0, + 1325.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 678.0, + 1408.0, + 678.0, + 1408.0, + 718.0, + 1405.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 884.0, + 712.0, + 884.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1484.0, + 1406.0, + 1484.0, + 1406.0, + 1522.0, + 293.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1516.0, + 664.0, + 1516.0, + 664.0, + 1553.0, + 293.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1516.0, + 1260.0, + 1516.0, + 1260.0, + 1553.0, + 898.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1545.0, + 936.0, + 1545.0, + 936.0, + 1582.0, + 471.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1409.0, + 382.0, + 1409.0, + 423.0, + 293.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 413.0, + 297.0, + 413.0, + 297.0, + 454.0, + 294.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 413.0, + 1041.0, + 413.0, + 1041.0, + 454.0, + 524.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 413.0, + 1353.0, + 413.0, + 1353.0, + 454.0, + 1128.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 413.0, + 1409.0, + 413.0, + 1409.0, + 454.0, + 1372.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 446.0, + 393.0, + 446.0, + 393.0, + 482.0, + 293.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 446.0, + 1351.0, + 446.0, + 1351.0, + 482.0, + 460.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 753.0, + 862.0, + 753.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 894.0, + 751.0, + 894.0, + 751.0, + 927.0, + 295.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 752.0, + 919.0, + 752.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 948.0, + 296.0, + 948.0, + 296.0, + 995.0, + 292.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 948.0, + 754.0, + 948.0, + 754.0, + 995.0, + 713.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 297.0, + 983.0, + 297.0, + 1030.0, + 293.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 983.0, + 610.0, + 983.0, + 610.0, + 1030.0, + 422.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 983.0, + 753.0, + 983.0, + 753.0, + 1030.0, + 627.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1022.0, + 479.0, + 1022.0, + 479.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1022.0, + 752.0, + 1022.0, + 752.0, + 1055.0, + 671.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 752.0, + 1051.0, + 752.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1075.0, + 296.0, + 1075.0, + 296.0, + 1121.0, + 291.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1075.0, + 445.0, + 1075.0, + 445.0, + 1121.0, + 389.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1075.0, + 625.0, + 1075.0, + 625.0, + 1121.0, + 562.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1075.0, + 754.0, + 1075.0, + 754.0, + 1121.0, + 742.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 750.0, + 1116.0, + 750.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1145.0, + 753.0, + 1145.0, + 753.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 751.0, + 1177.0, + 751.0, + 1211.0, + 294.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 297.0, + 1203.0, + 297.0, + 1244.0, + 293.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1203.0, + 754.0, + 1203.0, + 754.0, + 1244.0, + 386.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1237.0, + 378.0, + 1237.0, + 378.0, + 1278.0, + 291.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1237.0, + 757.0, + 1237.0, + 757.0, + 1278.0, + 489.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 1406.0, + 1272.0, + 1406.0, + 1308.0, + 293.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1301.0, + 702.0, + 1301.0, + 702.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1301.0, + 840.0, + 1301.0, + 840.0, + 1337.0, + 779.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1337.0, + 933.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1332.0, + 1407.0, + 1332.0, + 1407.0, + 1369.0, + 291.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1364.0, + 1322.0, + 1364.0, + 1322.0, + 1400.0, + 295.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 257.0, + 1405.0, + 257.0, + 1405.0, + 293.0, + 295.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 288.0, + 422.0, + 288.0, + 422.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 288.0, + 1164.0, + 288.0, + 1164.0, + 324.0, + 698.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1869.0, + 1409.0, + 1869.0, + 1409.0, + 1904.0, + 295.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1897.0, + 368.0, + 1897.0, + 368.0, + 1934.0, + 295.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1897.0, + 1099.0, + 1897.0, + 1099.0, + 1934.0, + 443.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 929.0, + 935.0, + 929.0, + 935.0, + 974.0, + 780.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 929.0, + 1123.0, + 929.0, + 1123.0, + 974.0, + 1008.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 929.0, + 1238.0, + 929.0, + 1238.0, + 974.0, + 1227.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 965.0, + 858.0, + 965.0, + 858.0, + 1000.0, + 779.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 965.0, + 1129.0, + 965.0, + 1129.0, + 1000.0, + 1089.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 998.0, + 813.0, + 998.0, + 813.0, + 1031.0, + 780.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 992.0, + 896.0, + 992.0, + 896.0, + 1034.0, + 852.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 992.0, + 1016.0, + 992.0, + 1016.0, + 1034.0, + 1012.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1030.0, + 811.0, + 1030.0, + 811.0, + 1060.0, + 781.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1028.0, + 899.0, + 1028.0, + 899.0, + 1060.0, + 857.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1028.0, + 1159.0, + 1028.0, + 1159.0, + 1060.0, + 1120.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1062.0, + 812.0, + 1062.0, + 812.0, + 1096.0, + 780.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1054.0, + 978.0, + 1054.0, + 978.0, + 1103.0, + 893.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1054.0, + 1408.0, + 1054.0, + 1408.0, + 1103.0, + 1404.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1096.0, + 811.0, + 1096.0, + 811.0, + 1126.0, + 781.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1093.0, + 952.0, + 1093.0, + 952.0, + 1125.0, + 855.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1125.0, + 811.0, + 1125.0, + 811.0, + 1156.0, + 781.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1117.0, + 895.0, + 1117.0, + 895.0, + 1156.0, + 851.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1117.0, + 1052.0, + 1117.0, + 1052.0, + 1156.0, + 1045.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1154.0, + 813.0, + 1154.0, + 813.0, + 1187.0, + 779.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1145.0, + 939.0, + 1145.0, + 939.0, + 1192.0, + 851.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1182.0, + 911.0, + 1182.0, + 911.0, + 1218.0, + 776.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 545.0, + 1409.0, + 545.0, + 1409.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 576.0, + 529.0, + 576.0, + 529.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 576.0, + 659.0, + 576.0, + 659.0, + 612.0, + 549.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 576.0, + 1410.0, + 576.0, + 1410.0, + 612.0, + 734.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1261.0, + 1974.0, + 1261.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 884.0, + 1339.0, + 884.0, + 1339.0, + 932.0, + 765.0, + 932.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 788, + 1405, + 788, + 1405, + 913, + 297, + 913 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1373, + 1405, + 1373, + 1405, + 1475, + 296, + 1475 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 967, + 1404, + 967, + 1404, + 1076, + 297, + 1076 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1523, + 1404, + 1523, + 1404, + 1622, + 297, + 1622 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 391, + 751, + 391, + 751, + 545, + 297, + 545 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1709, + 1400, + 1709, + 1400, + 1803, + 298, + 1803 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 295, + 1631, + 1401, + 1631, + 1401, + 1697, + 295, + 1697 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 620, + 1889, + 1081, + 1889, + 1081, + 1967, + 620, + 1967 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 714, + 1403, + 714, + 1403, + 777, + 299, + 777 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 545, + 1405, + 545, + 1405, + 607, + 294, + 607 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 295, + 1808, + 1400, + 1808, + 1400, + 1878, + 295, + 1878 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 292, + 1301, + 1403, + 1301, + 1403, + 1363, + 292, + 1363 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 294, + 1087, + 1403, + 1087, + 1403, + 1152, + 294, + 1152 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 657, + 1481, + 1038, + 1481, + 1038, + 1519, + 657, + 1519 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 297, + 646, + 880, + 646, + 880, + 685, + 297, + 685 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 531, + 920, + 1163, + 920, + 1163, + 961, + 531, + 961 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 294, + 202, + 1402, + 202, + 1402, + 273, + 294, + 273 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 782, + 347, + 1414, + 347, + 1414, + 506, + 782, + 506 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 520, + 1161, + 1176, + 1161, + 1176, + 1202, + 520, + 1202 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 291, + 292, + 687, + 292, + 687, + 373, + 291, + 373 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 296, + 1976, + 1403, + 1976, + 1403, + 2009, + 296, + 2009 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 655, + 1254, + 1042, + 1254, + 1042, + 1296, + 655, + 1296 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1483, + 1400, + 1483, + 1400, + 1513, + 1352, + 1513 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1166, + 1400, + 1166, + 1400, + 1196, + 1351, + 1196 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1258, + 1400, + 1258, + 1400, + 1289, + 1352, + 1289 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1913, + 1400, + 1913, + 1400, + 1942, + 1356, + 1942 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 923, + 1400, + 923, + 1400, + 953, + 1351, + 953 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 293, + 1208, + 1277, + 1208, + 1277, + 1248, + 293, + 1248 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.826 + }, + { + "category_id": 9, + "poly": [ + 719, + 320, + 761, + 320, + 761, + 345, + 719, + 345 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 769, + 301, + 1398, + 301, + 1398, + 336, + 769, + 336 + ], + "score": 0.456 + }, + { + "category_id": 0, + "poly": [ + 769, + 301, + 1398, + 301, + 1398, + 336, + 769, + 336 + ], + "score": 0.436 + }, + { + "category_id": 13, + "poly": [ + 404, + 1039, + 583, + 1039, + 583, + 1077, + 404, + 1077 + ], + "score": 0.94, + "latex": "V _ { \\pi _ { \\theta } } ( s ) \\approx \\hat { V } _ { y } ( s )" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1374, + 1268, + 1374, + 1268, + 1410, + 1015, + 1410 + ], + "score": 0.93, + "latex": "F ( \\theta ) : = \\mathbb { E } _ { s \\sim \\eta } [ V _ { \\pi _ { \\theta } } ( s ) ]" + }, + { + "category_id": 14, + "poly": [ + 289, + 289, + 690, + 289, + 690, + 376, + 289, + 376 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left\\| \\nabla F ( x ^ { k } ) \\right\\| ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) ." + }, + { + "category_id": 13, + "poly": [ + 851, + 789, + 1100, + 789, + 1100, + 824, + 851, + 824 + ], + "score": 0.93, + "latex": "\\mathcal { M } = \\{ { \\cal S } , \\mathcal { A } , \\mathcal { P } , { \\cal R } , \\gamma \\}" + }, + { + "category_id": 14, + "poly": [ + 620, + 1886, + 1080, + 1886, + 1080, + 1971, + 620, + 1971 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\| \\nabla F ( \\theta _ { k } ) \\| ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { 1 } { \\sqrt { K } } \\right) + \\epsilon _ { \\mathrm { a p p } }" + }, + { + "category_id": 13, + "poly": [ + 976, + 851, + 1071, + 851, + 1071, + 883, + 976, + 883 + ], + "score": 0.93, + "latex": "( s , a , s ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 838, + 881, + 917, + 881, + 917, + 915, + 838, + 915 + ], + "score": 0.93, + "latex": "V _ { \\pi _ { \\theta } } ( s )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1589, + 465, + 1589, + 465, + 1626, + 298, + 1626 + ], + "score": 0.93, + "latex": "\\pi _ { \\boldsymbol { \\theta } _ { k } } , s _ { k + 1 } ^ { \\prime } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 543, + 1185, + 543, + 1185, + 578, + 1097, + 578 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 4 } )" + }, + { + "category_id": 13, + "poly": [ + 610, + 232, + 905, + 232, + 905, + 275, + 610, + 275 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { T ^ { } = 1 , \\alpha = 1 , \\eta = \\frac { 1 } { L _ { y x } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 548, + 820, + 661, + 820, + 661, + 853, + 548, + 853 + ], + "score": 0.92, + "latex": "\\mathcal { P } ( s ^ { \\prime } | s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1000, + 612, + 1000, + 612, + 1040, + 297, + 1040 + ], + "score": 0.92, + "latex": "V _ { \\pi _ { \\boldsymbol { \\theta } } } ( s ) \\approx \\hat { V } _ { y } ( s ) : = \\boldsymbol { \\phi } ( s ) ^ { \\top } \\boldsymbol { y }" + }, + { + "category_id": 13, + "poly": [ + 325, + 512, + 412, + 512, + 412, + 547, + 325, + 547 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 327, + 1119, + 553, + 1119, + 553, + 1152, + 327, + 1152 + ], + "score": 0.92, + "latex": "\\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1133, + 851, + 1249, + 851, + 1249, + 883, + 1133, + 883 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 514, + 852, + 632, + 852, + 632, + 883, + 514, + 883 + ], + "score": 0.92, + "latex": "R ( s , a , s ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 671, + 967, + 860, + 967, + 860, + 1002, + 671, + 1002 + ], + "score": 0.92, + "latex": "\\phi ( \\cdot ) : \\mathcal { S } \\mathbb { R } ^ { d _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1209, + 923, + 1209, + 923, + 1248, + 548, + 1248 + ], + "score": 0.91, + "latex": "h _ { g } ( \\xi _ { k } , y _ { k } ) : = \\hat { \\delta } ( \\xi _ { k } , y _ { k } ) \\nabla \\hat { V } _ { y _ { k } } ( s _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 903, + 1837, + 1113, + 1837, + 1113, + 1881, + 903, + 1881 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\beta _ { k } = \\beta = \\mathcal { O } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 699, + 1004, + 796, + 1004, + 796, + 1037, + 699, + 1037 + ], + "score": 0.91, + "latex": "\\boldsymbol { y } \\in \\mathbb { R } ^ { d _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 625, + 1524, + 919, + 1524, + 919, + 1558, + 625, + 1558 + ], + "score": 0.91, + "latex": "\\psi _ { \\boldsymbol \\theta } ( s , a ) : = \\nabla \\log \\pi _ { \\boldsymbol \\theta } ( a | s )" + }, + { + "category_id": 13, + "poly": [ + 705, + 1302, + 757, + 1302, + 757, + 1336, + 705, + 1336 + ], + "score": 0.91, + "latex": "\\Pi _ { R _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 822, + 1353, + 822, + 1353, + 849, + 1283, + 849 + ], + "score": 0.9, + "latex": "s \\in S" + }, + { + "category_id": 14, + "poly": [ + 655, + 1254, + 1041, + 1254, + 1041, + 1296, + 655, + 1296 + ], + "score": 0.9, + "latex": "y _ { k + 1 } = \\Pi _ { R _ { y } } \\big ( y _ { k } + \\beta _ { k } h _ { g } ( \\xi _ { k } , y _ { k } ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 526, + 1590, + 565, + 1590, + 565, + 1622, + 526, + 1622 + ], + "score": 0.9, + "latex": "d _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 1074, + 821, + 1152, + 821, + 1152, + 849, + 1074, + 849 + ], + "score": 0.9, + "latex": "s ^ { \\prime } \\in \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 530, + 1332, + 567, + 1332, + 567, + 1365, + 530, + 1365 + ], + "score": 0.9, + "latex": "R _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1523, + 1403, + 1523, + 1403, + 1559, + 1175, + 1559 + ], + "score": 0.9, + "latex": "\\xi _ { k } ^ { \\prime } : = ( s _ { k } ^ { \\prime } , a _ { k } ^ { \\prime } , s _ { k + 1 } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 669, + 1436, + 1002, + 1436, + 1002, + 1476, + 669, + 1476 + ], + "score": 0.9, + "latex": "h _ { f } ( \\xi , \\theta , y ) : = \\hat { \\delta } ( \\xi , \\bar { y ) \\psi } _ { \\theta } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 937, + 442, + 1415, + 442, + 1415, + 476, + 937, + 476 + ], + "score": 0.9, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) \\nabla h ( x ^ { k } ; \\phi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1124, + 349, + 1226, + 349, + 1226, + 383, + 1124, + 383 + ], + "score": 0.89, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 375, + 851, + 452, + 851, + 452, + 880, + 375, + 880 + ], + "score": 0.89, + "latex": "a \\in { \\mathcal { A } }" + }, + { + "category_id": 13, + "poly": [ + 677, + 1838, + 890, + 1838, + 890, + 1881, + 677, + 1881 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\alpha _ { k } = \\alpha = \\overset { \\cdot } { \\mathcal { O } } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 975, + 1558, + 1005, + 1558, + 1005, + 1592, + 975, + 1592 + ], + "score": 0.89, + "latex": "\\xi _ { k } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1560, + 1404, + 1560, + 1404, + 1592, + 1210, + 1592 + ], + "score": 0.89, + "latex": "s _ { k } ^ { \\prime } \\sim d _ { \\theta _ { k } } , a _ { k } ^ { \\prime } \\sim" + }, + { + "category_id": 14, + "poly": [ + 658, + 1481, + 1036, + 1481, + 1036, + 1518, + 658, + 1518 + ], + "score": 0.89, + "latex": "\\theta _ { k + 1 } = \\theta _ { k } + \\alpha _ { k } h _ { f } ( \\xi _ { k } ^ { \\prime } , \\theta _ { k } , y _ { k + 1 } ) ," + }, + { + "category_id": 13, + "poly": [ + 374, + 1302, + 406, + 1302, + 406, + 1332, + 374, + 1332 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 14, + "poly": [ + 524, + 1159, + 1176, + 1159, + 1176, + 1200, + 524, + 1200 + ], + "score": 0.88, + "latex": "\\hat { \\delta } ( \\xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \\gamma \\phi ( s _ { k + 1 } ) ^ { \\top } y _ { k } - \\phi ( s _ { k } ) ^ { \\top } y _ { k }" + }, + { + "category_id": 14, + "poly": [ + 535, + 920, + 1163, + 920, + 1163, + 959, + 535, + 959 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { V _ { \\pi _ { \\theta } } ( s ) = \\mathbb { E } _ { a \\sim \\pi _ { \\theta } ( . | s ) , s ^ { \\prime } \\sim \\mathcal { P } ( \\cdot | s , a ) } \\left[ r ( s , a , s ^ { \\prime } ) + \\gamma V _ { \\pi _ { \\theta } } ( s ^ { \\prime } ) \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 422, + 358, + 422, + 358, + 456, + 298, + 456 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 687, + 1560, + 718, + 1560, + 718, + 1591, + 687, + 1591 + ], + "score": 0.87, + "latex": "\\xi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1592, + 1247, + 1592, + 1247, + 1619, + 1218, + 1619 + ], + "score": 0.86, + "latex": "\\theta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1979, + 419, + 1979, + 419, + 2010, + 369, + 2010 + ], + "score": 0.86, + "latex": "\\epsilon _ { \\mathrm { a p p } }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1090, + 1081, + 1090, + 1081, + 1119, + 1051, + 1119 + ], + "score": 0.86, + "latex": "\\theta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1529, + 407, + 1529, + 407, + 1555, + 373, + 1555 + ], + "score": 0.86, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 515, + 887, + 545, + 887, + 545, + 912, + 515, + 912 + ], + "score": 0.85, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1093, + 1157, + 1093, + 1157, + 1121, + 1115, + 1121 + ], + "score": 0.84, + "latex": "\\mu _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 940, + 408, + 1320, + 408, + 1320, + 442, + 940, + 442 + ], + "score": 0.84, + "latex": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) )" + }, + { + "category_id": 13, + "poly": [ + 936, + 347, + 1007, + 347, + 1007, + 381, + 936, + 381 + ], + "score": 0.84, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1184, + 792, + 1207, + 792, + 1207, + 818, + 1184, + 818 + ], + "score": 0.82, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1220, + 1234, + 1220, + 1234, + 1246, + 1216, + 1246 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1381, + 1375, + 1381, + 1375, + 1408, + 1356, + 1408 + ], + "score": 0.81, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 298, + 822, + 323, + 822, + 323, + 848, + 298, + 848 + ], + "score": 0.8, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 784, + 1374, + 953, + 1374, + 953, + 1409, + 784, + 1409 + ], + "score": 0.75, + "latex": "{ \\mathrm { m a x } } _ { \\theta \\in \\mathbb { R } ^ { d } } F ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 859, + 381, + 1090, + 381, + 1090, + 410, + 859, + 410 + ], + "score": 0.74, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1012, + 1402, + 1012, + 1402, + 1037, + 1383, + 1037 + ], + "score": 0.74, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 826, + 1123, + 1161, + 1123, + 1161, + 1152, + 826, + 1152 + ], + "score": 0.72, + "latex": "s _ { k } \\sim \\mu _ { \\theta _ { k } } , a \\sim \\pi _ { \\theta _ { k } } , s _ { k + 1 } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 484, + 490, + 499, + 490, + 499, + 511, + 484, + 511 + ], + "score": 0.62, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1122, + 1160, + 1122, + 1160, + 1152, + 1044, + 1152 + ], + "score": 0.54, + "latex": "s _ { k + 1 } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1090, + 1267, + 1090, + 1267, + 1116, + 1250, + 1116 + ], + "score": 0.53, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 892, + 1374, + 952, + 1374, + 952, + 1409, + 892, + 1409 + ], + "score": 0.49, + "latex": "F ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 439, + 238, + 454, + 238, + 454, + 260, + 439, + 260 + ], + "score": 0.28, + "latex": "I" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 644.0, + 883.0, + 644.0, + 883.0, + 688.0, + 292.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 294.0, + 1398.0, + 294.0, + 1398.0, + 345.0, + 767.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 850.0, + 786.0, + 850.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 786.0, + 1183.0, + 786.0, + 1183.0, + 826.0, + 1101.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 786.0, + 1408.0, + 786.0, + 1408.0, + 826.0, + 1208.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 819.0, + 297.0, + 819.0, + 297.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 819.0, + 547.0, + 819.0, + 547.0, + 854.0, + 324.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 819.0, + 1073.0, + 819.0, + 1073.0, + 854.0, + 662.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 819.0, + 1282.0, + 819.0, + 1282.0, + 854.0, + 1153.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 819.0, + 1406.0, + 819.0, + 1406.0, + 854.0, + 1354.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 374.0, + 852.0, + 374.0, + 884.0, + 295.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 852.0, + 513.0, + 852.0, + 513.0, + 884.0, + 453.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 852.0, + 975.0, + 852.0, + 975.0, + 884.0, + 633.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 852.0, + 1132.0, + 852.0, + 1132.0, + 884.0, + 1072.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 884.0, + 1250.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 514.0, + 882.0, + 514.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 882.0, + 837.0, + 882.0, + 837.0, + 915.0, + 546.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 882.0, + 1361.0, + 882.0, + 1361.0, + 915.0, + 918.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1370.0, + 783.0, + 1370.0, + 783.0, + 1415.0, + 291.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1370.0, + 1014.0, + 1370.0, + 1014.0, + 1415.0, + 954.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1370.0, + 1355.0, + 1370.0, + 1355.0, + 1415.0, + 1269.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1415.0, + 1376.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1405.0, + 1404.0, + 1405.0, + 1444.0, + 293.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 668.0, + 1437.0, + 668.0, + 1481.0, + 293.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1437.0, + 1349.0, + 1437.0, + 1349.0, + 1481.0, + 1003.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 670.0, + 961.0, + 670.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 961.0, + 1408.0, + 961.0, + 1408.0, + 1008.0, + 861.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1002.0, + 698.0, + 1002.0, + 698.0, + 1042.0, + 613.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1002.0, + 1382.0, + 1002.0, + 1382.0, + 1042.0, + 797.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1042.0, + 1403.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 403.0, + 1038.0, + 403.0, + 1079.0, + 295.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1038.0, + 1053.0, + 1038.0, + 1053.0, + 1079.0, + 584.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1514.0, + 372.0, + 1514.0, + 372.0, + 1566.0, + 290.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1514.0, + 624.0, + 1514.0, + 624.0, + 1566.0, + 408.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1514.0, + 1174.0, + 1514.0, + 1174.0, + 1566.0, + 920.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1514.0, + 1408.0, + 1514.0, + 1408.0, + 1566.0, + 1404.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 686.0, + 1554.0, + 686.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1554.0, + 974.0, + 1554.0, + 974.0, + 1596.0, + 719.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1554.0, + 1209.0, + 1554.0, + 1209.0, + 1596.0, + 1006.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 297.0, + 1586.0, + 297.0, + 1626.0, + 291.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1586.0, + 525.0, + 1586.0, + 525.0, + 1626.0, + 466.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1586.0, + 1217.0, + 1586.0, + 1217.0, + 1626.0, + 566.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1586.0, + 1262.0, + 1586.0, + 1262.0, + 1626.0, + 1248.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 389.0, + 750.0, + 389.0, + 750.0, + 426.0, + 295.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 420.0, + 753.0, + 420.0, + 753.0, + 458.0, + 359.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 453.0, + 753.0, + 453.0, + 753.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 483.0, + 482.0, + 483.0, + 518.0, + 294.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 482.0, + 751.0, + 482.0, + 751.0, + 518.0, + 500.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 513.0, + 324.0, + 513.0, + 324.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 513.0, + 749.0, + 513.0, + 749.0, + 547.0, + 413.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 1404.0, + 1709.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1769.0, + 943.0, + 1769.0, + 943.0, + 1806.0, + 293.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1671.0, + 293.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1664.0, + 1030.0, + 1664.0, + 1030.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 1408.0, + 743.0, + 1408.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 543.0, + 1096.0, + 543.0, + 1096.0, + 579.0, + 294.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 543.0, + 1405.0, + 543.0, + 1405.0, + 579.0, + 1186.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 1304.0, + 575.0, + 1304.0, + 610.0, + 294.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1807.0, + 1404.0, + 1807.0, + 1404.0, + 1844.0, + 296.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1831.0, + 676.0, + 1831.0, + 676.0, + 1884.0, + 290.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1831.0, + 902.0, + 1831.0, + 902.0, + 1884.0, + 891.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1831.0, + 1218.0, + 1831.0, + 1218.0, + 1884.0, + 1114.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 373.0, + 1299.0, + 373.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1299.0, + 704.0, + 1299.0, + 704.0, + 1335.0, + 407.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1335.0, + 758.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 529.0, + 1330.0, + 529.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1330.0, + 1120.0, + 1330.0, + 1120.0, + 1366.0, + 568.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1050.0, + 1085.0, + 1050.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1085.0, + 1114.0, + 1085.0, + 1114.0, + 1123.0, + 1082.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1085.0, + 1249.0, + 1085.0, + 1249.0, + 1123.0, + 1158.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1123.0, + 1268.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1116.0, + 326.0, + 1116.0, + 326.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1116.0, + 825.0, + 1116.0, + 825.0, + 1154.0, + 554.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1116.0, + 1347.0, + 1116.0, + 1347.0, + 1154.0, + 1162.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 201.0, + 1405.0, + 201.0, + 1405.0, + 239.0, + 296.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 438.0, + 231.0, + 438.0, + 271.0, + 293.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 231.0, + 609.0, + 231.0, + 609.0, + 271.0, + 455.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 232.0, + 1402.0, + 232.0, + 1402.0, + 270.0, + 906.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 341.0, + 935.0, + 341.0, + 935.0, + 386.0, + 780.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 341.0, + 1123.0, + 341.0, + 1123.0, + 386.0, + 1008.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 341.0, + 1237.0, + 341.0, + 1237.0, + 386.0, + 1227.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 377.0, + 858.0, + 377.0, + 858.0, + 412.0, + 780.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 377.0, + 1131.0, + 377.0, + 1131.0, + 412.0, + 1091.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 409.0, + 815.0, + 409.0, + 815.0, + 442.0, + 780.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 402.0, + 939.0, + 402.0, + 939.0, + 445.0, + 851.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 402.0, + 1324.0, + 402.0, + 1324.0, + 445.0, + 1321.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 442.0, + 817.0, + 442.0, + 817.0, + 474.0, + 780.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 435.0, + 936.0, + 435.0, + 936.0, + 479.0, + 851.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 472.0, + 912.0, + 472.0, + 912.0, + 505.0, + 778.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 368.0, + 1972.0, + 368.0, + 2015.0, + 296.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1972.0, + 1409.0, + 1972.0, + 1409.0, + 2015.0, + 420.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 547.0, + 1205.0, + 547.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1205.0, + 1215.0, + 1205.0, + 1215.0, + 1254.0, + 924.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1205.0, + 1282.0, + 1205.0, + 1282.0, + 1254.0, + 1235.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 294.0, + 1398.0, + 294.0, + 1398.0, + 345.0, + 767.0, + 345.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 202, + 1405, + 202, + 1405, + 482, + 297, + 482 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1372, + 1404, + 1372, + 1404, + 1618, + 297, + 1618 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1630, + 1403, + 1630, + 1403, + 1846, + 298, + 1846 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 800, + 739, + 1392, + 739, + 1392, + 938, + 800, + 938 + ], + "score": 0.98, + "html": "
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1026, + 1406, + 1026, + 1406, + 1274, + 297, + 1274 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 581, + 1405, + 581, + 1405, + 705, + 298, + 705 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 717, + 772, + 717, + 772, + 900, + 298, + 900 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1944, + 1400, + 1944, + 1400, + 2007, + 300, + 2007 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 300, + 513, + 711, + 513, + 711, + 552, + 300, + 552 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 300, + 1878, + 576, + 1878, + 576, + 1915, + 300, + 1915 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 298, + 1306, + 523, + 1306, + 523, + 1343, + 298, + 1343 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 298, + 910, + 722, + 910, + 722, + 984, + 298, + 984 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 302, + 997, + 767, + 997, + 767, + 1026, + 302, + 1026 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 837, + 2062, + 865, + 2062, + 865, + 2085, + 837, + 2085 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 790, + 952, + 1400, + 952, + 1400, + 1017, + 790, + 1017 + ], + "score": 0.501 + }, + { + "category_id": 7, + "poly": [ + 790, + 952, + 1400, + 952, + 1400, + 1017, + 790, + 1017 + ], + "score": 0.41 + }, + { + "category_id": 13, + "poly": [ + 783, + 1208, + 896, + 1208, + 896, + 1245, + 783, + 1245 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 735, + 1494, + 823, + 1494, + 823, + 1528, + 735, + 1528 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 232, + 1351, + 232, + 1351, + 267, + 1264, + 267 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 409, + 296, + 580, + 296, + 580, + 331, + 409, + 331 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } \\log \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 568, + 389, + 632, + 389, + 632, + 422, + 568, + 422 + ], + "score": 0.92, + "latex": "y ^ { * } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 951, + 1320, + 951, + 1320, + 989, + 1053, + 989 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } { { \\ln ( \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ) } \\quad } & { { } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 348, + 1025, + 617, + 1025, + 617, + 1060, + 348, + 1060 + ], + "score": 0.9, + "latex": "\\{ 1 0 ^ { - 3 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \\}" + }, + { + "category_id": 13, + "poly": [ + 1066, + 298, + 1153, + 298, + 1153, + 331, + 1066, + 331 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1036, + 264, + 1146, + 264, + 1146, + 299, + 1036, + 299 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 876, + 1118, + 1000, + 1118, + 1000, + 1147, + 876, + 1147 + ], + "score": 0.89, + "latex": "K = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 357, + 780, + 433, + 780, + 433, + 810, + 357, + 810 + ], + "score": 0.89, + "latex": "\\alpha _ { k } , \\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 659, + 715, + 729, + 715, + 729, + 749, + 659, + 749 + ], + "score": 0.88, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 551, + 910, + 704, + 910, + 704, + 946, + 551, + 946 + ], + "score": 0.88, + "latex": "\\beta _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 560, + 947, + 714, + 947, + 714, + 982, + 560, + 982 + ], + "score": 0.86, + "latex": "\\beta _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 395, + 947, + 550, + 947, + 550, + 982, + 395, + 982 + ], + "score": 0.83, + "latex": "\\alpha _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 385, + 910, + 540, + 910, + 540, + 946, + 385, + 946 + ], + "score": 0.83, + "latex": "\\alpha _ { k } = c k ^ { - 3 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 424, + 1341, + 424, + 1341, + 451, + 1309, + 451 + ], + "score": 0.83, + "latex": "\\mu _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1119, + 815, + 1119, + 815, + 1146, + 795, + 1146 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 441, + 1003, + 457, + 1003, + 457, + 1023, + 441, + 1023 + ], + "score": 0.76, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 397, + 876, + 412, + 876, + 412, + 897, + 397, + 897 + ], + "score": 0.67, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1471, + 1222, + 1471, + 1222, + 1492, + 1206, + 1492 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 864, + 743, + 882, + 743, + 882, + 768, + 864, + 768 + ], + "score": 0.47, + "latex": "\\overline { { k } }" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 509.0, + 716.0, + 509.0, + 716.0, + 563.0, + 289.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1873.0, + 579.0, + 1873.0, + 579.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1302.0, + 528.0, + 1302.0, + 528.0, + 1350.0, + 291.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 938.0, + 1052.0, + 938.0, + 1052.0, + 1003.0, + 780.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 938.0, + 1413.0, + 938.0, + 1413.0, + 1003.0, + 1321.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 982.0, + 1359.0, + 982.0, + 1359.0, + 1019.0, + 789.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 236.0, + 296.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 1263.0, + 231.0, + 1263.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 268.0, + 1352.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1035.0, + 260.0, + 1035.0, + 305.0, + 292.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 260.0, + 1407.0, + 260.0, + 1407.0, + 305.0, + 1147.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 408.0, + 292.0, + 408.0, + 337.0, + 292.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 292.0, + 1065.0, + 292.0, + 1065.0, + 337.0, + 581.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 292.0, + 1410.0, + 292.0, + 1410.0, + 337.0, + 1154.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 326.0, + 1407.0, + 326.0, + 1407.0, + 364.0, + 294.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 358.0, + 1402.0, + 358.0, + 1402.0, + 391.0, + 296.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 386.0, + 567.0, + 386.0, + 567.0, + 425.0, + 294.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 386.0, + 1405.0, + 386.0, + 1405.0, + 425.0, + 633.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 1308.0, + 419.0, + 1308.0, + 455.0, + 295.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 455.0, + 1342.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 1371.0, + 449.0, + 1371.0, + 486.0, + 294.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1431.0, + 1405.0, + 1431.0, + 1405.0, + 1472.0, + 291.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1463.0, + 1205.0, + 1463.0, + 1205.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1463.0, + 1405.0, + 1463.0, + 1405.0, + 1500.0, + 1223.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 734.0, + 1495.0, + 734.0, + 1529.0, + 295.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1529.0, + 824.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1585.0, + 1361.0, + 1585.0, + 1361.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1633.0, + 1404.0, + 1633.0, + 1404.0, + 1664.0, + 296.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1663.0, + 1405.0, + 1663.0, + 1405.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1690.0, + 1407.0, + 1690.0, + 1407.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1719.0, + 1407.0, + 1719.0, + 1407.0, + 1760.0, + 291.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1405.0, + 1784.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1813.0, + 1242.0, + 1813.0, + 1242.0, + 1849.0, + 294.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1022.0, + 347.0, + 1022.0, + 347.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1022.0, + 1408.0, + 1022.0, + 1408.0, + 1063.0, + 618.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1055.0, + 1406.0, + 1055.0, + 1406.0, + 1093.0, + 291.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1087.0, + 1408.0, + 1087.0, + 1408.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 794.0, + 1117.0, + 794.0, + 1151.0, + 295.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1117.0, + 875.0, + 1117.0, + 875.0, + 1151.0, + 816.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1117.0, + 1404.0, + 1117.0, + 1404.0, + 1151.0, + 1001.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1149.0, + 1406.0, + 1149.0, + 1406.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1407.0, + 1178.0, + 1407.0, + 1215.0, + 294.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 782.0, + 1208.0, + 782.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1208.0, + 1407.0, + 1208.0, + 1407.0, + 1245.0, + 897.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1364.0, + 1243.0, + 1364.0, + 1274.0, + 294.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1407.0, + 582.0, + 1407.0, + 615.0, + 295.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 646.0, + 292.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 672.0, + 1299.0, + 672.0, + 1299.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 658.0, + 713.0, + 658.0, + 750.0, + 295.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 713.0, + 773.0, + 713.0, + 773.0, + 750.0, + 730.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 774.0, + 744.0, + 774.0, + 783.0, + 294.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 356.0, + 778.0, + 356.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 778.0, + 775.0, + 778.0, + 775.0, + 811.0, + 434.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 771.0, + 807.0, + 771.0, + 840.0, + 295.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 771.0, + 839.0, + 771.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 396.0, + 870.0, + 396.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 870.0, + 497.0, + 870.0, + 497.0, + 900.0, + 413.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 991.0, + 440.0, + 991.0, + 440.0, + 1034.0, + 296.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 991.0, + 772.0, + 991.0, + 772.0, + 1034.0, + 458.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 938.0, + 1052.0, + 938.0, + 1052.0, + 1003.0, + 780.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 938.0, + 1413.0, + 938.0, + 1413.0, + 1003.0, + 1321.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 982.0, + 1359.0, + 982.0, + 1359.0, + 1019.0, + 789.0, + 1019.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 202, + 1402, + 202, + 1402, + 266, + 298, + 266 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 298, + 310, + 455, + 310, + 455, + 345, + 298, + 345 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 297, + 310, + 1411, + 310, + 1411, + 2020, + 297, + 2020 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.785 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.19 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 307.0, + 460.0, + 307.0, + 460.0, + 350.0, + 295.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 199.0, + 1404.0, + 199.0, + 1404.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 917.0, + 231.0, + 917.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 464.0, + 305.0, + 464.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 362.0, + 1408.0, + 362.0, + 1408.0, + 403.0, + 306.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 394.0, + 909.0, + 394.0, + 909.0, + 435.0, + 351.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 449.0, + 1406.0, + 449.0, + 1406.0, + 490.0, + 308.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 479.0, + 1402.0, + 479.0, + 1402.0, + 520.0, + 351.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 533.0, + 1408.0, + 533.0, + 1408.0, + 575.0, + 308.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 565.0, + 1410.0, + 565.0, + 1410.0, + 607.0, + 353.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 597.0, + 755.0, + 597.0, + 755.0, + 633.0, + 355.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 646.0, + 1410.0, + 646.0, + 1410.0, + 692.0, + 304.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 679.0, + 989.0, + 679.0, + 989.0, + 724.0, + 351.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 735.0, + 1408.0, + 735.0, + 1408.0, + 777.0, + 308.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 765.0, + 1311.0, + 765.0, + 1311.0, + 807.0, + 347.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 820.0, + 1114.0, + 820.0, + 1114.0, + 860.0, + 306.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 877.0, + 1408.0, + 877.0, + 1408.0, + 918.0, + 308.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 905.0, + 1412.0, + 905.0, + 1412.0, + 950.0, + 349.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 937.0, + 540.0, + 937.0, + 540.0, + 974.0, + 349.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 990.0, + 1408.0, + 990.0, + 1408.0, + 1035.0, + 304.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1024.0, + 1410.0, + 1024.0, + 1410.0, + 1065.0, + 353.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1050.0, + 712.0, + 1050.0, + 712.0, + 1093.0, + 353.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1108.0, + 1408.0, + 1108.0, + 1408.0, + 1150.0, + 308.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1139.0, + 1410.0, + 1139.0, + 1410.0, + 1180.0, + 351.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1169.0, + 429.0, + 1169.0, + 429.0, + 1206.0, + 353.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1257.0, + 1123.0, + 1257.0, + 1123.0, + 1293.0, + 355.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1408.0, + 1308.0, + 1408.0, + 1350.0, + 294.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1340.0, + 1408.0, + 1340.0, + 1408.0, + 1382.0, + 353.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1371.0, + 1084.0, + 1371.0, + 1084.0, + 1412.0, + 349.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 1408.0, + 1425.0, + 1408.0, + 1465.0, + 292.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1459.0, + 1408.0, + 1459.0, + 1408.0, + 1495.0, + 355.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1487.0, + 723.0, + 1487.0, + 723.0, + 1527.0, + 351.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 1404.0, + 1542.0, + 1404.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1567.0, + 1412.0, + 1567.0, + 1412.0, + 1618.0, + 348.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1604.0, + 494.0, + 1604.0, + 494.0, + 1640.0, + 355.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1408.0, + 1657.0, + 1408.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1685.0, + 1410.0, + 1685.0, + 1410.0, + 1731.0, + 351.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1719.0, + 596.0, + 1719.0, + 596.0, + 1755.0, + 355.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1770.0, + 1408.0, + 1770.0, + 1408.0, + 1815.0, + 291.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1804.0, + 1049.0, + 1804.0, + 1049.0, + 1846.0, + 353.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1889.0, + 675.0, + 1889.0, + 675.0, + 1926.0, + 349.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1408.0, + 1944.0, + 1408.0, + 1985.0, + 293.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1974.0, + 1176.0, + 1974.0, + 1176.0, + 2013.0, + 349.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 292, + 175, + 1410, + 175, + 1410, + 2019, + 292, + 2019 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2087, + 836, + 2087 + ], + "score": 0.831 + }, + { + "category_id": 13, + "poly": [ + 412, + 1254, + 513, + 1254, + 513, + 1289, + 412, + 1289 + ], + "score": 0.92, + "latex": "O ( 1 / k ^ { 2 } )" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 869.0, + 2057.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 200.0, + 1410.0, + 200.0, + 1410.0, + 242.0, + 290.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 234.0, + 1408.0, + 234.0, + 1408.0, + 273.0, + 350.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 261.0, + 430.0, + 261.0, + 430.0, + 303.0, + 352.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 356.0, + 296.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 350.0, + 742.0, + 350.0, + 742.0, + 384.0, + 348.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1302.0, + 402.0, + 1302.0, + 441.0, + 294.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 457.0, + 1410.0, + 457.0, + 1410.0, + 496.0, + 296.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 487.0, + 1095.0, + 487.0, + 1095.0, + 526.0, + 352.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 538.0, + 1408.0, + 538.0, + 1408.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 573.0, + 1408.0, + 573.0, + 1408.0, + 611.0, + 352.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 603.0, + 538.0, + 603.0, + 538.0, + 637.0, + 350.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 656.0, + 1406.0, + 656.0, + 1406.0, + 694.0, + 296.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 688.0, + 1308.0, + 688.0, + 1308.0, + 726.0, + 352.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 739.0, + 1408.0, + 739.0, + 1408.0, + 779.0, + 290.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 769.0, + 1404.0, + 769.0, + 1404.0, + 807.0, + 354.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 801.0, + 969.0, + 801.0, + 969.0, + 840.0, + 352.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 856.0, + 1408.0, + 856.0, + 1408.0, + 895.0, + 296.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 882.0, + 1410.0, + 882.0, + 1410.0, + 929.0, + 350.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 917.0, + 701.0, + 917.0, + 701.0, + 953.0, + 352.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1010.0, + 296.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1000.0, + 1033.0, + 1000.0, + 1033.0, + 1040.0, + 350.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1089.0, + 695.0, + 1089.0, + 695.0, + 1121.0, + 354.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1137.0, + 1410.0, + 1137.0, + 1410.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1170.0, + 1272.0, + 1170.0, + 1272.0, + 1208.0, + 350.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1263.0, + 296.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1255.0, + 411.0, + 1255.0, + 411.0, + 1293.0, + 352.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1255.0, + 1410.0, + 1255.0, + 1410.0, + 1293.0, + 514.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1283.0, + 432.0, + 1283.0, + 432.0, + 1324.0, + 352.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1340.0, + 1408.0, + 1340.0, + 1408.0, + 1378.0, + 296.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1368.0, + 1404.0, + 1368.0, + 1404.0, + 1407.0, + 354.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1401.0, + 1095.0, + 1401.0, + 1095.0, + 1439.0, + 352.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1486.0, + 1408.0, + 1486.0, + 1408.0, + 1524.0, + 354.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1518.0, + 739.0, + 1518.0, + 739.0, + 1551.0, + 354.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1567.0, + 1410.0, + 1567.0, + 1410.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1603.0, + 1408.0, + 1603.0, + 1408.0, + 1636.0, + 354.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1632.0, + 428.0, + 1632.0, + 428.0, + 1666.0, + 354.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1723.0, + 296.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1713.0, + 1410.0, + 1713.0, + 1410.0, + 1757.0, + 352.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1747.0, + 571.0, + 1747.0, + 571.0, + 1779.0, + 358.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 1410.0, + 1796.0, + 1410.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1830.0, + 1408.0, + 1830.0, + 1408.0, + 1869.0, + 354.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1860.0, + 763.0, + 1860.0, + 763.0, + 1899.0, + 354.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1408.0, + 1913.0, + 1408.0, + 1952.0, + 296.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1939.0, + 1412.0, + 1939.0, + 1412.0, + 1988.0, + 348.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1974.0, + 577.0, + 1974.0, + 577.0, + 2010.0, + 354.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 199, + 1412, + 199, + 1412, + 2011, + 294, + 2011 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 865, + 2060, + 865, + 2087, + 835, + 2087 + ], + "score": 0.834 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1408.0, + 203.0, + 1408.0, + 241.0, + 296.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 273.0, + 352.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 263.0, + 430.0, + 263.0, + 430.0, + 302.0, + 352.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 314.0, + 1406.0, + 314.0, + 1406.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 346.0, + 1095.0, + 346.0, + 1095.0, + 384.0, + 352.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 1408.0, + 392.0, + 1408.0, + 438.0, + 292.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 430.0, + 1238.0, + 430.0, + 1238.0, + 462.0, + 354.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 476.0, + 1410.0, + 476.0, + 1410.0, + 517.0, + 292.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 508.0, + 1053.0, + 508.0, + 1053.0, + 547.0, + 348.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 559.0, + 1406.0, + 559.0, + 1406.0, + 597.0, + 296.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 587.0, + 1412.0, + 587.0, + 1412.0, + 629.0, + 350.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1406.0, + 641.0, + 1406.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 675.0, + 1386.0, + 675.0, + 1386.0, + 707.0, + 354.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 723.0, + 1408.0, + 723.0, + 1408.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 753.0, + 1294.0, + 753.0, + 1294.0, + 788.0, + 352.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 836.0, + 1298.0, + 836.0, + 1298.0, + 872.0, + 350.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 882.0, + 1408.0, + 882.0, + 1408.0, + 926.0, + 292.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 918.0, + 1216.0, + 918.0, + 1216.0, + 950.0, + 354.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 1408.0, + 968.0, + 1408.0, + 1005.0, + 294.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 997.0, + 1222.0, + 997.0, + 1222.0, + 1035.0, + 354.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1051.0, + 1408.0, + 1051.0, + 1408.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1079.0, + 1394.0, + 1079.0, + 1394.0, + 1117.0, + 354.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1376.0, + 1131.0, + 1376.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1177.0, + 1410.0, + 1177.0, + 1410.0, + 1225.0, + 290.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1211.0, + 619.0, + 1211.0, + 619.0, + 1248.0, + 352.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 1408.0, + 1262.0, + 1408.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1294.0, + 1410.0, + 1294.0, + 1410.0, + 1332.0, + 354.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1378.0, + 1087.0, + 1378.0, + 1087.0, + 1410.0, + 354.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1424.0, + 1404.0, + 1424.0, + 1404.0, + 1462.0, + 294.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1456.0, + 1111.0, + 1456.0, + 1111.0, + 1491.0, + 350.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1507.0, + 1408.0, + 1507.0, + 1408.0, + 1545.0, + 296.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1535.0, + 1005.0, + 1535.0, + 1005.0, + 1577.0, + 348.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1585.0, + 1410.0, + 1585.0, + 1410.0, + 1629.0, + 292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1619.0, + 626.0, + 1619.0, + 626.0, + 1655.0, + 352.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 1408.0, + 1665.0, + 1408.0, + 1713.0, + 292.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1701.0, + 947.0, + 1701.0, + 947.0, + 1738.0, + 352.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1748.0, + 1408.0, + 1748.0, + 1408.0, + 1792.0, + 292.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1782.0, + 1027.0, + 1782.0, + 1027.0, + 1820.0, + 354.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1828.0, + 1410.0, + 1828.0, + 1410.0, + 1874.0, + 292.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1864.0, + 1121.0, + 1864.0, + 1121.0, + 1902.0, + 354.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1951.0, + 296.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1944.0, + 1408.0, + 1944.0, + 1408.0, + 1985.0, + 348.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1975.0, + 629.0, + 1975.0, + 629.0, + 2013.0, + 352.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 293, + 201, + 1410, + 201, + 1410, + 547, + 293, + 547 + ], + "score": 0.676 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 871.0, + 2057.0, + 871.0, + 2095.0, + 832.0, + 2095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 204.0, + 1407.0, + 204.0, + 1407.0, + 240.0, + 296.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 236.0, + 645.0, + 236.0, + 645.0, + 266.0, + 353.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 283.0, + 1404.0, + 283.0, + 1404.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 318.0, + 729.0, + 318.0, + 729.0, + 350.0, + 355.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1407.0, + 366.0, + 1407.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 399.0, + 1025.0, + 399.0, + 1025.0, + 432.0, + 353.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 450.0, + 1408.0, + 450.0, + 1408.0, + 489.0, + 295.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 480.0, + 1407.0, + 480.0, + 1407.0, + 520.0, + 353.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 512.0, + 797.0, + 512.0, + 797.0, + 551.0, + 355.0, + 551.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/rJeZS3RcYm/rJeZS3RcYm.md b/parse/train/rJeZS3RcYm/rJeZS3RcYm.md new file mode 100644 index 0000000000000000000000000000000000000000..41eb565cdff0719c753d637ba53deb4d6941d2a3 --- /dev/null +++ b/parse/train/rJeZS3RcYm/rJeZS3RcYm.md @@ -0,0 +1,239 @@ +# SIMPLE BLACK-BOX ADVERSARIAL ATTACKS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +The construction of adversarial images is a search problem in high dimensions within a small region around a target image. The goal is to find an imperceptibly modified image that is misclassified by a target model. In the black-box setting, only sporadic feedback is provided through occasional model evaluations. In this paper we provide a new algorithm whose search strategy is based on an intriguingly simple iterative principle: We randomly pick a low frequency component of the discrete cosine transform (DCT) and either add or subtract it to the target image. Model evaluations are only required to identify whether an operation decreases the adversarial loss. Despite its simplicity, the proposed method can be used for targeted and untargeted attacks — resulting in previously unprecedented query efficiency in both settings. We require a median of 600 black-box model queries (ResNet-50) to produce an adversarial ImageNet image, and we successfully attack Google Cloud Vision with 2500 median queries, averaging to a cost of only $\$ 3$ per image. We argue that our proposed algorithm should serve as a strong baseline for future adversarial black-box attacks, in particular because it is extremely fast and can be implemented in less than 20 lines of PyTorch code. + +# 1 INTRODUCTION + +As machine learning systems become prevalent in numerous application domains, the security of these systems in the presence of malicious adversaries becomes an important area of research. Many recent studies have shown that decisions output by machine learning models can be altered arbitrarily with imperceptible changes to the input (Carlini & Wagner, 2017b). These attacks on machine learning models can be categorized by the capabilities of the adversary. White-box attacks require the adversary to have complete knowledge of the target model, whereas black-box attacks require only queries to the target model that may return complete or partial information. + +Although often misunderstood as a property of neural networks (Szegedy et al., 2014), the vulnerability towards adversarial examples is likely an inevitability of classifiers in high-dimensional spaces (Shafahi et al., 2018). When the space is high-dimensional, randomly sampled points tend to be far apart (simply because to be close, they would have to be similar along every dimension). However, the reverse is true for distances between points and high-dimensional decision surfaces. The distance from a point to a hyper-plane is only measured along the direction of its normal vector (all other orthogonal directions are parallel to the hyper-plane).1 One can of course construct pathological counter examples of distributions with two classes that have only non-zero support in small but distant regions of the space (e.g. classifying all-white vs. all-black images). However, the fact that almost all models for classification of natural images are susceptible to white-box attacks (Athalye et al., 2018), suggests that natural images tend to be very close to decision boundaries learned by classifiers and demonstrates that the distribution of natural images is no such exception. + +If adversarial examples (almost) always exist, attacking a classifier turns into a search problem within a small volume around a target image. In the white-box scenario, this search can be guided effectively with gradient descent (Szegedy et al., 2014; Carlini & Wagner, 2017b; Madry et al., 2017). However, the black-box threat model is more applicable in many scenarios. Most popular online machine learning services such as Clarifai or Google Cloud Vision only allow API calls to access the model’s predictions. These services do not release any internal details such as training data and model parameters. Moreover, queries to the model may incur a significant cost of both time and money. The number of black-box queries made to the model therefore serves as an important metric of efficiency for the attack algorithm. Attacks that are too costly, or are easily defeated by query limiting, pose less of a security risk than efficient attacks. To date, the average number of queries performed by the best known black-box attacks remains high despite a large amount of recent work in this area (Chen et al., 2017; Brendel et al., 2017; Cheng et al., 2018; Guo et al., 2018; Tu et al., 2018; Ilyas et al., 2018). The most efficient and complex attacks still typically require tens or even hundreds of thousands of queries. Until now, a method for query efficient black-box attacks has remained an open research problem. + +In this paper we propose a simple, yet highly efficient black-box attack that is based on a very simple intuition: If the distance to a decision boundary is very small, we don’t have to be too careful about the exact direction along which we traverse towards it. Concretely, we repeatedly pick a random direction among a pre-specified set of orthogonal search directions, check if it is pointing towards or away from the decision boundary, and perturb the image by adding or subtracting the vector from the image. Each update moves the image further away from the original image and towards the decision boundary. + +We provide some theoretical insight on the efficacy of our approach and evaluate various orthogonal search subspaces. Similar to Guo et al. (2018), we observe that restricting the search towards the low frequency end of the discrete cosine transform (DCT) basis is particularly query efficient. Further, we demonstrate empirically that our approach achieves a similar success rate to state-of-the-art black-box attack algorithms, however with an unprecedented low number of black-box queries. Due to its simplicity — it can be implemented in PyTorch in under 20 lines of code — we consider our method a new and perhaps surprisingly strong baseline for adversarial image attacks and we refer to our algorithm as Simple Black-box Attack (SimBA). + +# 2 BACKGROUND + +The study of adversarial examples concerns with the robustness of a machine learning model to small changes in the input. In the realm of classification, given a model $h$ and some input-label pair $\left( \mathbf { x } , y \right)$ on which the model correctly classifies $h ( \mathbf { x } ) = y$ , $h$ is said to be $\rho$ -robust with respect to perceptibility metric $d ( \cdot , \cdot )$ if $h ( \mathbf { x } ^ { \prime } ) \bar { = } y$ for all $\mathbf { x } ^ { \prime }$ such that $d ( \mathbf { x } , \mathbf { x } ^ { \prime } ) < \rho$ . The metric $d$ is often approximated by the $L _ { 0 }$ , $L _ { 2 }$ and $L _ { \infty }$ distances to measure the degree of visual dissimilarity between the clean input $\mathbf { x }$ and the perturbed input $\mathbf { x } ^ { \prime }$ . Following (Moosavi-Dezfooli et al., 2016; MoosaviDezfooli et al., 2017), for the remainder of this paper, we will use $d ( \mathbf { x } , \mathbf { x } ^ { \prime } ) = \| \mathbf { x } - \mathbf { x } ^ { \prime } \| _ { 2 }$ as the perceptibility metric unless specified otherwise. + +Although this robustness requirement often holds when $\mathbf { x } ^ { \prime } = \mathbf { x } + \boldsymbol { \delta }$ for randomly sampled noise vectors $\delta$ , many studies have shown that the model admits directions of non-robustness even for very small values of $\rho$ (Moosavi-Dezfooli et al., 2016; Carlini & Wagner, 2017b). More recent work (Shafahi et al., 2018) has verified this claim theoretically, showing that adversarial examples are inherent in high-dimensional spaces. These findings motivate the problem of finding adversarial directions $\delta$ that alter the model’s decision. + +The simplest success condition for the adversary is to change the original correct prediction of the model to an arbitrary class, i.e., $h ( \mathbf { x } ^ { \prime } ) \neq y$ . This is known as an untargeted attack. In contrast, a targeted attack aims to construct $\mathbf { x } ^ { \prime }$ such that $h ( \mathbf { x } ^ { \prime } ) = y ^ { \prime }$ for some chosen target class $y ^ { \prime }$ . For the sake of brevity, we will focus on untargeted attacks in our discussion, but all arguments in our paper are applicable to targeted attacks as well. + +Since the model outputs discrete decisions, finding adversarial perturbations to change the model’s prediction is, at first, a discrete optimization problem. However, it is often useful to define a surrogate loss $\ell _ { y } ( \cdot )$ that measures the degree of certainty that the model $h$ classifies the input as class $y$ . The adversarial perturbation problem can therefore be formulated as the following constrained (continuous) optimization problem: + +$$ +\begin{array} { r } { \underset { \delta } { \mathrm { m i n } } \ \ell _ { y } ( \mathbf { x } + \delta ) } \\ { \mathrm { s u b j e c t ~ t o } \ \lVert \delta \rVert _ { 2 } < \rho . } \end{array} +$$ + +When the model $h$ also outputs probabilities $p _ { h } ( \cdot \mid \mathbf { x } )$ associated with each class, one commonly used adversarial loss is the probability of class $y$ : $\ell _ { y } ( \mathbf { x } ^ { \prime } ) = p _ { h } ( y \mid \mathbf { x } ^ { \prime } )$ . For targeted attacks towards label $y ^ { \prime }$ a common choice is $\ell _ { y ^ { \prime } } ( \mathbf { x } ^ { \prime } ) \overset { \cdot } { = } - p _ { h } ( y ^ { \prime } \mid \mathbf { x } ^ { \prime } )$ + +Depending on the application domain, the attacker may have various degrees of knowledge about the target model $h$ . Under the white-box threat model, the classifier $h$ is provided to the adversary. In this scenario, a powerful attack strategy is to perform gradient descent on the adversarial loss $\ell _ { y } ( \cdot )$ , or an approximation thereof. The perturbation norm $\bar { | | } \delta \| _ { 2 }$ can be controlled by early stopping (Goodfellow et al., 2015; Kurakin et al., 2016) or by including it as a component of the loss function (Carlini & Wagner, 2017b). + +However, the white-box assumption may be unsuitable for many applications. For instance, the model $h$ may be exposed to the public as an API, allowing only queries on inputs. This black-box threat model is much more challenging for the adversary, since gradient information may not be used to guide the finding of the adversarial direction $\delta$ , and each query to the model incurs a time and monetary cost. Thus, the adversary is tasked with an additional goal of minimizing the number of black-box queries to $h$ while succeeding in constructing an imperceptible adversarial perturbation. This poses a slightly modified constrained optimization problem (with a slight abuse of notation): + +$$ +\begin{array} { c } { \displaystyle \operatorname* { m i n } _ { \delta } \ell _ { y } ( \mathbf { x } + \delta ) } \\ { \mathrm { s u b j e c t ~ t o } \| \delta \| _ { 2 } < \rho } \\ { \mathrm { q u e r i e s } \leq B } \end{array} +$$ + +where $B$ is some fixed budget for the number of queries allowed during the optimization. For iterative methods, the budget $B$ constrains the number of iterations the algorithm may take, hence requiring that the attack algorithm converges to a solution very quickly. + +# 3 A SIMPLE BLACK-BOX ATTACK + +Imagine that we have some image x which a black-box neural network classifies as category $y$ with predicted probability $p _ { h } ( y \mid \mathbf { x } )$ . Our goal is to find a small pertubation $\delta$ such that the prediction $h ( \mathbf { x } + \delta ) \neq y$ . + +# Algorithm 1 SimBA in Pesudocode + +
1: procedure SIMBA(x,y, Q,∈)
2: δ=0 3:> Query black-box for initial probabilities
p = Ph(y|x)
4: while Py = maxy' Py' do 5:While the true label has not changed
Pick randomly without replacement: q ∈ Q> Try eq and then -eq if that fails.
6:for α ∈{ε,-ε} do
7:p'= ph(y|x+δ+aq) Query the black-box model
8:> If the probability is lower,accept this step
9:if py<Py then =δ+aq
10:p=p'
11: break return δMove on to the next direction
+ +The intuition behind our method is simple: for any direction q and some step size $\epsilon$ , one of $\mathbf { x } + \epsilon \mathbf { q }$ or $\mathbf { x } - \epsilon \mathbf { q }$ is likely to decrease $p _ { h } ( y \mid \mathbf { x } )$ . We therefore repeatedly pick random directions $\mathbf { q }$ and either add or subtract them. The approach is summarized in psuedocode in Algorithm 1. To minimize the number of queries to $h ( \cdot )$ we always first try adding q. If this decreases the probability $p _ { h } ( y \mid \mathbf { x } )$ we take the step, otherwise we try subtracting q. This procedure requires between 1.4 and 1.5 queries per update on average (depending on the data set and target model). Our proposed method – Simple Black-box Attack (SimBA) – takes as input the target image label pair $\left( \mathbf { x } , y \right)$ , a set of orthogonal candidate vectors $Q$ and a step-size $\epsilon > 0$ . For simplicity we pick $\mathbf { q } \in Q$ uniformly at random. To guarantee maximum query efficiency, we ensure that no two directions cancel each other out and diminish progress, or amplify each other and increase the norm of $\delta$ disproportionately. For this reason we pick q without replacement and restrict all vectors in √ $Q$ to be orthogonal. As we show later, this results in a guaranteed perturbation norm of $\| \delta \| _ { 2 } = \sqrt { T } \epsilon$ after $T$ updates. + +![](images/4cd2729197b86e4d0ecc7f994ae80686a119688575848cf4e902bc9294c10c6c.jpg) +Figure 1: Plot of the change in true class probability when descending in a random direction in pixel space (left) and DCT space (right) at step size $\epsilon$ . The average change (purple line) is almost linear in $\epsilon$ with the slope being steeper when the direction is sampled in DCT space. Furthermore, $98 \%$ of the directions sampled in DCT space have either $\mathbf { q }$ or $- \mathbf { q }$ descending, while only $73 \%$ are descending in pixel space. + +# 3.1 HYPER-PARAMETERS + +The only hyper-parameters of SimBA are the set of orthogonal search vectors $Q$ and the step size $\epsilon$ + +Orthogonal directions $Q$ . A natural first choice for the set of orthogonal search directions $Q$ is to randomly subsample the natural basis, $Q = I$ , which corresponds to performing our algorithm directly in pixel space. Essentially each iteration we are increasing or decreasing one color of a single randomly chosen pixel. Alternatively, we can consider directions in frequency domain. Recent work has discovered that random noise in low frequency space are more likely to be adversarial (Guo et al., 2018). To exploit this fact, we follow Guo et al. (2018) and propose to exploit the discrete cosine transform (DCT). The discrete cosine transform is an orthonormal transformation that maps signals in a 2D image space $\mathbb { R } ^ { d \times d }$ to frequency coefficients corresponding to magnitudes of wave functions. In what follows, we will refer to the set of orthonormal frequencies extracted by the DCT as $Q _ { \mathrm { D C T } }$ . While the full set of directions $Q _ { \mathrm { D C T } }$ contains $d \times d$ frequencies, we keep only a fraction $r$ of the lowest frequency directions in order to make the adversarial perturbation in the low frequency space. + +Choosing a learning rate . Given any set of search directions $Q$ , some directions may decrease $p _ { h } ( y \mid \mathbf { x } )$ more than others. Furthermore, it is not naively obvious that arbitrary steps along any direction $\mathbf { q } _ { i }$ decrease the probability. It is possible for the probability $p _ { h } ( y \mid { \bf x } + \epsilon { \bf q } _ { i } )$ to be nonmonotonic in $\epsilon$ . In Figure 1, we plot the relative decrease in probability as a function of $\epsilon$ for randomly sampled search directions in both pixel space and the DCT space. This figure highlights an illuminating result: the probability $p _ { h } ( y \mid { \bf x } \pm \epsilon { \bf q } )$ decreases monotonically in $\epsilon$ with surprising consistency (across random images and vectors q)! Although some directions eventually increase the true class probability, the expected change in this probability is negative with a relatively steep slope. This means that our algorithm is not overly sensitive to the choice of $\epsilon$ and the iterates will decrease the true class probability quickly. The figure also shows that search in the DCT space tends to lead to steeper descent directions than pixel space. As we show in the next section, we can tightly bound the final $L _ { 2 }$ -norm of the perturbation given a choice of $\epsilon$ and maximum number of steps $T$ , so the choice of $\epsilon$ depends primarily on budget considerations with respect to $\lVert \delta \rVert _ { 2 }$ . + +# 3.2 BUDGET CONSIDERATIONS. + +Each iteration of our algorithm strictly increases the norm of the adversarial perturbation $\delta _ { i } \ =$ $\epsilon \mathbf { q } _ { i }$ . By exploiting the orthonormality of the basis $Q$ , we can bound this change tightly. Let $\alpha _ { i } \in$ $\{ - \epsilon , 0 , \epsilon \}$ denote the sign of the search direction chosen at step $i$ , so + +$$ +\delta _ { i + 1 } = \delta _ { i } + \alpha _ { i } { \bf q } _ { i } . +$$ + +We can recursively expand $\delta _ { i + 1 } = \delta _ { i - 1 } + \alpha _ { i - 1 } { \bf q } _ { i - 1 } + \alpha _ { i } { \bf q } _ { i }$ . In general, the final perturbation $\delta _ { T }$ after $T$ steps can be written as a sum of these individual search directions: + +$$ +\delta _ { T } = \sum _ { i = 1 } ^ { T } \alpha _ { i } \mathbf { q } _ { i } . +$$ + +Since the directions $\mathbf { q } _ { i }$ are orthogonal, $\mathbf { q } _ { i } ^ { \top } \mathbf { q } _ { j } = 0$ for any $i \neq j$ . We can therefore compute the $L _ { 2 }$ -norm of the adversarial perturbation: + +$$ +\lVert \delta _ { T } \rVert _ { 2 } ^ { 2 } = \left. \sum _ { i = 1 } ^ { T } \alpha _ { i } \mathbf { q } _ { i } \right. _ { 2 } ^ { 2 } = \sum _ { i = 1 } ^ { T } \lVert \alpha _ { i } \mathbf { q } _ { i } \rVert _ { 2 } ^ { 2 } = \sum _ { i = 1 } ^ { T } \alpha _ { i } ^ { 2 } \lVert \mathbf { q } _ { i } \rVert _ { 2 } ^ { 2 } \leq T \epsilon ^ { 2 } . +$$ + +Here, the second equality follows from the orthogonality of $\mathbf { q } _ { i }$ and ${ \bf q } _ { j }$ , and the last inequality is tight √if all queries result in a step of either $\epsilon$ or $- \epsilon$ . Thus the adversarial perturbation has $L _ { 2 }$ -norm at most $\sqrt { T } \epsilon$ after $T$ iterations. The same analysis holds when using any orthonormal basis (e.g. $Q _ { \mathrm { D C T } }$ ). + +This result highlights an important trade-off for our method. For query-limited scenarios, we may reduce the number of iterations by setting $\epsilon$ higher, incurring higher perturbation $L _ { 2 }$ -norm. If a low norm solution is more desirable, reducing $\epsilon$ will allow quadratically more queries at the same $L _ { 2 }$ -norm. A more thorough theoretical analysis of this trade-off could improve query efficiency. + +# 4 EXPERIMENTAL EVALUATION + +In this section, we empirically evaluate our attack against a comprehensive list of known black-box attack algorithms: ZOO (Chen et al., 2017), the Boundary Attack (Brendel et al., 2017), Opt attack (Cheng et al., 2018), Low Frequency Boundary Attack (LFBA) (Guo et al., 2018), AutoZOOM (Tu et al., 2018), and the QL attack (Ilyas et al., 2018). Based on Eq. (??), there are three dimensions to evaluate black-box adversarial attacks on: how often the optimization problem finds a feasible point (success rate), how many queries were required $( B )$ , and the resulting perturbation norms $( \rho )$ . + +![](images/5c6f39b033bc83dde2df4535d2a01dd32211186862e55a6725a99162fa5e49f0.jpg) +Figure 2: Comparison of success rate versus number of model queries for untargeted (left) and targeted (right) attacks. Horizontal axis shows queries in log scale. For boundary attack and LFBA, success is defined as achieving a perturbation $L _ { 2 }$ -norm of 10 or less. Note that both SimBA and SimBA-DCT achieve a high success rate very quickly. + +# 4.1 SETUP + +We first compare all methods on the ImageNet validation set. We present numbers reported by the original authors’ papers in comparison to ours where applicable. For methods where the required values were unavailable (the boundary attack, LFBA, and the QL attack), we evaluate these methods ourselves using hyperparameters suggested by the authors. For all original and reproduced results, we sample a set of 1000 images from the ImageNet validation set that are initially classified correctly to avoid artifically inflating the success rate. + +![](images/e0d277a68c5031f553128bbc34a263ad2a02f03ec261b203de110b13d0493ac0.jpg) +Figure 3: Histogram of queries required until a successful model attack (over 1000 target images). SimBA-DCT is highly skew-right, suggesting that only a handful of images require more than a small number of queries. The median number of queries required by SimBA-DCT is only 582. + +
Untargeted
AttackAveragequeriesSuccessrateAverageL2TargetedSuccessrateAverageL2
ZO0192,00088.9%1.20AttackAverage queries
Boundary attack123,407100%5.98QL-attack20.61498.7%11.39
Opt-attack71,100100%6.98AutoZOOM13,525100%26.74
LFBA30,000100%6.34SimBA7,899100%8.83
SimBA1,66598.6%3.77SimBA-DCT9,18296.0%7.02
SimBA-DCT1,23298.3%3.09
+ +Table 1: Average query count for untargeted (left) and targeted (right) attacks. Both SimBA and SimBA-DCT have comparable success rate to other algorithms, but require a significantly fewer number of model queries. This effect is especially dramatic for untargeted attack, where the number of queries made by SimBA-DCT is 24 times fewer than all other methods. + +We also evaluate SimBA in the real-world setting of attacking the Google Cloud Vision API. Due to the extreme budget required by baselines that might cost up to $\$ 300$ per image2, we compare here only to LFBA, which we found to be the most query efficient baseline. + +In our experiments, we limit SimBA and SimBA-DCT to at most $T = 1 0 , 0 0 0$ iterations for untargeted attacks and to $T = 3 0 , 0 0 0$ for targeted attacks. For SimBA-DCT, we use we keep the first 1/8th of all frequencies, and add an additional 1/32nd of the frequencies whenever we run out of frequencies without succeeding. For both methods, we use a fixed step size of $\epsilon = 0 . 2$ . + +# 4.2 IMAGENET RESULTS + +Evaluating success rate (Figure 2). We first demonstrate the query efficiency of our method by showing that the average success rate increases dramatically faster than other methods with the same number of queries. Figure 2 compares SimBA and SimBA-DCT to the boundary attack and LFBA in the untargeted setting, and to the QL attack for the targeted setting. Since both boundary attack and LFBA are initialized with inputs of the adversarial class and gradually reduce $L _ { 2 }$ perturbation norm, we define success as reducing the $L _ { 2 }$ -norm to 10 or below. For untargeted attack (left plot), the success rate for both SimBA and SimBA-DCT increase very quickly. LFBA is competitive with SimBA and SimBA-DCT until iteration 1000, but the final success rate is much worse than both methods. A similar result can be seen for targeted attack (right plot), where SimBA and SimBADCT outperform QL attack dramatically in terms of query efficiency. + +Query distributions. In Figure 3 we plot the histogram of model queries made by both SimBA and SimBA-DCT over 1000 random images. Notice that the distributions are highly skewed so the median query count is much smaller than the average query count reported in Table 1. These median counts for SimBA and SimBA-DCT are only 944 and 582, respectively. In the targeted case, while the majority of images can be successfully attacked with very few model evaluations, SimBADCT failed to find an adversarial perturbation for approximately $2 . 5 \%$ of the images. Nevertheless, SimBA is achieves a success rate of $1 0 0 \%$ within 7,899 average queries. + +![](images/db590b8ee2cbb10bb154afc4de63741e4e286b9f65d2f71e31a30752da880881.jpg) +Figure 4: Comparison of success rate versus number of model queries across different network architectures for untargeted SimBA (left) and SimBA-DCT (right) attacks. For all networks, SimBADCT is more query efficient by at least a factor of 2. DenseNet is the most vulnerable against both attacks, admitting a success rate of almost $1 0 0 \%$ after only 10,000 queries for SimBA and 4000 queries for SimBA-DCT. Inception v3 is much more difficult to attack for both methods. + +Aggregate statistics (Table 1). Table 1 computes aggregate statistics of model queries, success rate, and perturbation $L _ { 2 }$ -norm across different attack algorithms. The target model is a pretrained ResNet-50 (He et al., 2016) network, with the exception of AutoZOOM, which used an Inception v3 (Szegedy et al., 2016) network. All methods achieve a similar success rate except for ZOO, which has a reported success rate of ${ \mathrm { 8 8 . 9 \% } }$ . The success rate for boundary attack and LFBA are always $1 0 0 \%$ since both methods begin with very large perturbations to guarantee misclassification and gradually reduce the perturbation norm. Both SimBA and SimBA-DCT have lower average $L _ { 2 }$ -norm than all methods except for ZOO for untargeted attacks, while requiring an order of magnitude fewer queries (at 1665 and 1232, respectively). For targeted attack (right table), all the evaluated methods have much more similar query count, but both SimBA and SimBA-DCT still require significantly fewer queries than QL attack and AutoZOOM, and the $L _ { 2 }$ -norm of constructed perturbation is also much lower. + +Evaluating different networks (Figure 4). To verify that our attack is robust against different model architectures, we evaluate SimBA and SimBA-DCT additionally against DenseNet-121 (Huang et al., 2017a) and Inception v3 (Szegedy et al., 2016) networks. Figure 4 shows success rate across the number of model queries for an untargeted attack against + +![](images/185717453b53aee51e17b3ad09b3f93837df2a5cd7cc17e6db665519e81e43d1.jpg) +Figure 5: Randomly selected images before and after adversarial perturbation by SimBA, SimBADCT and boundary attack. The constructed perturbation is imperceptible for all three methods, but the $L _ { 2 }$ -norm for SimBA and SimBA-DCT is significantly lower than boundary attack across all images, despite allowing boundary attack to make 60,000 queries. In comparison, our methods are capable of constructing an adversarial example in as few as 36 queries. Zoom in for detail. + +![](images/f9bfccb10b14cc731fbe504da93bbd43da7c023d54f5277d521cf6335835b304.jpg) +Figure 6: Screenshot of Google Cloud Vision labeling results on a randomly chosen image before and after adversarial perturbation. While the labels for the adversarial image are still reasonable, the concept bird has been completely removed. See Supplementary Material for additional samples. + +the three different network architectures. ResNet-50 and DenseNet-121 exhibit a similar degree of vulnerability against our attacks. However, Inception v3 is noticeably more difficult to attack, requiring more than 10,000 queries to successfully attack with some images. + +Qualitative results (Figure 5). For qualitative evaluation of our method, we present several randomly selected images before and after adversarial perturbation by untargeted attack. For comparison, we attack the same set of images using boundary attack for 30,000 iterations (60,000 model queries). Figure 5 shows the clean and perturbed images along with the perturbation $L _ { 2 }$ -norm and number of queries. While all attacks are highly successful at changing the label, SimBA and SimBADCT require much fewer queries and the resulting perturbation norm is also much smaller than that of boundary attack. In fact, SimBA-DCT was able to find an adversarial image in as few as 36 model queries! Notice that the perturbation produced by SimBA contains sparse but sharp differences, constituting a low $L _ { 0 }$ norm but relatively high $L _ { \infty }$ norm. However, SimBA-DCT produces perturbations that are sparse in frequency space, but the resulting change in pixel space is spread out across all pixels. + +# 4.3 GOOGLE CLOUD VISION ATTACK + +To demonstrate the effectiveness of our attack against real world systems, we attack the Google Cloud Vision API, an online machine learning service that provides labels for arbitrary input images. For a given image, the API returns a list of top concepts contained in the image and their associated probabilities. Since the full list of probabilities associated with every label is unavailable, we define an untargeted attack that aims to remove the top 3 concepts in the original. We use the maximum of the original top 3 concepts’ returned probabilities as the adversarial loss and use SimBA to minimize this loss. Figure 6 shows a sample random image before and after the attack. The top 3 concepts, in particular the concept bird, have been removed in the adversarial image. + +![](images/5a9be383d241f2bbc4e0ccc0b2582d537471b9498dec0583ff3064ca9276c752.jpg) +Figure 7: Plot of success rate across number of model queries for Google Cloud Vision attack. SimBA is able to achieve close to $7 0 \%$ success rate after only 5000 queries, while the success rate for LFBA has only reached $2 5 \%$ . + +Since our attack can be executed efficiently, we evaluate its effectiveness over an aggregate of 50 random images. For the LFBA baseline, we define an attack as successful if the produced perturbation has an $L _ { 2 }$ -norm of at most the highest $L _ { 2 }$ -norm in a successful run of our attack. Figure 7 shows the average success rate of both attacks across number of queries. SimBA achieves a final success rate of $7 0 \%$ after only 5000 API calls, while LFBA is able to succeed only $2 5 \%$ of the time under the same query budge. To the best of our knowledge, this is the first adversarial attack result on Google Cloud Vision that has a high reported success rate within very limited number of queries. + +# 5 RELATED WORK + +Many recent studies have shown that both white-box and black-box attacks can be applied to a diverse set of tasks. Computer vision models for image segmentation and object detection have also been shown to be vulnerable against adversarial perturbations (Cisse et al., 2017a; Xie et al., 2017). Carlini & Wagner (2018) performed a systematic study of speech recognition attacks and showed that robust adversarial examples that alter the transcription model to output arbitrary target phrases can be constructed. Attacks on neural network policies (Huang et al., 2017b; Behzadan & Munir, 2017) have also been shown to be permissible. + +As these attacks become prevalent, many recent works have focused on designing defenses against adversarial examples. One common class of defenses applies an image transformation prior to classification, which aims to remove the adversarial perturbation without changing the image content (Xu et al., 2017; Dziugaite et al., 2016; Guo et al., 2017). Instead of requiring the model to correctly classify all adversarial images, another strategy is to detect the attack and output an adversarial class when certain statistics of the input appear abnormal (Li & Li, 2017; Metzen et al., 2017; Meng & Chen, 2017; Lu et al., 2017). The training procedure can also be strengthened by including the adversarial loss as an implicit or explicit regularizer to promote robustness against adversarial perturbations (Tramer et al., 2017; Madry et al., 2017; Cisse et al., 2017b). While these defenses \` have shown great success against a passive adversary, almost all of them can be easily defeated by modifying the attack strategy (Carlini & Wagner, 2017a; Athalye & Carlini, 2018; Athalye et al., 2018). + +Relative to defenses against white-box attacks, few studies have focused on defending against adversaries that may only access the model via black-box queries. While transfer attacks can be effectively mitigated by methods such as ensemble adversarial training (Tramer et al., 2017) and image \` transformation (Guo et al., 2017), it is unknown whether existing defense strategies can be applied to adaptive adversaries that may access the model via queries. Guo et al. (2018) have shown that the boundary attack is susceptible to image transformations that quantize the decision boundary, but employing the attack in low frequency space can successfully circumvent these transformation defenses. Given the query efficiency and real world applicability of our proposed black-box attacks, we hope that more research can be dedicated towards defending against malicious adversaries under this threat model. + +# 6 CONCLUSION + +We proposed SimBA, a simple black-box adversarial attack that takes small steps iteratively towards the decision boundary, and demonstrated through extensive experiment its unprecedented query efficiency in both the untargeted and targeted settings. Due to its accessibility, we hope that this method establishes a strong baseline for future research on black-box adversarial examples. + +While we intentionally avoid more sophisticated techniques to improve the method in favor of simplicity, we believe that additional modifications can still dramatically decrease the number of model queries. One possible extension could be to further investigate the selection of different sets of orthonormal bases, which could be crucial to the efficiency of our method by increasing the probability of finding a direction of large change. Another area for improvement is the adaptive selection of the step size $\epsilon$ to optimally consume the distance and query budgets. + +Given that our method has relatively few requirements, it is conceivable that it can be applied to any task for which the target model returns a continuous score for the prediction. For instance, speech recognition systems are trained to maximize the probability of the correct transcription, and neural network policies are trained to maximize some reward function over the set of actions conditioned on the current environment. A simple iterative algorithm that modifies the input at random elements may prove to be effective in these scenarios. We leave these directions for future work. + +# REFERENCES + +Anish Athalye and Nicholas Carlini. On the robustness of the CVPR 2018 white-box adversarial example defenses. CoRR, abs/1804.03286, 2018. URL http://arxiv.org/abs/1804. 03286. + +Anish Athalye, Nicholas Carlini, and David A. Wagner. Obfuscated gradients give a false sense of security: Circumventing defenses to adversarial examples. CoRR, abs/1802.00420, 2018. URL http://arxiv.org/abs/1802.00420. + +Vahid Behzadan and Arslan Munir. Vulnerability of deep reinforcement learning to policy induction attacks. CoRR, abs/1701.04143, 2017. + +Wieland Brendel, Jonas Rauber, and Matthias Bethge. Decision-based adversarial attacks: Reliable attacks against black-box machine learning models. CoRR, abs/1712.04248, 2017. URL http: //arxiv.org/abs/1712.04248. + +Nicholas Carlini and David A. Wagner. Adversarial examples are not easily detected: Bypassing ten detection methods. CoRR, abs/1705.07263, 2017a. + +Nicholas Carlini and David A. Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy, pp. 39–57, 2017b. + +Nicholas Carlini and David A. Wagner. Audio adversarial examples: Targeted attacks on speech-totext. CoRR, abs/1801.01944, 2018. URL http://arxiv.org/abs/1801.01944. + +Pin-Yu Chen, Huan Zhang, Yash Sharma, Jinfeng Yi, and Cho-Jui Hsieh. ZOO: zeroth order optimization based black-box attacks to deep neural networks without training substitute models. In Proceedings of the 10th ACM Workshop on Artificial Intelligence and Security, AISec@CCS 2017, Dallas, TX, USA, November 3, 2017, pp. 15–26, 2017. doi: 10.1145/3128572.3140448. URL http://doi.acm.org/10.1145/3128572.3140448. + +Minhao Cheng, Thong Le, Pin-Yu Chen, Jinfeng Yi, Huan Zhang, and Cho-Jui Hsieh. Queryefficient hard-label black-box attack: An optimization-based approach. CoRR, abs/1807.04457, 2018. URL http://arxiv.org/abs/1807.04457. + +Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep structured prediction models. CoRR, abs/1707.05373, 2017a. + +Moustapha Cisse, Piotr Bojanowski, Edouard Grave, Yann Dauphin, and Nicolas Usunier. Parseval networks: Improving robustness to adversarial examples. CoRR, abs/1704.08847, 2017b. + +Gintare Karolina Dziugaite, Zoubin Ghahramani, and Daniel Roy. A study of the effect of JPG compression on adversarial images. CoRR, abs/1608.00853, 2016. + +Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In Proc. ICLR, 2015. + +Chuan Guo, Mayank Rana, Moustapha Cisse, and Laurens van der Maaten. Countering adversarial ´ images using input transformations. CoRR, abs/1711.00117, 2017. URL http://arxiv. org/abs/1711.00117. + +Chuan Guo, Jared S. Frank, and Kilian Q. Weinberger. Low frequency adversarial perturbations. CoRR, abs/1809.08758, 2018. URL http://arxiv.org/abs/1809.08758. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proc. CVPR, pp. 770–778, 2016. + +Gao Huang, Zhuang Liu, Kilian Weinberger, and Laurens van der Maaten. Densely connected convolutional networks. In Proc. CVPR, pp. 2261–2269, 2017a. + +Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks on neural network policies. CoRR, abs/1702.02284, 2017b. + +Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with limited queries and information. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2142–2151, 2018. URL http://proceedings.mlr.press/v80/ilyas18a.html. + +Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. CoRR, abs/1611.01236, 2016. + +Xin Li and Fuxin Li. Adversarial examples detection in deep networks with convolutional filter statistics. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy, October 22-29, 2017, pp. 5775–5783, 2017. doi: 10.1109/ICCV.2017.615. URL https: //doi.org/10.1109/ICCV.2017.615. + +Jiajun Lu, Theerasit Issaranon, and David A. Forsyth. Safetynet: Detecting and rejecting adversarial examples robustly. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy, October 22-29, 2017, pp. 446–454, 2017. doi: 10.1109/ICCV.2017.56. URL https: //doi.org/10.1109/ICCV.2017.56. + +Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. CoRR, abs/1706.06083, 2017. URL http://arxiv.org/abs/1706.06083. + +Dongyu Meng and Hao Chen. Magnet: A two-pronged defense against adversarial examples. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, CCS 2017, Dallas, TX, USA, October 30 - November 03, 2017, pp. 135–147, 2017. doi: 10.1145/ 3133956.3134057. URL http://doi.acm.org/10.1145/3133956.3134057. + +Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adversarial perturbations. CoRR, abs/1702.04267, 2017. URL http://arxiv.org/abs/1702. 04267. + +Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: A simple and accurate method to fool deep neural networks. In Proc. CVPR, pp. 2574–2582, 2016. + +Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal adversarial perturbations. In Proc. CVPR, pp. 86–94, 2017. + +Ali Shafahi, W. Ronny Huang, Christoph Studer, Soheil Feizi, and Tom Goldstein. Are adversarial examples inevitable? CoRR, abs/1809.02104, 2018. URL http://arxiv.org/abs/1809. 02104. + +Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In In Proc. ICLR, 2014. + +Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proc. CVPR, pp. 2818–2826, 2016. + +Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick D. McDaniel. Ensemble \` adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. + +Chun-Chen Tu, Pai-Shun Ting, Pin-Yu Chen, Sijia Liu, Huan Zhang, Jinfeng Yi, Cho-Jui Hsieh, and Shin-Ming Cheng. Autozoom: Autoencoder-based zeroth order optimization method for attacking black-box neural networks. CoRR, abs/1805.11770, 2018. URL http://arxiv. org/abs/1805.11770. + +Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan L. Yuille. Adversarial examples for semantic segmentation and object detection. In ICCV, pp. 1378–1387. IEEE Computer Society, 2017. + +Weilin Xu, David Evans, and Yanjun Qi. Feature squeezing: Detecting adversarial examples in deep neural networks. CoRR, abs/1704.01155, 2017. + +# S1 SUPPLEMENTARY MATERIAL + +To demonstrate the generality of our evaluation of the Google Cloud Vision attack, we show 10 additional random images before and after perturbation by SimBA. In all cases, we successfully remove the top 3 original labels. + +![](images/13166133a7c0be9e0360f5ebb32dc44fc47742e69f4ae53f3a8d2f9c3f08a4c5.jpg) + +![](images/f3b5f1296a0308812fb35c3a31a88070db640ad95b4da878cf2854887752e494.jpg) +Figure S1: Additional adversarial images on Google Cloud Vision. \ No newline at end of file diff --git a/parse/train/rJeZS3RcYm/rJeZS3RcYm_content_list.json b/parse/train/rJeZS3RcYm/rJeZS3RcYm_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..bbf5c1c4a253e636fbde61d3fc93d406e94ecf72 --- /dev/null +++ b/parse/train/rJeZS3RcYm/rJeZS3RcYm_content_list.json @@ -0,0 +1,1322 @@ +[ + { + "type": "text", + "text": "SIMPLE BLACK-BOX ADVERSARIAL ATTACKS ", + "text_level": 1, + "bbox": [ + 176, + 99, + 723, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 145, + 398, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 210, + 544, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The construction of adversarial images is a search problem in high dimensions within a small region around a target image. The goal is to find an imperceptibly modified image that is misclassified by a target model. In the black-box setting, only sporadic feedback is provided through occasional model evaluations. In this paper we provide a new algorithm whose search strategy is based on an intriguingly simple iterative principle: We randomly pick a low frequency component of the discrete cosine transform (DCT) and either add or subtract it to the target image. Model evaluations are only required to identify whether an operation decreases the adversarial loss. Despite its simplicity, the proposed method can be used for targeted and untargeted attacks — resulting in previously unprecedented query efficiency in both settings. We require a median of 600 black-box model queries (ResNet-50) to produce an adversarial ImageNet image, and we successfully attack Google Cloud Vision with 2500 median queries, averaging to a cost of only $\\$ 3$ per image. We argue that our proposed algorithm should serve as a strong baseline for future adversarial black-box attacks, in particular because it is extremely fast and can be implemented in less than 20 lines of PyTorch code. ", + "bbox": [ + 233, + 241, + 764, + 463 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 489, + 334, + 506 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "As machine learning systems become prevalent in numerous application domains, the security of these systems in the presence of malicious adversaries becomes an important area of research. Many recent studies have shown that decisions output by machine learning models can be altered arbitrarily with imperceptible changes to the input (Carlini & Wagner, 2017b). These attacks on machine learning models can be categorized by the capabilities of the adversary. White-box attacks require the adversary to have complete knowledge of the target model, whereas black-box attacks require only queries to the target model that may return complete or partial information. ", + "bbox": [ + 174, + 522, + 825, + 619 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Although often misunderstood as a property of neural networks (Szegedy et al., 2014), the vulnerability towards adversarial examples is likely an inevitability of classifiers in high-dimensional spaces (Shafahi et al., 2018). When the space is high-dimensional, randomly sampled points tend to be far apart (simply because to be close, they would have to be similar along every dimension). However, the reverse is true for distances between points and high-dimensional decision surfaces. The distance from a point to a hyper-plane is only measured along the direction of its normal vector (all other orthogonal directions are parallel to the hyper-plane).1 One can of course construct pathological counter examples of distributions with two classes that have only non-zero support in small but distant regions of the space (e.g. classifying all-white vs. all-black images). However, the fact that almost all models for classification of natural images are susceptible to white-box attacks (Athalye et al., 2018), suggests that natural images tend to be very close to decision boundaries learned by classifiers and demonstrates that the distribution of natural images is no such exception. ", + "bbox": [ + 174, + 627, + 825, + 792 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "If adversarial examples (almost) always exist, attacking a classifier turns into a search problem within a small volume around a target image. In the white-box scenario, this search can be guided effectively with gradient descent (Szegedy et al., 2014; Carlini & Wagner, 2017b; Madry et al., 2017). However, the black-box threat model is more applicable in many scenarios. Most popular online machine learning services such as Clarifai or Google Cloud Vision only allow API calls to access the model’s predictions. These services do not release any internal details such as training data and model parameters. Moreover, queries to the model may incur a significant cost of both time and money. The number of black-box queries made to the model therefore serves as an important metric of efficiency for the attack algorithm. Attacks that are too costly, or are easily defeated by query limiting, pose less of a security risk than efficient attacks. To date, the average number of queries performed by the best known black-box attacks remains high despite a large amount of recent work in this area (Chen et al., 2017; Brendel et al., 2017; Cheng et al., 2018; Guo et al., 2018; Tu et al., 2018; Ilyas et al., 2018). The most efficient and complex attacks still typically require tens or even hundreds of thousands of queries. Until now, a method for query efficient black-box attacks has remained an open research problem. ", + "bbox": [ + 174, + 800, + 823, + 897 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 215 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper we propose a simple, yet highly efficient black-box attack that is based on a very simple intuition: If the distance to a decision boundary is very small, we don’t have to be too careful about the exact direction along which we traverse towards it. Concretely, we repeatedly pick a random direction among a pre-specified set of orthogonal search directions, check if it is pointing towards or away from the decision boundary, and perturb the image by adding or subtracting the vector from the image. Each update moves the image further away from the original image and towards the decision boundary. ", + "bbox": [ + 174, + 222, + 825, + 319 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We provide some theoretical insight on the efficacy of our approach and evaluate various orthogonal search subspaces. Similar to Guo et al. (2018), we observe that restricting the search towards the low frequency end of the discrete cosine transform (DCT) basis is particularly query efficient. Further, we demonstrate empirically that our approach achieves a similar success rate to state-of-the-art black-box attack algorithms, however with an unprecedented low number of black-box queries. Due to its simplicity — it can be implemented in PyTorch in under 20 lines of code — we consider our method a new and perhaps surprisingly strong baseline for adversarial image attacks and we refer to our algorithm as Simple Black-box Attack (SimBA). ", + "bbox": [ + 174, + 325, + 825, + 438 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 176, + 458, + 326, + 473 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The study of adversarial examples concerns with the robustness of a machine learning model to small changes in the input. In the realm of classification, given a model $h$ and some input-label pair $\\left( \\mathbf { x } , y \\right)$ on which the model correctly classifies $h ( \\mathbf { x } ) = y$ , $h$ is said to be $\\rho$ -robust with respect to perceptibility metric $d ( \\cdot , \\cdot )$ if $h ( \\mathbf { x } ^ { \\prime } ) \\bar { = } y$ for all $\\mathbf { x } ^ { \\prime }$ such that $d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) < \\rho$ . The metric $d$ is often approximated by the $L _ { 0 }$ , $L _ { 2 }$ and $L _ { \\infty }$ distances to measure the degree of visual dissimilarity between the clean input $\\mathbf { x }$ and the perturbed input $\\mathbf { x } ^ { \\prime }$ . Following (Moosavi-Dezfooli et al., 2016; MoosaviDezfooli et al., 2017), for the remainder of this paper, we will use $d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) = \\| \\mathbf { x } - \\mathbf { x } ^ { \\prime } \\| _ { 2 }$ as the perceptibility metric unless specified otherwise. ", + "bbox": [ + 173, + 488, + 825, + 601 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Although this robustness requirement often holds when $\\mathbf { x } ^ { \\prime } = \\mathbf { x } + \\boldsymbol { \\delta }$ for randomly sampled noise vectors $\\delta$ , many studies have shown that the model admits directions of non-robustness even for very small values of $\\rho$ (Moosavi-Dezfooli et al., 2016; Carlini & Wagner, 2017b). More recent work (Shafahi et al., 2018) has verified this claim theoretically, showing that adversarial examples are inherent in high-dimensional spaces. These findings motivate the problem of finding adversarial directions $\\delta$ that alter the model’s decision. ", + "bbox": [ + 174, + 607, + 825, + 690 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The simplest success condition for the adversary is to change the original correct prediction of the model to an arbitrary class, i.e., $h ( \\mathbf { x } ^ { \\prime } ) \\neq y$ . This is known as an untargeted attack. In contrast, a targeted attack aims to construct $\\mathbf { x } ^ { \\prime }$ such that $h ( \\mathbf { x } ^ { \\prime } ) = y ^ { \\prime }$ for some chosen target class $y ^ { \\prime }$ . For the sake of brevity, we will focus on untargeted attacks in our discussion, but all arguments in our paper are applicable to targeted attacks as well. ", + "bbox": [ + 174, + 698, + 825, + 768 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Since the model outputs discrete decisions, finding adversarial perturbations to change the model’s prediction is, at first, a discrete optimization problem. However, it is often useful to define a surrogate loss $\\ell _ { y } ( \\cdot )$ that measures the degree of certainty that the model $h$ classifies the input as class $y$ . The adversarial perturbation problem can therefore be formulated as the following constrained (continuous) optimization problem: ", + "bbox": [ + 173, + 775, + 825, + 844 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/bef33e0fe2ef9984e0ccc1c1421ace0375dba965a6259204407868d51bc82fb6.jpg", + "text": "$$\n\\begin{array} { r } { \\underset { \\delta } { \\mathrm { m i n } } \\ \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\ \\lVert \\delta \\rVert _ { 2 } < \\rho . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 429, + 852, + 568, + 893 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "When the model $h$ also outputs probabilities $p _ { h } ( \\cdot \\mid \\mathbf { x } )$ associated with each class, one commonly used adversarial loss is the probability of class $y$ : $\\ell _ { y } ( \\mathbf { x } ^ { \\prime } ) = p _ { h } ( y \\mid \\mathbf { x } ^ { \\prime } )$ . For targeted attacks towards label $y ^ { \\prime }$ a common choice is $\\ell _ { y ^ { \\prime } } ( \\mathbf { x } ^ { \\prime } ) \\overset { \\cdot } { = } - p _ { h } ( y ^ { \\prime } \\mid \\mathbf { x } ^ { \\prime } )$ ", + "bbox": [ + 174, + 103, + 825, + 147 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Depending on the application domain, the attacker may have various degrees of knowledge about the target model $h$ . Under the white-box threat model, the classifier $h$ is provided to the adversary. In this scenario, a powerful attack strategy is to perform gradient descent on the adversarial loss $\\ell _ { y } ( \\cdot )$ , or an approximation thereof. The perturbation norm $\\bar { | | } \\delta \\| _ { 2 }$ can be controlled by early stopping (Goodfellow et al., 2015; Kurakin et al., 2016) or by including it as a component of the loss function (Carlini & Wagner, 2017b). ", + "bbox": [ + 174, + 152, + 825, + 236 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "However, the white-box assumption may be unsuitable for many applications. For instance, the model $h$ may be exposed to the public as an API, allowing only queries on inputs. This black-box threat model is much more challenging for the adversary, since gradient information may not be used to guide the finding of the adversarial direction $\\delta$ , and each query to the model incurs a time and monetary cost. Thus, the adversary is tasked with an additional goal of minimizing the number of black-box queries to $h$ while succeeding in constructing an imperceptible adversarial perturbation. This poses a slightly modified constrained optimization problem (with a slight abuse of notation): ", + "bbox": [ + 173, + 242, + 825, + 342 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/cdd75a22462751e269ecc0465704960e5591e17ac52bc906fee4d34db5a92025.jpg", + "text": "$$\n\\begin{array} { c } { \\displaystyle \\operatorname* { m i n } _ { \\delta } \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\| \\delta \\| _ { 2 } < \\rho } \\\\ { \\mathrm { q u e r i e s } \\leq B } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 419, + 344, + 580, + 405 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $B$ is some fixed budget for the number of queries allowed during the optimization. For iterative methods, the budget $B$ constrains the number of iterations the algorithm may take, hence requiring that the attack algorithm converges to a solution very quickly. ", + "bbox": [ + 174, + 409, + 825, + 450 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 A SIMPLE BLACK-BOX ATTACK ", + "text_level": 1, + "bbox": [ + 176, + 469, + 470, + 486 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Imagine that we have some image x which a black-box neural network classifies as category $y$ with predicted probability $p _ { h } ( y \\mid \\mathbf { x } )$ . Our goal is to find a small pertubation $\\delta$ such that the prediction $h ( \\mathbf { x } + \\delta ) \\neq y$ . ", + "bbox": [ + 174, + 501, + 825, + 544 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithm 1 SimBA in Pesudocode ", + "text_level": 1, + "bbox": [ + 176, + 558, + 411, + 573 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/41db931fe0f9a99cba716ed39c0f54e3df276345878beb14c3e44eea3c2cf93b.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
1: procedure SIMBA(x,y, Q,∈)
2: δ=0 3:> Query black-box for initial probabilities
p = Ph(y|x)
4: while Py = maxy' Py' do 5:While the true label has not changed
Pick randomly without replacement: q ∈ Q> Try eq and then -eq if that fails.
6:for α ∈{ε,-ε} do
7:p'= ph(y|x+δ+aq) Query the black-box model
8:> If the probability is lower,accept this step
9:if py<Py then =δ+aq
10:p=p'
11: break return δMove on to the next direction
", + "bbox": [ + 178, + 575, + 826, + 742 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The intuition behind our method is simple: for any direction q and some step size $\\epsilon$ , one of $\\mathbf { x } + \\epsilon \\mathbf { q }$ or $\\mathbf { x } - \\epsilon \\mathbf { q }$ is likely to decrease $p _ { h } ( y \\mid \\mathbf { x } )$ . We therefore repeatedly pick random directions $\\mathbf { q }$ and either add or subtract them. The approach is summarized in psuedocode in Algorithm 1. To minimize the number of queries to $h ( \\cdot )$ we always first try adding \u000fq. If this decreases the probability $p _ { h } ( y \\mid \\mathbf { x } )$ we take the step, otherwise we try subtracting \u000fq. This procedure requires between 1.4 and 1.5 queries per update on average (depending on the data set and target model). Our proposed method – Simple Black-box Attack (SimBA) – takes as input the target image label pair $\\left( \\mathbf { x } , y \\right)$ , a set of orthogonal candidate vectors $Q$ and a step-size $\\epsilon > 0$ . For simplicity we pick $\\mathbf { q } \\in Q$ uniformly at random. To guarantee maximum query efficiency, we ensure that no two directions cancel each other out and diminish progress, or amplify each other and increase the norm of $\\delta$ disproportionately. For this reason we pick q without replacement and restrict all vectors in √ $Q$ to be orthogonal. As we show later, this results in a guaranteed perturbation norm of $\\| \\delta \\| _ { 2 } = \\sqrt { T } \\epsilon$ after $T$ updates. ", + "bbox": [ + 173, + 756, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/4cd2729197b86e4d0ecc7f994ae80686a119688575848cf4e902bc9294c10c6c.jpg", + "image_caption": [ + "Figure 1: Plot of the change in true class probability when descending in a random direction in pixel space (left) and DCT space (right) at step size $\\epsilon$ . The average change (purple line) is almost linear in $\\epsilon$ with the slope being steeper when the direction is sampled in DCT space. Furthermore, $98 \\%$ of the directions sampled in DCT space have either $\\mathbf { q }$ or $- \\mathbf { q }$ descending, while only $73 \\%$ are descending in pixel space. " + ], + "image_footnote": [], + "bbox": [ + 183, + 107, + 826, + 268 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 HYPER-PARAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 367, + 362, + 381 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The only hyper-parameters of SimBA are the set of orthogonal search vectors $Q$ and the step size $\\epsilon$ ", + "bbox": [ + 174, + 392, + 821, + 407 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Orthogonal directions $Q$ . A natural first choice for the set of orthogonal search directions $Q$ is to randomly subsample the natural basis, $Q = I$ , which corresponds to performing our algorithm directly in pixel space. Essentially each iteration we are increasing or decreasing one color of a single randomly chosen pixel. Alternatively, we can consider directions in frequency domain. Recent work has discovered that random noise in low frequency space are more likely to be adversarial (Guo et al., 2018). To exploit this fact, we follow Guo et al. (2018) and propose to exploit the discrete cosine transform (DCT). The discrete cosine transform is an orthonormal transformation that maps signals in a 2D image space $\\mathbb { R } ^ { d \\times d }$ to frequency coefficients corresponding to magnitudes of wave functions. In what follows, we will refer to the set of orthonormal frequencies extracted by the DCT as $Q _ { \\mathrm { D C T } }$ . While the full set of directions $Q _ { \\mathrm { D C T } }$ contains $d \\times d$ frequencies, we keep only a fraction $r$ of the lowest frequency directions in order to make the adversarial perturbation in the low frequency space. ", + "bbox": [ + 174, + 414, + 825, + 580 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Choosing a learning rate \u000f. Given any set of search directions $Q$ , some directions may decrease $p _ { h } ( y \\mid \\mathbf { x } )$ more than others. Furthermore, it is not naively obvious that arbitrary steps along any direction $\\mathbf { q } _ { i }$ decrease the probability. It is possible for the probability $p _ { h } ( y \\mid { \\bf x } + \\epsilon { \\bf q } _ { i } )$ to be nonmonotonic in $\\epsilon$ . In Figure 1, we plot the relative decrease in probability as a function of $\\epsilon$ for randomly sampled search directions in both pixel space and the DCT space. This figure highlights an illuminating result: the probability $p _ { h } ( y \\mid { \\bf x } \\pm \\epsilon { \\bf q } )$ decreases monotonically in $\\epsilon$ with surprising consistency (across random images and vectors q)! Although some directions eventually increase the true class probability, the expected change in this probability is negative with a relatively steep slope. This means that our algorithm is not overly sensitive to the choice of $\\epsilon$ and the iterates will decrease the true class probability quickly. The figure also shows that search in the DCT space tends to lead to steeper descent directions than pixel space. As we show in the next section, we can tightly bound the final $L _ { 2 }$ -norm of the perturbation given a choice of $\\epsilon$ and maximum number of steps $T$ , so the choice of $\\epsilon$ depends primarily on budget considerations with respect to $\\lVert \\delta \\rVert _ { 2 }$ . ", + "bbox": [ + 173, + 588, + 825, + 768 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 BUDGET CONSIDERATIONS. ", + "text_level": 1, + "bbox": [ + 176, + 785, + 405, + 799 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Each iteration of our algorithm strictly increases the norm of the adversarial perturbation $\\delta _ { i } \\ =$ $\\epsilon \\mathbf { q } _ { i }$ . By exploiting the orthonormality of the basis $Q$ , we can bound this change tightly. Let $\\alpha _ { i } \\in$ $\\{ - \\epsilon , 0 , \\epsilon \\}$ denote the sign of the search direction chosen at step $i$ , so ", + "bbox": [ + 174, + 811, + 823, + 853 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/281e4819b4b98a57958284771e7700f1a716d4852a1192a9227fcb7af81e6995.jpg", + "text": "$$\n\\delta _ { i + 1 } = \\delta _ { i } + \\alpha _ { i } { \\bf q } _ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 437, + 861, + 560, + 877 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We can recursively expand $\\delta _ { i + 1 } = \\delta _ { i - 1 } + \\alpha _ { i - 1 } { \\bf q } _ { i - 1 } + \\alpha _ { i } { \\bf q } _ { i }$ . In general, the final perturbation $\\delta _ { T }$ after $T$ steps can be written as a sum of these individual search directions: ", + "bbox": [ + 171, + 103, + 821, + 132 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/adca316baf619133cee51a6f97ad597244985ab64d6af3e6be16332f7e38e04d.jpg", + "text": "$$\n\\delta _ { T } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 446, + 136, + 552, + 180 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Since the directions $\\mathbf { q } _ { i }$ are orthogonal, $\\mathbf { q } _ { i } ^ { \\top } \\mathbf { q } _ { j } = 0$ for any $i \\neq j$ . We can therefore compute the $L _ { 2 }$ -norm of the adversarial perturbation: ", + "bbox": [ + 174, + 184, + 823, + 214 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/664fe05300f694efd2f549bbc2259d345ca4bea052d16b31839fdd9856a36b0a.jpg", + "text": "$$\n\\lVert \\delta _ { T } \\rVert _ { 2 } ^ { 2 } = \\left. \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } \\right. _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\lVert \\alpha _ { i } \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } ^ { 2 } \\lVert \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } \\leq T \\epsilon ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 294, + 218, + 704, + 265 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here, the second equality follows from the orthogonality of $\\mathbf { q } _ { i }$ and ${ \\bf q } _ { j }$ , and the last inequality is tight √if all queries result in a step of either $\\epsilon$ or $- \\epsilon$ . Thus the adversarial perturbation has $L _ { 2 }$ -norm at most $\\sqrt { T } \\epsilon$ after $T$ iterations. The same analysis holds when using any orthonormal basis (e.g. $Q _ { \\mathrm { D C T } }$ ). ", + "bbox": [ + 174, + 268, + 825, + 313 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This result highlights an important trade-off for our method. For query-limited scenarios, we may reduce the number of iterations by setting $\\epsilon$ higher, incurring higher perturbation $L _ { 2 }$ -norm. If a low norm solution is more desirable, reducing $\\epsilon$ will allow quadratically more queries at the same $L _ { 2 }$ -norm. A more thorough theoretical analysis of this trade-off could improve query efficiency. ", + "bbox": [ + 174, + 319, + 825, + 376 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTAL EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 395, + 452, + 411 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we empirically evaluate our attack against a comprehensive list of known black-box attack algorithms: ZOO (Chen et al., 2017), the Boundary Attack (Brendel et al., 2017), Opt attack (Cheng et al., 2018), Low Frequency Boundary Attack (LFBA) (Guo et al., 2018), AutoZOOM (Tu et al., 2018), and the QL attack (Ilyas et al., 2018). Based on Eq. (??), there are three dimensions to evaluate black-box adversarial attacks on: how often the optimization problem finds a feasible point (success rate), how many queries were required $( B )$ , and the resulting perturbation norms $( \\rho )$ . ", + "bbox": [ + 173, + 426, + 825, + 511 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/5c6f39b033bc83dde2df4535d2a01dd32211186862e55a6725a99162fa5e49f0.jpg", + "image_caption": [ + "Figure 2: Comparison of success rate versus number of model queries for untargeted (left) and targeted (right) attacks. Horizontal axis shows queries in log scale. For boundary attack and LFBA, success is defined as achieving a perturbation $L _ { 2 }$ -norm of 10 or less. Note that both SimBA and SimBA-DCT achieve a high success rate very quickly. " + ], + "image_footnote": [], + "bbox": [ + 171, + 521, + 818, + 717 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 SETUP ", + "text_level": 1, + "bbox": [ + 174, + 814, + 261, + 828 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We first compare all methods on the ImageNet validation set. We present numbers reported by the original authors’ papers in comparison to ours where applicable. For methods where the required values were unavailable (the boundary attack, LFBA, and the QL attack), we evaluate these methods ourselves using hyperparameters suggested by the authors. For all original and reproduced results, we sample a set of 1000 images from the ImageNet validation set that are initially classified correctly to avoid artifically inflating the success rate. ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/e0d277a68c5031f553128bbc34a263ad2a02f03ec261b203de110b13d0493ac0.jpg", + "image_caption": [ + "Figure 3: Histogram of queries required until a successful model attack (over 1000 target images). SimBA-DCT is highly skew-right, suggesting that only a handful of images require more than a small number of queries. The median number of queries required by SimBA-DCT is only 582. " + ], + "image_footnote": [], + "bbox": [ + 171, + 97, + 823, + 296 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/734074d0526336e7b0b6c3dba8a3deab42184b390887c38658d53c62e85a714f.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Untargeted
AttackAveragequeriesSuccessrateAverageL2TargetedSuccessrateAverageL2
ZO0192,00088.9%1.20AttackAverage queries
Boundary attack123,407100%5.98QL-attack20.61498.7%11.39
Opt-attack71,100100%6.98AutoZOOM13,525100%26.74
LFBA30,000100%6.34SimBA7,899100%8.83
SimBA1,66598.6%3.77SimBA-DCT9,18296.0%7.02
SimBA-DCT1,23298.3%3.09
", + "bbox": [ + 173, + 362, + 823, + 444 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1: Average query count for untargeted (left) and targeted (right) attacks. Both SimBA and SimBA-DCT have comparable success rate to other algorithms, but require a significantly fewer number of model queries. This effect is especially dramatic for untargeted attack, where the number of queries made by SimBA-DCT is 24 times fewer than all other methods. ", + "bbox": [ + 173, + 455, + 825, + 510 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We also evaluate SimBA in the real-world setting of attacking the Google Cloud Vision API. Due to the extreme budget required by baselines that might cost up to $\\$ 300$ per image2, we compare here only to LFBA, which we found to be the most query efficient baseline. ", + "bbox": [ + 174, + 537, + 825, + 579 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In our experiments, we limit SimBA and SimBA-DCT to at most $T = 1 0 , 0 0 0$ iterations for untargeted attacks and to $T = 3 0 , 0 0 0$ for targeted attacks. For SimBA-DCT, we use we keep the first 1/8th of all frequencies, and add an additional 1/32nd of the frequencies whenever we run out of frequencies without succeeding. For both methods, we use a fixed step size of $\\epsilon = 0 . 2$ . ", + "bbox": [ + 174, + 587, + 825, + 642 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 IMAGENET RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 660, + 357, + 674 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluating success rate (Figure 2). We first demonstrate the query efficiency of our method by showing that the average success rate increases dramatically faster than other methods with the same number of queries. Figure 2 compares SimBA and SimBA-DCT to the boundary attack and LFBA in the untargeted setting, and to the QL attack for the targeted setting. Since both boundary attack and LFBA are initialized with inputs of the adversarial class and gradually reduce $L _ { 2 }$ perturbation norm, we define success as reducing the $L _ { 2 }$ -norm to 10 or below. For untargeted attack (left plot), the success rate for both SimBA and SimBA-DCT increase very quickly. LFBA is competitive with SimBA and SimBA-DCT until iteration 1000, but the final success rate is much worse than both methods. A similar result can be seen for targeted attack (right plot), where SimBA and SimBADCT outperform QL attack dramatically in terms of query efficiency. ", + "bbox": [ + 174, + 685, + 825, + 825 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Query distributions. In Figure 3 we plot the histogram of model queries made by both SimBA and SimBA-DCT over 1000 random images. Notice that the distributions are highly skewed so the median query count is much smaller than the average query count reported in Table 1. These median counts for SimBA and SimBA-DCT are only 944 and 582, respectively. In the targeted case, while the majority of images can be successfully attacked with very few model evaluations, SimBADCT failed to find an adversarial perturbation for approximately $2 . 5 \\%$ of the images. Nevertheless, SimBA is achieves a success rate of $1 0 0 \\%$ within 7,899 average queries. ", + "bbox": [ + 174, + 840, + 823, + 896 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/db590b8ee2cbb10bb154afc4de63741e4e286b9f65d2f71e31a30752da880881.jpg", + "image_caption": [ + "Figure 4: Comparison of success rate versus number of model queries across different network architectures for untargeted SimBA (left) and SimBA-DCT (right) attacks. For all networks, SimBADCT is more query efficient by at least a factor of 2. DenseNet is the most vulnerable against both attacks, admitting a success rate of almost $1 0 0 \\%$ after only 10,000 queries for SimBA and 4000 queries for SimBA-DCT. Inception v3 is much more difficult to attack for both methods. " + ], + "image_footnote": [], + "bbox": [ + 171, + 97, + 818, + 297 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 405, + 825, + 446 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Aggregate statistics (Table 1). Table 1 computes aggregate statistics of model queries, success rate, and perturbation $L _ { 2 }$ -norm across different attack algorithms. The target model is a pretrained ResNet-50 (He et al., 2016) network, with the exception of AutoZOOM, which used an Inception v3 (Szegedy et al., 2016) network. All methods achieve a similar success rate except for ZOO, which has a reported success rate of ${ \\mathrm { 8 8 . 9 \\% } }$ . The success rate for boundary attack and LFBA are always $1 0 0 \\%$ since both methods begin with very large perturbations to guarantee misclassification and gradually reduce the perturbation norm. Both SimBA and SimBA-DCT have lower average $L _ { 2 }$ -norm than all methods except for ZOO for untargeted attacks, while requiring an order of magnitude fewer queries (at 1665 and 1232, respectively). For targeted attack (right table), all the evaluated methods have much more similar query count, but both SimBA and SimBA-DCT still require significantly fewer queries than QL attack and AutoZOOM, and the $L _ { 2 }$ -norm of constructed perturbation is also much lower. ", + "bbox": [ + 174, + 463, + 483, + 795 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Evaluating different networks (Figure 4). To verify that our attack is robust against different model architectures, we evaluate SimBA and SimBA-DCT additionally against DenseNet-121 (Huang et al., 2017a) and Inception v3 (Szegedy et al., 2016) networks. Figure 4 shows success rate across the number of model queries for an untargeted attack against ", + "bbox": [ + 174, + 811, + 483, + 922 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/185717453b53aee51e17b3ad09b3f93837df2a5cd7cc17e6db665519e81e43d1.jpg", + "image_caption": [ + "Figure 5: Randomly selected images before and after adversarial perturbation by SimBA, SimBADCT and boundary attack. The constructed perturbation is imperceptible for all three methods, but the $L _ { 2 }$ -norm for SimBA and SimBA-DCT is significantly lower than boundary attack across all images, despite allowing boundary attack to make 60,000 queries. In comparison, our methods are capable of constructing an adversarial example in as few as 36 queries. Zoom in for detail. " + ], + "image_footnote": [], + "bbox": [ + 501, + 474, + 820, + 768 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f9bfccb10b14cc731fbe504da93bbd43da7c023d54f5277d521cf6335835b304.jpg", + "image_caption": [ + "Figure 6: Screenshot of Google Cloud Vision labeling results on a randomly chosen image before and after adversarial perturbation. While the labels for the adversarial image are still reasonable, the concept bird has been completely removed. See Supplementary Material for additional samples. " + ], + "image_footnote": [], + "bbox": [ + 173, + 101, + 821, + 257 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "the three different network architectures. ResNet-50 and DenseNet-121 exhibit a similar degree of vulnerability against our attacks. However, Inception v3 is noticeably more difficult to attack, requiring more than 10,000 queries to successfully attack with some images. ", + "bbox": [ + 174, + 338, + 825, + 380 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Qualitative results (Figure 5). For qualitative evaluation of our method, we present several randomly selected images before and after adversarial perturbation by untargeted attack. For comparison, we attack the same set of images using boundary attack for 30,000 iterations (60,000 model queries). Figure 5 shows the clean and perturbed images along with the perturbation $L _ { 2 }$ -norm and number of queries. While all attacks are highly successful at changing the label, SimBA and SimBADCT require much fewer queries and the resulting perturbation norm is also much smaller than that of boundary attack. In fact, SimBA-DCT was able to find an adversarial image in as few as 36 model queries! Notice that the perturbation produced by SimBA contains sparse but sharp differences, constituting a low $L _ { 0 }$ norm but relatively high $L _ { \\infty }$ norm. However, SimBA-DCT produces perturbations that are sparse in frequency space, but the resulting change in pixel space is spread out across all pixels. ", + "bbox": [ + 173, + 395, + 825, + 547 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.3 GOOGLE CLOUD VISION ATTACK", + "text_level": 1, + "bbox": [ + 178, + 565, + 442, + 579 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To demonstrate the effectiveness of our attack against real world systems, we attack the Google Cloud Vision API, an online machine learning service that provides labels for arbitrary input images. For a given image, the API returns a list of top concepts contained in the image and their associated probabilities. Since the full list of probabilities associated with every label is unavailable, we define an untargeted attack that aims to remove the top 3 concepts in the original. We use the maximum of the original top 3 concepts’ returned probabilities as the adversarial loss and use SimBA to minimize this loss. Figure 6 shows a sample random image before and after the attack. The top 3 concepts, in particular the concept bird, have been removed in the adversarial image. ", + "bbox": [ + 174, + 592, + 483, + 827 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/5a9be383d241f2bbc4e0ccc0b2582d537471b9498dec0583ff3064ca9276c752.jpg", + "image_caption": [ + "Figure 7: Plot of success rate across number of model queries for Google Cloud Vision attack. SimBA is able to achieve close to $7 0 \\%$ success rate after only 5000 queries, while the success rate for LFBA has only reached $2 5 \\%$ . " + ], + "image_footnote": [], + "bbox": [ + 496, + 561, + 820, + 744 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Since our attack can be executed efficiently, we evaluate its effectiveness over an aggregate of 50 random images. For the LFBA baseline, we define an attack as successful if the produced perturbation has an $L _ { 2 }$ -norm of at most the highest $L _ { 2 }$ -norm in a successful run of our attack. Figure 7 shows the average success rate of both attacks across number of queries. SimBA achieves a final success rate of $7 0 \\%$ after only 5000 API calls, while LFBA is able to succeed only $2 5 \\%$ of the time under the same query budge. To the best of our knowledge, this is the first adversarial attack result on Google Cloud Vision that has a high reported success rate within very limited number of queries. ", + "bbox": [ + 174, + 835, + 825, + 917 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 151, + 344, + 167 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Many recent studies have shown that both white-box and black-box attacks can be applied to a diverse set of tasks. Computer vision models for image segmentation and object detection have also been shown to be vulnerable against adversarial perturbations (Cisse et al., 2017a; Xie et al., 2017). Carlini & Wagner (2018) performed a systematic study of speech recognition attacks and showed that robust adversarial examples that alter the transcription model to output arbitrary target phrases can be constructed. Attacks on neural network policies (Huang et al., 2017b; Behzadan & Munir, 2017) have also been shown to be permissible. ", + "bbox": [ + 174, + 183, + 825, + 281 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As these attacks become prevalent, many recent works have focused on designing defenses against adversarial examples. One common class of defenses applies an image transformation prior to classification, which aims to remove the adversarial perturbation without changing the image content (Xu et al., 2017; Dziugaite et al., 2016; Guo et al., 2017). Instead of requiring the model to correctly classify all adversarial images, another strategy is to detect the attack and output an adversarial class when certain statistics of the input appear abnormal (Li & Li, 2017; Metzen et al., 2017; Meng & Chen, 2017; Lu et al., 2017). The training procedure can also be strengthened by including the adversarial loss as an implicit or explicit regularizer to promote robustness against adversarial perturbations (Tramer et al., 2017; Madry et al., 2017; Cisse et al., 2017b). While these defenses \\` have shown great success against a passive adversary, almost all of them can be easily defeated by modifying the attack strategy (Carlini & Wagner, 2017a; Athalye & Carlini, 2018; Athalye et al., 2018). ", + "bbox": [ + 174, + 287, + 825, + 454 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Relative to defenses against white-box attacks, few studies have focused on defending against adversaries that may only access the model via black-box queries. While transfer attacks can be effectively mitigated by methods such as ensemble adversarial training (Tramer et al., 2017) and image \\` transformation (Guo et al., 2017), it is unknown whether existing defense strategies can be applied to adaptive adversaries that may access the model via queries. Guo et al. (2018) have shown that the boundary attack is susceptible to image transformations that quantize the decision boundary, but employing the attack in low frequency space can successfully circumvent these transformation defenses. Given the query efficiency and real world applicability of our proposed black-box attacks, we hope that more research can be dedicated towards defending against malicious adversaries under this threat model. ", + "bbox": [ + 174, + 462, + 825, + 601 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 621, + 318, + 637 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We proposed SimBA, a simple black-box adversarial attack that takes small steps iteratively towards the decision boundary, and demonstrated through extensive experiment its unprecedented query efficiency in both the untargeted and targeted settings. Due to its accessibility, we hope that this method establishes a strong baseline for future research on black-box adversarial examples. ", + "bbox": [ + 174, + 652, + 823, + 708 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "While we intentionally avoid more sophisticated techniques to improve the method in favor of simplicity, we believe that additional modifications can still dramatically decrease the number of model queries. One possible extension could be to further investigate the selection of different sets of orthonormal bases, which could be crucial to the efficiency of our method by increasing the probability of finding a direction of large change. Another area for improvement is the adaptive selection of the step size $\\epsilon$ to optimally consume the distance and query budgets. ", + "bbox": [ + 174, + 715, + 823, + 799 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Given that our method has relatively few requirements, it is conceivable that it can be applied to any task for which the target model returns a continuous score for the prediction. For instance, speech recognition systems are trained to maximize the probability of the correct transcription, and neural network policies are trained to maximize some reward function over the set of actions conditioned on the current environment. A simple iterative algorithm that modifies the input at random elements may prove to be effective in these scenarios. We leave these directions for future work. ", + "bbox": [ + 174, + 806, + 823, + 890 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 287, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anish Athalye and Nicholas Carlini. On the robustness of the CVPR 2018 white-box adversarial example defenses. CoRR, abs/1804.03286, 2018. URL http://arxiv.org/abs/1804. 03286. ", + "bbox": [ + 173, + 126, + 823, + 167 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anish Athalye, Nicholas Carlini, and David A. Wagner. Obfuscated gradients give a false sense of security: Circumventing defenses to adversarial examples. CoRR, abs/1802.00420, 2018. URL http://arxiv.org/abs/1802.00420. ", + "bbox": [ + 176, + 178, + 821, + 220 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vahid Behzadan and Arslan Munir. Vulnerability of deep reinforcement learning to policy induction attacks. CoRR, abs/1701.04143, 2017. ", + "bbox": [ + 171, + 228, + 825, + 258 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Wieland Brendel, Jonas Rauber, and Matthias Bethge. Decision-based adversarial attacks: Reliable attacks against black-box machine learning models. CoRR, abs/1712.04248, 2017. URL http: //arxiv.org/abs/1712.04248. ", + "bbox": [ + 176, + 266, + 823, + 309 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini and David A. Wagner. Adversarial examples are not easily detected: Bypassing ten detection methods. CoRR, abs/1705.07263, 2017a. ", + "bbox": [ + 168, + 318, + 823, + 347 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini and David A. Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy, pp. 39–57, 2017b. ", + "bbox": [ + 169, + 356, + 823, + 386 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini and David A. Wagner. Audio adversarial examples: Targeted attacks on speech-totext. CoRR, abs/1801.01944, 2018. URL http://arxiv.org/abs/1801.01944. ", + "bbox": [ + 173, + 393, + 821, + 422 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pin-Yu Chen, Huan Zhang, Yash Sharma, Jinfeng Yi, and Cho-Jui Hsieh. ZOO: zeroth order optimization based black-box attacks to deep neural networks without training substitute models. In Proceedings of the 10th ACM Workshop on Artificial Intelligence and Security, AISec@CCS 2017, Dallas, TX, USA, November 3, 2017, pp. 15–26, 2017. doi: 10.1145/3128572.3140448. URL http://doi.acm.org/10.1145/3128572.3140448. ", + "bbox": [ + 173, + 431, + 823, + 502 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Minhao Cheng, Thong Le, Pin-Yu Chen, Jinfeng Yi, Huan Zhang, and Cho-Jui Hsieh. Queryefficient hard-label black-box attack: An optimization-based approach. CoRR, abs/1807.04457, 2018. URL http://arxiv.org/abs/1807.04457. ", + "bbox": [ + 174, + 510, + 821, + 554 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep structured prediction models. CoRR, abs/1707.05373, 2017a. ", + "bbox": [ + 174, + 561, + 821, + 592 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Moustapha Cisse, Piotr Bojanowski, Edouard Grave, Yann Dauphin, and Nicolas Usunier. Parseval networks: Improving robustness to adversarial examples. CoRR, abs/1704.08847, 2017b. ", + "bbox": [ + 174, + 599, + 823, + 630 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gintare Karolina Dziugaite, Zoubin Ghahramani, and Daniel Roy. A study of the effect of JPG compression on adversarial images. CoRR, abs/1608.00853, 2016. ", + "bbox": [ + 173, + 637, + 823, + 666 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In Proc. ICLR, 2015. ", + "bbox": [ + 173, + 675, + 825, + 704 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chuan Guo, Mayank Rana, Moustapha Cisse, and Laurens van der Maaten. Countering adversarial ´ images using input transformations. CoRR, abs/1711.00117, 2017. URL http://arxiv. org/abs/1711.00117. ", + "bbox": [ + 171, + 713, + 823, + 756 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chuan Guo, Jared S. Frank, and Kilian Q. Weinberger. Low frequency adversarial perturbations. CoRR, abs/1809.08758, 2018. URL http://arxiv.org/abs/1809.08758. ", + "bbox": [ + 171, + 765, + 825, + 795 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proc. CVPR, pp. 770–778, 2016. ", + "bbox": [ + 171, + 803, + 823, + 832 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gao Huang, Zhuang Liu, Kilian Weinberger, and Laurens van der Maaten. Densely connected convolutional networks. In Proc. CVPR, pp. 2261–2269, 2017a. ", + "bbox": [ + 171, + 840, + 823, + 869 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks on neural network policies. CoRR, abs/1702.02284, 2017b. ", + "bbox": [ + 173, + 877, + 823, + 907 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with limited queries and information. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2142–2151, 2018. URL http://proceedings.mlr.press/v80/ilyas18a.html. ", + "bbox": [ + 176, + 103, + 825, + 160 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. CoRR, abs/1611.01236, 2016. ", + "bbox": [ + 173, + 169, + 823, + 196 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xin Li and Fuxin Li. Adversarial examples detection in deep networks with convolutional filter statistics. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy, October 22-29, 2017, pp. 5775–5783, 2017. doi: 10.1109/ICCV.2017.615. URL https: //doi.org/10.1109/ICCV.2017.615. ", + "bbox": [ + 173, + 207, + 825, + 262 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiajun Lu, Theerasit Issaranon, and David A. Forsyth. Safetynet: Detecting and rejecting adversarial examples robustly. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy, October 22-29, 2017, pp. 446–454, 2017. doi: 10.1109/ICCV.2017.56. URL https: //doi.org/10.1109/ICCV.2017.56. ", + "bbox": [ + 173, + 272, + 825, + 329 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. CoRR, abs/1706.06083, 2017. URL http://arxiv.org/abs/1706.06083. ", + "bbox": [ + 176, + 337, + 825, + 381 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dongyu Meng and Hao Chen. Magnet: A two-pronged defense against adversarial examples. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, CCS 2017, Dallas, TX, USA, October 30 - November 03, 2017, pp. 135–147, 2017. doi: 10.1145/ 3133956.3134057. URL http://doi.acm.org/10.1145/3133956.3134057. ", + "bbox": [ + 173, + 388, + 825, + 445 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adversarial perturbations. CoRR, abs/1702.04267, 2017. URL http://arxiv.org/abs/1702. 04267. ", + "bbox": [ + 173, + 454, + 823, + 497 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: A simple and accurate method to fool deep neural networks. In Proc. CVPR, pp. 2574–2582, 2016. ", + "bbox": [ + 171, + 506, + 823, + 535 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal adversarial perturbations. In Proc. CVPR, pp. 86–94, 2017. ", + "bbox": [ + 169, + 542, + 823, + 573 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ali Shafahi, W. Ronny Huang, Christoph Studer, Soheil Feizi, and Tom Goldstein. Are adversarial examples inevitable? CoRR, abs/1809.02104, 2018. URL http://arxiv.org/abs/1809. 02104. ", + "bbox": [ + 173, + 580, + 823, + 623 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In In Proc. ICLR, 2014. ", + "bbox": [ + 173, + 632, + 823, + 662 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Proc. CVPR, pp. 2818–2826, 2016. ", + "bbox": [ + 173, + 670, + 825, + 700 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick D. McDaniel. Ensemble \\` adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. ", + "bbox": [ + 173, + 708, + 823, + 738 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chun-Chen Tu, Pai-Shun Ting, Pin-Yu Chen, Sijia Liu, Huan Zhang, Jinfeng Yi, Cho-Jui Hsieh, and Shin-Ming Cheng. Autozoom: Autoencoder-based zeroth order optimization method for attacking black-box neural networks. CoRR, abs/1805.11770, 2018. URL http://arxiv. org/abs/1805.11770. ", + "bbox": [ + 173, + 746, + 825, + 803 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan L. Yuille. Adversarial examples for semantic segmentation and object detection. In ICCV, pp. 1378–1387. IEEE Computer Society, 2017. ", + "bbox": [ + 173, + 811, + 823, + 854 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Weilin Xu, David Evans, and Yanjun Qi. Feature squeezing: Detecting adversarial examples in deep neural networks. CoRR, abs/1704.01155, 2017. ", + "bbox": [ + 171, + 863, + 825, + 892 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "S1 SUPPLEMENTARY MATERIAL ", + "text_level": 1, + "bbox": [ + 174, + 102, + 459, + 117 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "To demonstrate the generality of our evaluation of the Google Cloud Vision attack, we show 10 additional random images before and after perturbation by SimBA. In all cases, we successfully remove the top 3 original labels. ", + "bbox": [ + 174, + 133, + 825, + 176 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/13166133a7c0be9e0360f5ebb32dc44fc47742e69f4ae53f3a8d2f9c3f08a4c5.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 207, + 183, + 792, + 893 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/f3b5f1296a0308812fb35c3a31a88070db640ad95b4da878cf2854887752e494.jpg", + "image_caption": [ + "Figure S1: Additional adversarial images on Google Cloud Vision. " + ], + "image_footnote": [], + "bbox": [ + 205, + 143, + 790, + 847 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/rJeZS3RcYm/rJeZS3RcYm_middle.json b/parse/train/rJeZS3RcYm/rJeZS3RcYm_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..f5171beb5c7782ea41ef9f26b66df65fc5dfc233 --- /dev/null +++ b/parse/train/rJeZS3RcYm/rJeZS3RcYm_middle.json @@ -0,0 +1,33410 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 443, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 446, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 446, + 99 + ], + "score": 1.0, + "content": "SIMPLE BLACK-BOX ADVERSARIAL ATTACKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 244, + 137 + ], + "lines": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "spans": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 278, + 167, + 333, + 179 + ], + "lines": [ + { + "bbox": [ + 277, + 166, + 335, + 180 + ], + "spans": [ + { + "bbox": [ + 277, + 166, + 335, + 180 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 191, + 468, + 367 + ], + "lines": [ + { + "bbox": [ + 142, + 191, + 470, + 204 + ], + "spans": [ + { + "bbox": [ + 142, + 191, + 470, + 204 + ], + "score": 1.0, + "content": "The construction of adversarial images is a search problem in high dimensions", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 203, + 469, + 216 + ], + "spans": [ + { + "bbox": [ + 141, + 203, + 469, + 216 + ], + "score": 1.0, + "content": "within a small region around a target image. The goal is to find an imperceptibly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 212, + 470, + 227 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 470, + 227 + ], + "score": 1.0, + "content": "modified image that is misclassified by a target model. In the black-box setting,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 225, + 470, + 237 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 470, + 237 + ], + "score": 1.0, + "content": "only sporadic feedback is provided through occasional model evaluations. In this", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 140, + 235, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 140, + 235, + 470, + 249 + ], + "score": 1.0, + "content": "paper we provide a new algorithm whose search strategy is based on an intrigu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "score": 1.0, + "content": "ingly simple iterative principle: We randomly pick a low frequency component", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "score": 1.0, + "content": "of the discrete cosine transform (DCT) and either add or subtract it to the target", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "score": 1.0, + "content": "image. Model evaluations are only required to identify whether an operation de-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "score": 1.0, + "content": "creases the adversarial loss. Despite its simplicity, the proposed method can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "used for targeted and untargeted attacks — resulting in previously unprecedented", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 302, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 313 + ], + "score": 1.0, + "content": "query efficiency in both settings. We require a median of 600 black-box model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "queries (ResNet-50) to produce an adversarial ImageNet image, and we success-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "score": 1.0, + "content": "fully attack Google Cloud Vision with 2500 median queries, averaging to a cost", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 174, + 347 + ], + "score": 1.0, + "content": "of only", + "type": "text" + }, + { + "bbox": [ + 175, + 334, + 187, + 345 + ], + "score": 0.83, + "content": "\\$ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "per image. We argue that our proposed algorithm should serve as a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "strong baseline for future adversarial black-box attacks, in particular because it is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 356, + 452, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 452, + 369 + ], + "score": 1.0, + "content": "extremely fast and can be implemented in less than 20 lines of PyTorch code.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 205, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 208, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 404 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "score": 1.0, + "content": "As machine learning systems become prevalent in numerous application domains, the security of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "these systems in the presence of malicious adversaries becomes an important area of research. Many", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "recent studies have shown that decisions output by machine learning models can be altered arbitrarily", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "with imperceptible changes to the input (Carlini & Wagner, 2017b). These attacks on machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "learning models can be categorized by the capabilities of the adversary. White-box attacks require", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "the adversary to have complete knowledge of the target model, whereas black-box attacks require", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 480, + 428, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 428, + 492 + ], + "score": 1.0, + "content": "only queries to the target model that may return complete or partial information.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "Although often misunderstood as a property of neural networks (Szegedy et al., 2014), the vul-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "nerability towards adversarial examples is likely an inevitability of classifiers in high-dimensional", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "spaces (Shafahi et al., 2018). When the space is high-dimensional, randomly sampled points tend", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "to be far apart (simply because to be close, they would have to be similar along every dimension).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "However, the reverse is true for distances between points and high-dimensional decision surfaces.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "The distance from a point to a hyper-plane is only measured along the direction of its normal vector", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "(all other orthogonal directions are parallel to the hyper-plane).1 One can of course construct patho-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "logical counter examples of distributions with two classes that have only non-zero support in small", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "but distant regions of the space (e.g. classifying all-white vs. all-black images). However, the fact", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "that almost all models for classification of natural images are susceptible to white-box attacks (Atha-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "lye et al., 2018), suggests that natural images tend to be very close to decision boundaries learned", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 617, + 470, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 470, + 630 + ], + "score": 1.0, + "content": "by classifiers and demonstrates that the distribution of natural images is no such exception.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "If adversarial examples (almost) always exist, attacking a classifier turns into a search problem", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "within a small volume around a target image. In the white-box scenario, this search can be guided", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "effectively with gradient descent (Szegedy et al., 2014; Carlini & Wagner, 2017b; Madry et al.,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "2017). However, the black-box threat model is more applicable in many scenarios. Most popular", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "online machine learning services such as Clarifai or Google Cloud Vision only allow API calls to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "access the model’s predictions. These services do not release any internal details such as training", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "data and model parameters. Moreover, queries to the model may incur a significant cost of both time", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 720, + 389, + 730 + ], + "lines": [ + { + "bbox": [ + 119, + 718, + 390, + 731 + ], + "spans": [ + { + "bbox": [ + 119, + 718, + 390, + 731 + ], + "score": 1.0, + "content": "1Similar results hold for non-linear decision surfaces (Shafahi et al., 2018).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 443, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 446, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 446, + 99 + ], + "score": 1.0, + "content": "SIMPLE BLACK-BOX ADVERSARIAL ATTACKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 244, + 137 + ], + "lines": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "spans": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 111, + 115, + 245, + 138 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 167, + 333, + 179 + ], + "lines": [ + { + "bbox": [ + 277, + 166, + 335, + 180 + ], + "spans": [ + { + "bbox": [ + 277, + 166, + 335, + 180 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 191, + 468, + 367 + ], + "lines": [ + { + "bbox": [ + 142, + 191, + 470, + 204 + ], + "spans": [ + { + "bbox": [ + 142, + 191, + 470, + 204 + ], + "score": 1.0, + "content": "The construction of adversarial images is a search problem in high dimensions", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 203, + 469, + 216 + ], + "spans": [ + { + "bbox": [ + 141, + 203, + 469, + 216 + ], + "score": 1.0, + "content": "within a small region around a target image. The goal is to find an imperceptibly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 212, + 470, + 227 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 470, + 227 + ], + "score": 1.0, + "content": "modified image that is misclassified by a target model. In the black-box setting,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 225, + 470, + 237 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 470, + 237 + ], + "score": 1.0, + "content": "only sporadic feedback is provided through occasional model evaluations. In this", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 140, + 235, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 140, + 235, + 470, + 249 + ], + "score": 1.0, + "content": "paper we provide a new algorithm whose search strategy is based on an intrigu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "score": 1.0, + "content": "ingly simple iterative principle: We randomly pick a low frequency component", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "score": 1.0, + "content": "of the discrete cosine transform (DCT) and either add or subtract it to the target", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "score": 1.0, + "content": "image. Model evaluations are only required to identify whether an operation de-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "score": 1.0, + "content": "creases the adversarial loss. Despite its simplicity, the proposed method can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "used for targeted and untargeted attacks — resulting in previously unprecedented", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 302, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 313 + ], + "score": 1.0, + "content": "query efficiency in both settings. We require a median of 600 black-box model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "queries (ResNet-50) to produce an adversarial ImageNet image, and we success-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 336 + ], + "score": 1.0, + "content": "fully attack Google Cloud Vision with 2500 median queries, averaging to a cost", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 174, + 347 + ], + "score": 1.0, + "content": "of only", + "type": "text" + }, + { + "bbox": [ + 175, + 334, + 187, + 345 + ], + "score": 0.83, + "content": "\\$ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "per image. We argue that our proposed algorithm should serve as a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "strong baseline for future adversarial black-box attacks, in particular because it is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 356, + 452, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 452, + 369 + ], + "score": 1.0, + "content": "extremely fast and can be implemented in less than 20 lines of PyTorch code.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5, + "bbox_fs": [ + 140, + 191, + 470, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 205, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 208, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 404 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "score": 1.0, + "content": "As machine learning systems become prevalent in numerous application domains, the security of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "these systems in the presence of malicious adversaries becomes an important area of research. Many", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "recent studies have shown that decisions output by machine learning models can be altered arbitrarily", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "with imperceptible changes to the input (Carlini & Wagner, 2017b). These attacks on machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "learning models can be categorized by the capabilities of the adversary. White-box attacks require", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "the adversary to have complete knowledge of the target model, whereas black-box attacks require", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 480, + 428, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 428, + 492 + ], + "score": 1.0, + "content": "only queries to the target model that may return complete or partial information.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 413, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "Although often misunderstood as a property of neural networks (Szegedy et al., 2014), the vul-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "nerability towards adversarial examples is likely an inevitability of classifiers in high-dimensional", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "spaces (Shafahi et al., 2018). When the space is high-dimensional, randomly sampled points tend", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "to be far apart (simply because to be close, they would have to be similar along every dimension).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "However, the reverse is true for distances between points and high-dimensional decision surfaces.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "The distance from a point to a hyper-plane is only measured along the direction of its normal vector", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "(all other orthogonal directions are parallel to the hyper-plane).1 One can of course construct patho-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "logical counter examples of distributions with two classes that have only non-zero support in small", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "but distant regions of the space (e.g. classifying all-white vs. all-black images). However, the fact", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "that almost all models for classification of natural images are susceptible to white-box attacks (Atha-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "lye et al., 2018), suggests that natural images tend to be very close to decision boundaries learned", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 617, + 470, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 470, + 630 + ], + "score": 1.0, + "content": "by classifiers and demonstrates that the distribution of natural images is no such exception.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 496, + 506, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "If adversarial examples (almost) always exist, attacking a classifier turns into a search problem", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "within a small volume around a target image. In the white-box scenario, this search can be guided", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "effectively with gradient descent (Szegedy et al., 2014; Carlini & Wagner, 2017b; Madry et al.,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "2017). However, the black-box threat model is more applicable in many scenarios. Most popular", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "online machine learning services such as Clarifai or Google Cloud Vision only allow API calls to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "access the model’s predictions. These services do not release any internal details such as training", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "data and model parameters. Moreover, queries to the model may incur a significant cost of both time", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "and money. The number of black-box queries made to the model therefore serves as an important", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "metric of efficiency for the attack algorithm. Attacks that are too costly, or are easily defeated by", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "query limiting, pose less of a security risk than efficient attacks. To date, the average number of", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "queries performed by the best known black-box attacks remains high despite a large amount of", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "recent work in this area (Chen et al., 2017; Brendel et al., 2017; Cheng et al., 2018; Guo et al., 2018;", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "Tu et al., 2018; Ilyas et al., 2018). The most efficient and complex attacks still typically require tens", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "or even hundreds of thousands of queries. Until now, a method for query efficient black-box attacks", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 269, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 269, + 172 + ], + "score": 1.0, + "content": "has remained an open research problem.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 633, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "and money. The number of black-box queries made to the model therefore serves as an important", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "metric of efficiency for the attack algorithm. Attacks that are too costly, or are easily defeated by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "query limiting, pose less of a security risk than efficient attacks. To date, the average number of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "queries performed by the best known black-box attacks remains high despite a large amount of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "recent work in this area (Chen et al., 2017; Brendel et al., 2017; Cheng et al., 2018; Guo et al., 2018;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "Tu et al., 2018; Ilyas et al., 2018). The most efficient and complex attacks still typically require tens", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "or even hundreds of thousands of queries. Until now, a method for query efficient black-box attacks", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 269, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 269, + 172 + ], + "score": 1.0, + "content": "has remained an open research problem.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "In this paper we propose a simple, yet highly efficient black-box attack that is based on a very simple", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "intuition: If the distance to a decision boundary is very small, we don’t have to be too careful about", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the exact direction along which we traverse towards it. Concretely, we repeatedly pick a random", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "direction among a pre-specified set of orthogonal search directions, check if it is pointing towards", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 504, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 504, + 232 + ], + "score": 1.0, + "content": "or away from the decision boundary, and perturb the image by adding or subtracting the vector from", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "the image. Each update moves the image further away from the original image and towards the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 184, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 184, + 255 + ], + "score": 1.0, + "content": "decision boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "We provide some theoretical insight on the efficacy of our approach and evaluate various orthogonal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "search subspaces. Similar to Guo et al. (2018), we observe that restricting the search towards the low", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "frequency end of the discrete cosine transform (DCT) basis is particularly query efficient. Further,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "we demonstrate empirically that our approach achieves a similar success rate to state-of-the-art", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "black-box attack algorithms, however with an unprecedented low number of black-box queries. Due", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "to its simplicity — it can be implemented in PyTorch in under 20 lines of code — we consider our", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "method a new and perhaps surprisingly strong baseline for adversarial image attacks and we refer to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 312, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 312, + 348 + ], + "score": 1.0, + "content": "our algorithm as Simple Black-box Attack (SimBA).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 200, + 375 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 201, + 378 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 201, + 378 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "The study of adversarial examples concerns with the robustness of a machine learning model to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 392, + 411 + ], + "score": 1.0, + "content": "small changes in the input. In the realm of classification, given a model", + "type": "text" + }, + { + "bbox": [ + 393, + 399, + 400, + 409 + ], + "score": 0.79, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "and some input-label pair", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 410, + 131, + 422 + ], + "score": 0.9, + "content": "\\left( \\mathbf { x } , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 410, + 296, + 424 + ], + "score": 1.0, + "content": "on which the model correctly classifies", + "type": "text" + }, + { + "bbox": [ + 297, + 410, + 338, + 421 + ], + "score": 0.77, + "content": "h ( \\mathbf { x } ) = y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 410, + 343, + 424 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 343, + 411, + 351, + 420 + ], + "score": 0.4, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 410, + 405, + 424 + ], + "score": 1.0, + "content": "is said to be", + "type": "text" + }, + { + "bbox": [ + 406, + 412, + 412, + 421 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "-robust with respect to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 191, + 434 + ], + "score": 1.0, + "content": "perceptibility metric", + "type": "text" + }, + { + "bbox": [ + 192, + 421, + 216, + 433 + ], + "score": 0.91, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 420, + 227, + 434 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 227, + 421, + 273, + 433 + ], + "score": 0.93, + "content": "h ( \\mathbf { x } ^ { \\prime } ) \\bar { = } y", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 420, + 302, + 434 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 302, + 422, + 313, + 431 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 420, + 354, + 434 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 355, + 421, + 409, + 433 + ], + "score": 0.92, + "content": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) < \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 420, + 463, + 434 + ], + "score": 1.0, + "content": ". The metric", + "type": "text" + }, + { + "bbox": [ + 464, + 421, + 470, + 431 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "is often", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 190, + 445 + ], + "score": 1.0, + "content": "approximated by the", + "type": "text" + }, + { + "bbox": [ + 190, + 433, + 202, + 443 + ], + "score": 0.8, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 432, + 206, + 445 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 206, + 433, + 218, + 443 + ], + "score": 0.69, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 432, + 236, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 433, + 252, + 443 + ], + "score": 0.9, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "distances to measure the degree of visual dissimilarity between", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 169, + 455 + ], + "score": 1.0, + "content": "the clean input", + "type": "text" + }, + { + "bbox": [ + 169, + 445, + 177, + 453 + ], + "score": 0.59, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 443, + 275, + 455 + ], + "score": 1.0, + "content": "and the perturbed input", + "type": "text" + }, + { + "bbox": [ + 275, + 443, + 285, + 453 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 443, + 504, + 455 + ], + "score": 1.0, + "content": ". Following (Moosavi-Dezfooli et al., 2016; Moosavi-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 383, + 467 + ], + "score": 1.0, + "content": "Dezfooli et al., 2017), for the remainder of this paper, we will use", + "type": "text" + }, + { + "bbox": [ + 383, + 454, + 476, + 466 + ], + "score": 0.93, + "content": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) = \\| \\mathbf { x } - \\mathbf { x } ^ { \\prime } \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 299, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 299, + 477 + ], + "score": 1.0, + "content": "perceptibility metric unless specified otherwise.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 335, + 494 + ], + "score": 1.0, + "content": "Although this robustness requirement often holds when", + "type": "text" + }, + { + "bbox": [ + 335, + 482, + 387, + 492 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } + \\boldsymbol { \\delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "for randomly sampled noise", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 138, + 505 + ], + "score": 1.0, + "content": "vectors", + "type": "text" + }, + { + "bbox": [ + 139, + 493, + 145, + 503 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 493, + 505, + 505 + ], + "score": 1.0, + "content": ", many studies have shown that the model admits directions of non-robustness even for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 193, + 516 + ], + "score": 1.0, + "content": "very small values of", + "type": "text" + }, + { + "bbox": [ + 194, + 505, + 201, + 515 + ], + "score": 0.79, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "(Moosavi-Dezfooli et al., 2016; Carlini & Wagner, 2017b). More recent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "work (Shafahi et al., 2018) has verified this claim theoretically, showing that adversarial examples", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "are inherent in high-dimensional spaces. These findings motivate the problem of finding adversarial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 280, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 148, + 548 + ], + "score": 1.0, + "content": "directions", + "type": "text" + }, + { + "bbox": [ + 149, + 537, + 155, + 546 + ], + "score": 0.75, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 537, + 280, + 548 + ], + "score": 1.0, + "content": "that alter the model’s decision.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 553, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "The simplest success condition for the adversary is to change the original correct prediction of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 238, + 577 + ], + "score": 1.0, + "content": "model to an arbitrary class, i.e.,", + "type": "text" + }, + { + "bbox": [ + 238, + 564, + 282, + 576 + ], + "score": 0.92, + "content": "h ( \\mathbf { x } ^ { \\prime } ) \\neq y", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ". This is known as an untargeted attack. In contrast, a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 241, + 588 + ], + "score": 1.0, + "content": "targeted attack aims to construct", + "type": "text" + }, + { + "bbox": [ + 241, + 576, + 252, + 586 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 575, + 293, + 588 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 293, + 575, + 339, + 587 + ], + "score": 0.93, + "content": "h ( \\mathbf { x } ^ { \\prime } ) = y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 575, + 458, + 588 + ], + "score": 1.0, + "content": "for some chosen target class", + "type": "text" + }, + { + "bbox": [ + 459, + 576, + 468, + 587 + ], + "score": 0.85, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 575, + 505, + 588 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "sake of brevity, we will focus on untargeted attacks in our discussion, but all arguments in our paper", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 597, + 272, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 272, + 610 + ], + "score": 1.0, + "content": "are applicable to targeted attacks as well.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "Since the model outputs discrete decisions, finding adversarial perturbations to change the model’s", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "prediction is, at first, a discrete optimization problem. However, it is often useful to define a sur-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 152, + 649 + ], + "score": 1.0, + "content": "rogate loss", + "type": "text" + }, + { + "bbox": [ + 152, + 636, + 173, + 649 + ], + "score": 0.92, + "content": "\\ell _ { y } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 635, + 386, + 649 + ], + "score": 1.0, + "content": "that measures the degree of certainty that the model", + "type": "text" + }, + { + "bbox": [ + 386, + 637, + 394, + 646 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "classifies the input as class", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 646, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 113, + 659 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 646, + 506, + 660 + ], + "score": 1.0, + "content": ". The adversarial perturbation problem can therefore be formulated as the following constrained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 657, + 250, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 250, + 671 + ], + "score": 1.0, + "content": "(continuous) optimization problem:", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 675, + 348, + 708 + ], + "lines": [ + { + "bbox": [ + 263, + 675, + 348, + 708 + ], + "spans": [ + { + "bbox": [ + 263, + 675, + 348, + 708 + ], + "score": 0.67, + "content": "\\begin{array} { r } { \\underset { \\delta } { \\mathrm { m i n } } \\ \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\ \\lVert \\delta \\rVert _ { 2 } < \\rho . } \\end{array}", + "type": "interline_equation", + "image_path": "bef33e0fe2ef9984e0ccc1c1421ace0375dba965a6259204407868d51bc82fb6.jpg" + } + ] + } + ], + "index": 48.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 675, + 348, + 691.5 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 263, + 691.5, + 348, + 708.0 + ], + "spans": [], + "index": 49 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 105, + 83, + 506, + 172 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "In this paper we propose a simple, yet highly efficient black-box attack that is based on a very simple", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "intuition: If the distance to a decision boundary is very small, we don’t have to be too careful about", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the exact direction along which we traverse towards it. Concretely, we repeatedly pick a random", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "direction among a pre-specified set of orthogonal search directions, check if it is pointing towards", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 504, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 504, + 232 + ], + "score": 1.0, + "content": "or away from the decision boundary, and perturb the image by adding or subtracting the vector from", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "the image. Each update moves the image further away from the original image and towards the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 184, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 184, + 255 + ], + "score": 1.0, + "content": "decision boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 175, + 506, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "We provide some theoretical insight on the efficacy of our approach and evaluate various orthogonal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "search subspaces. Similar to Guo et al. (2018), we observe that restricting the search towards the low", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "frequency end of the discrete cosine transform (DCT) basis is particularly query efficient. Further,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "we demonstrate empirically that our approach achieves a similar success rate to state-of-the-art", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "black-box attack algorithms, however with an unprecedented low number of black-box queries. Due", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "to its simplicity — it can be implemented in PyTorch in under 20 lines of code — we consider our", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "method a new and perhaps surprisingly strong baseline for adversarial image attacks and we refer to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 312, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 312, + 348 + ], + "score": 1.0, + "content": "our algorithm as Simple Black-box Attack (SimBA).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 259, + 506, + 348 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 200, + 375 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 201, + 378 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 201, + 378 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "The study of adversarial examples concerns with the robustness of a machine learning model to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 392, + 411 + ], + "score": 1.0, + "content": "small changes in the input. In the realm of classification, given a model", + "type": "text" + }, + { + "bbox": [ + 393, + 399, + 400, + 409 + ], + "score": 0.79, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "and some input-label pair", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 410, + 131, + 422 + ], + "score": 0.9, + "content": "\\left( \\mathbf { x } , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 410, + 296, + 424 + ], + "score": 1.0, + "content": "on which the model correctly classifies", + "type": "text" + }, + { + "bbox": [ + 297, + 410, + 338, + 421 + ], + "score": 0.77, + "content": "h ( \\mathbf { x } ) = y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 410, + 343, + 424 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 343, + 411, + 351, + 420 + ], + "score": 0.4, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 410, + 405, + 424 + ], + "score": 1.0, + "content": "is said to be", + "type": "text" + }, + { + "bbox": [ + 406, + 412, + 412, + 421 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "-robust with respect to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 191, + 434 + ], + "score": 1.0, + "content": "perceptibility metric", + "type": "text" + }, + { + "bbox": [ + 192, + 421, + 216, + 433 + ], + "score": 0.91, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 420, + 227, + 434 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 227, + 421, + 273, + 433 + ], + "score": 0.93, + "content": "h ( \\mathbf { x } ^ { \\prime } ) \\bar { = } y", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 420, + 302, + 434 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 302, + 422, + 313, + 431 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 420, + 354, + 434 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 355, + 421, + 409, + 433 + ], + "score": 0.92, + "content": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) < \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 420, + 463, + 434 + ], + "score": 1.0, + "content": ". The metric", + "type": "text" + }, + { + "bbox": [ + 464, + 421, + 470, + 431 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "is often", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 190, + 445 + ], + "score": 1.0, + "content": "approximated by the", + "type": "text" + }, + { + "bbox": [ + 190, + 433, + 202, + 443 + ], + "score": 0.8, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 432, + 206, + 445 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 206, + 433, + 218, + 443 + ], + "score": 0.69, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 432, + 236, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 433, + 252, + 443 + ], + "score": 0.9, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "distances to measure the degree of visual dissimilarity between", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 169, + 455 + ], + "score": 1.0, + "content": "the clean input", + "type": "text" + }, + { + "bbox": [ + 169, + 445, + 177, + 453 + ], + "score": 0.59, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 443, + 275, + 455 + ], + "score": 1.0, + "content": "and the perturbed input", + "type": "text" + }, + { + "bbox": [ + 275, + 443, + 285, + 453 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 443, + 504, + 455 + ], + "score": 1.0, + "content": ". Following (Moosavi-Dezfooli et al., 2016; Moosavi-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 383, + 467 + ], + "score": 1.0, + "content": "Dezfooli et al., 2017), for the remainder of this paper, we will use", + "type": "text" + }, + { + "bbox": [ + 383, + 454, + 476, + 466 + ], + "score": 0.93, + "content": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) = \\| \\mathbf { x } - \\mathbf { x } ^ { \\prime } \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 299, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 299, + 477 + ], + "score": 1.0, + "content": "perceptibility metric unless specified otherwise.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 388, + 506, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 335, + 494 + ], + "score": 1.0, + "content": "Although this robustness requirement often holds when", + "type": "text" + }, + { + "bbox": [ + 335, + 482, + 387, + 492 + ], + "score": 0.91, + "content": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } + \\boldsymbol { \\delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "for randomly sampled noise", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 138, + 505 + ], + "score": 1.0, + "content": "vectors", + "type": "text" + }, + { + "bbox": [ + 139, + 493, + 145, + 503 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 493, + 505, + 505 + ], + "score": 1.0, + "content": ", many studies have shown that the model admits directions of non-robustness even for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 193, + 516 + ], + "score": 1.0, + "content": "very small values of", + "type": "text" + }, + { + "bbox": [ + 194, + 505, + 201, + 515 + ], + "score": 0.79, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "(Moosavi-Dezfooli et al., 2016; Carlini & Wagner, 2017b). More recent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "work (Shafahi et al., 2018) has verified this claim theoretically, showing that adversarial examples", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "are inherent in high-dimensional spaces. These findings motivate the problem of finding adversarial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 537, + 280, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 148, + 548 + ], + "score": 1.0, + "content": "directions", + "type": "text" + }, + { + "bbox": [ + 149, + 537, + 155, + 546 + ], + "score": 0.75, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 537, + 280, + 548 + ], + "score": 1.0, + "content": "that alter the model’s decision.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 481, + 505, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 553, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "The simplest success condition for the adversary is to change the original correct prediction of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 238, + 577 + ], + "score": 1.0, + "content": "model to an arbitrary class, i.e.,", + "type": "text" + }, + { + "bbox": [ + 238, + 564, + 282, + 576 + ], + "score": 0.92, + "content": "h ( \\mathbf { x } ^ { \\prime } ) \\neq y", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ". This is known as an untargeted attack. In contrast, a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 241, + 588 + ], + "score": 1.0, + "content": "targeted attack aims to construct", + "type": "text" + }, + { + "bbox": [ + 241, + 576, + 252, + 586 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 575, + 293, + 588 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 293, + 575, + 339, + 587 + ], + "score": 0.93, + "content": "h ( \\mathbf { x } ^ { \\prime } ) = y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 575, + 458, + 588 + ], + "score": 1.0, + "content": "for some chosen target class", + "type": "text" + }, + { + "bbox": [ + 459, + 576, + 468, + 587 + ], + "score": 0.85, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 575, + 505, + 588 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "sake of brevity, we will focus on untargeted attacks in our discussion, but all arguments in our paper", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 597, + 272, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 272, + 610 + ], + "score": 1.0, + "content": "are applicable to targeted attacks as well.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 554, + 506, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "Since the model outputs discrete decisions, finding adversarial perturbations to change the model’s", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "prediction is, at first, a discrete optimization problem. However, it is often useful to define a sur-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 152, + 649 + ], + "score": 1.0, + "content": "rogate loss", + "type": "text" + }, + { + "bbox": [ + 152, + 636, + 173, + 649 + ], + "score": 0.92, + "content": "\\ell _ { y } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 635, + 386, + 649 + ], + "score": 1.0, + "content": "that measures the degree of certainty that the model", + "type": "text" + }, + { + "bbox": [ + 386, + 637, + 394, + 646 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "classifies the input as class", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 646, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 113, + 659 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 646, + 506, + 660 + ], + "score": 1.0, + "content": ". The adversarial perturbation problem can therefore be formulated as the following constrained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 657, + 250, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 250, + 671 + ], + "score": 1.0, + "content": "(continuous) optimization problem:", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45, + "bbox_fs": [ + 104, + 614, + 506, + 671 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 675, + 348, + 708 + ], + "lines": [ + { + "bbox": [ + 263, + 675, + 348, + 708 + ], + "spans": [ + { + "bbox": [ + 263, + 675, + 348, + 708 + ], + "score": 0.67, + "content": "\\begin{array} { r } { \\underset { \\delta } { \\mathrm { m i n } } \\ \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\ \\lVert \\delta \\rVert _ { 2 } < \\rho . } \\end{array}", + "type": "interline_equation", + "image_path": "bef33e0fe2ef9984e0ccc1c1421ace0375dba965a6259204407868d51bc82fb6.jpg" + } + ] + } + ], + "index": 48.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 675, + 348, + 691.5 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 263, + 691.5, + 348, + 708.0 + ], + "spans": [], + "index": 49 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "When the model", + "type": "text" + }, + { + "bbox": [ + 177, + 83, + 184, + 92 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 81, + 290, + 95 + ], + "score": 1.0, + "content": "also outputs probabilities", + "type": "text" + }, + { + "bbox": [ + 290, + 82, + 329, + 94 + ], + "score": 0.92, + "content": "p _ { h } ( \\cdot \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "associated with each class, one commonly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 294, + 106 + ], + "score": 1.0, + "content": "used adversarial loss is the probability of class", + "type": "text" + }, + { + "bbox": [ + 294, + 95, + 301, + 105 + ], + "score": 0.52, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 93, + 305, + 106 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 305, + 93, + 386, + 106 + ], + "score": 0.86, + "content": "\\ell _ { y } ( \\mathbf { x } ^ { \\prime } ) = p _ { h } ( y \\mid \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ". For targeted attacks towards", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 315, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 128, + 117 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 128, + 105, + 137, + 116 + ], + "score": 0.86, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 104, + 221, + 117 + ], + "score": 1.0, + "content": "a common choice is", + "type": "text" + }, + { + "bbox": [ + 221, + 104, + 315, + 117 + ], + "score": 0.91, + "content": "\\ell _ { y ^ { \\prime } } ( \\mathbf { x } ^ { \\prime } ) \\overset { \\cdot } { = } - p _ { h } ( y ^ { \\prime } \\mid \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "Depending on the application domain, the attacker may have various degrees of knowledge about", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 174, + 145 + ], + "score": 1.0, + "content": "the target model", + "type": "text" + }, + { + "bbox": [ + 174, + 133, + 181, + 142 + ], + "score": 0.68, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 132, + 380, + 145 + ], + "score": 1.0, + "content": ". Under the white-box threat model, the classifier", + "type": "text" + }, + { + "bbox": [ + 380, + 133, + 388, + 142 + ], + "score": 0.82, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "is provided to the adversary.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "In this scenario, a powerful attack strategy is to perform gradient descent on the adversarial loss", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 127, + 166 + ], + "score": 0.9, + "content": "\\ell _ { y } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 153, + 341, + 168 + ], + "score": 1.0, + "content": ", or an approximation thereof. The perturbation norm", + "type": "text" + }, + { + "bbox": [ + 341, + 154, + 361, + 166 + ], + "score": 0.92, + "content": "\\bar { | | } \\delta \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "can be controlled by early stopping", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "(Goodfellow et al., 2015; Kurakin et al., 2016) or by including it as a component of the loss function", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 220, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 220, + 189 + ], + "score": 1.0, + "content": "(Carlini & Wagner, 2017b).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "However, the white-box assumption may be unsuitable for many applications. For instance, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 134, + 216 + ], + "score": 1.0, + "content": "model", + "type": "text" + }, + { + "bbox": [ + 134, + 205, + 141, + 214 + ], + "score": 0.68, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "may be exposed to the public as an API, allowing only queries on inputs. This black-box", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "threat model is much more challenging for the adversary, since gradient information may not be used", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 302, + 238 + ], + "score": 1.0, + "content": "to guide the finding of the adversarial direction", + "type": "text" + }, + { + "bbox": [ + 302, + 227, + 308, + 236 + ], + "score": 0.74, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 226, + 506, + 238 + ], + "score": 1.0, + "content": ", and each query to the model incurs a time and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "monetary cost. Thus, the adversary is tasked with an additional goal of minimizing the number of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 247, + 191, + 261 + ], + "score": 1.0, + "content": "black-box queries to", + "type": "text" + }, + { + "bbox": [ + 191, + 248, + 199, + 258 + ], + "score": 0.77, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "while succeeding in constructing an imperceptible adversarial perturbation.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 498, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 498, + 272 + ], + "score": 1.0, + "content": "This poses a slightly modified constrained optimization problem (with a slight abuse of notation):", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 273, + 355, + 321 + ], + "lines": [ + { + "bbox": [ + 257, + 273, + 355, + 321 + ], + "spans": [ + { + "bbox": [ + 257, + 273, + 355, + 321 + ], + "score": 0.64, + "content": "\\begin{array} { c } { \\displaystyle \\operatorname* { m i n } _ { \\delta } \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\| \\delta \\| _ { 2 } < \\rho } \\\\ { \\mathrm { q u e r i e s } \\leq B } \\end{array}", + "type": "interline_equation", + "image_path": "cdd75a22462751e269ecc0465704960e5591e17ac52bc906fee4d34db5a92025.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 273, + 355, + 297.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 257, + 297.0, + 355, + 321.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 135, + 336 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 324, + 144, + 334 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "is some fixed budget for the number of queries allowed during the optimization. For", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 226, + 347 + ], + "score": 1.0, + "content": "iterative methods, the budget", + "type": "text" + }, + { + "bbox": [ + 226, + 335, + 236, + 344 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "constrains the number of iterations the algorithm may take, hence", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 346, + 393, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 393, + 359 + ], + "score": 1.0, + "content": "requiring that the attack algorithm converges to a solution very quickly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 288, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 289, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 289, + 387 + ], + "score": 1.0, + "content": "3 A SIMPLE BLACK-BOX ATTACK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 477, + 410 + ], + "score": 1.0, + "content": "Imagine that we have some image x which a black-box neural network classifies as category", + "type": "text" + }, + { + "bbox": [ + 477, + 400, + 484, + 409 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 193, + 421 + ], + "score": 1.0, + "content": "predicted probability", + "type": "text" + }, + { + "bbox": [ + 194, + 408, + 234, + 421 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 407, + 399, + 421 + ], + "score": 1.0, + "content": ". Our goal is to find a small pertubation", + "type": "text" + }, + { + "bbox": [ + 399, + 408, + 406, + 418 + ], + "score": 0.75, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "such that the prediction", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 417, + 168, + 433 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 163, + 432 + ], + "score": 0.91, + "content": "h ( \\mathbf { x } + \\delta ) \\neq y", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 417, + 168, + 433 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 442, + 252, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 253, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 253, + 456 + ], + "score": 1.0, + "content": "Algorithm 1 SimBA in Pesudocode", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table", + "bbox": [ + 109, + 456, + 506, + 588 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 456, + 506, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 456, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 109, + 456, + 506, + 588 + ], + "score": 0.949, + "html": "
1: procedure SIMBA(x,y, Q,∈)
2: δ=0 3:> Query black-box for initial probabilities
p = Ph(y|x)
4: while Py = maxy' Py' do 5:While the true label has not changed
Pick randomly without replacement: q ∈ Q> Try eq and then -eq if that fails.
6:for α ∈{ε,-ε} do
7:p'= ph(y|x+δ+aq) Query the black-box model
8:> If the probability is lower,accept this step
9:if py<Py then =δ+aq
10:p=p'
11: break return δMove on to the next direction
", + "type": "table", + "image_path": "41db931fe0f9a99cba716ed39c0f54e3df276345878beb14c3e44eea3c2cf93b.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 109, + 456, + 506, + 500.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 109, + 500.0, + 506, + 544.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 109, + 544.0, + 506, + 588.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 430, + 612 + ], + "score": 1.0, + "content": "The intuition behind our method is simple: for any direction q and some step size", + "type": "text" + }, + { + "bbox": [ + 430, + 601, + 435, + 609 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 597, + 466, + 612 + ], + "score": 1.0, + "content": ", one of", + "type": "text" + }, + { + "bbox": [ + 466, + 600, + 494, + 610 + ], + "score": 0.89, + "content": "\\mathbf { x } + \\epsilon \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 137, + 621 + ], + "score": 0.77, + "content": "\\mathbf { x } - \\epsilon \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 610, + 218, + 622 + ], + "score": 1.0, + "content": "is likely to decrease", + "type": "text" + }, + { + "bbox": [ + 218, + 609, + 257, + 622 + ], + "score": 0.93, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 610, + 454, + 622 + ], + "score": 1.0, + "content": ". We therefore repeatedly pick random directions", + "type": "text" + }, + { + "bbox": [ + 454, + 612, + 462, + 621 + ], + "score": 0.33, + "content": "\\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "and either", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "add or subtract them. The approach is summarized in psuedocode in Algorithm 1. To minimize the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 190, + 644 + ], + "score": 1.0, + "content": "number of queries to", + "type": "text" + }, + { + "bbox": [ + 190, + 631, + 207, + 644 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 632, + 451, + 644 + ], + "score": 1.0, + "content": "we always first try adding \u000fq. If this decreases the probability", + "type": "text" + }, + { + "bbox": [ + 451, + 631, + 490, + 643 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 642, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 656 + ], + "score": 1.0, + "content": "take the step, otherwise we try subtracting \u000fq. This procedure requires between 1.4 and 1.5 queries", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "per update on average (depending on the data set and target model). Our proposed method – Simple", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 396, + 678 + ], + "score": 1.0, + "content": "Black-box Attack (SimBA) – takes as input the target image label pair", + "type": "text" + }, + { + "bbox": [ + 397, + 664, + 420, + 676 + ], + "score": 0.91, + "content": "\\left( \\mathbf { x } , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 664, + 505, + 678 + ], + "score": 1.0, + "content": ", a set of orthogonal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 676, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 178, + 688 + ], + "score": 1.0, + "content": "candidate vectors", + "type": "text" + }, + { + "bbox": [ + 179, + 676, + 188, + 687 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 676, + 251, + 688 + ], + "score": 1.0, + "content": "and a step-size", + "type": "text" + }, + { + "bbox": [ + 251, + 676, + 275, + 686 + ], + "score": 0.87, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 676, + 373, + 688 + ], + "score": 1.0, + "content": ". For simplicity we pick", + "type": "text" + }, + { + "bbox": [ + 374, + 676, + 402, + 687 + ], + "score": 0.92, + "content": "\\mathbf { q } \\in Q", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 676, + 505, + 688 + ], + "score": 1.0, + "content": "uniformly at random. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 686, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 506, + 698 + ], + "score": 1.0, + "content": "guarantee maximum query efficiency, we ensure that no two directions cancel each other out and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 698, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 382, + 710 + ], + "score": 1.0, + "content": "diminish progress, or amplify each other and increase the norm of", + "type": "text" + }, + { + "bbox": [ + 382, + 698, + 388, + 707 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 698, + 505, + 710 + ], + "score": 1.0, + "content": "disproportionately. For this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 368, + 721 + ], + "score": 1.0, + "content": "reason we pick q without replacement and restrict all vectors in √", + "type": "text" + }, + { + "bbox": [ + 368, + 709, + 377, + 720 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "to be orthogonal. As we show", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 444, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 323, + 733 + ], + "score": 1.0, + "content": "later, this results in a guaranteed perturbation norm of", + "type": "text" + }, + { + "bbox": [ + 324, + 719, + 376, + 732 + ], + "score": 0.94, + "content": "\\| \\delta \\| _ { 2 } = \\sqrt { T } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 720, + 398, + 733 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 398, + 721, + 407, + 730 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 720, + 444, + 733 + ], + "score": 1.0, + "content": "updates.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "When the model", + "type": "text" + }, + { + "bbox": [ + 177, + 83, + 184, + 92 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 81, + 290, + 95 + ], + "score": 1.0, + "content": "also outputs probabilities", + "type": "text" + }, + { + "bbox": [ + 290, + 82, + 329, + 94 + ], + "score": 0.92, + "content": "p _ { h } ( \\cdot \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "associated with each class, one commonly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 294, + 106 + ], + "score": 1.0, + "content": "used adversarial loss is the probability of class", + "type": "text" + }, + { + "bbox": [ + 294, + 95, + 301, + 105 + ], + "score": 0.52, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 93, + 305, + 106 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 305, + 93, + 386, + 106 + ], + "score": 0.86, + "content": "\\ell _ { y } ( \\mathbf { x } ^ { \\prime } ) = p _ { h } ( y \\mid \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ". For targeted attacks towards", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 315, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 128, + 117 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 128, + 105, + 137, + 116 + ], + "score": 0.86, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 104, + 221, + 117 + ], + "score": 1.0, + "content": "a common choice is", + "type": "text" + }, + { + "bbox": [ + 221, + 104, + 315, + 117 + ], + "score": 0.91, + "content": "\\ell _ { y ^ { \\prime } } ( \\mathbf { x } ^ { \\prime } ) \\overset { \\cdot } { = } - p _ { h } ( y ^ { \\prime } \\mid \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "Depending on the application domain, the attacker may have various degrees of knowledge about", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 174, + 145 + ], + "score": 1.0, + "content": "the target model", + "type": "text" + }, + { + "bbox": [ + 174, + 133, + 181, + 142 + ], + "score": 0.68, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 132, + 380, + 145 + ], + "score": 1.0, + "content": ". Under the white-box threat model, the classifier", + "type": "text" + }, + { + "bbox": [ + 380, + 133, + 388, + 142 + ], + "score": 0.82, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "is provided to the adversary.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "In this scenario, a powerful attack strategy is to perform gradient descent on the adversarial loss", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 127, + 166 + ], + "score": 0.9, + "content": "\\ell _ { y } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 153, + 341, + 168 + ], + "score": 1.0, + "content": ", or an approximation thereof. The perturbation norm", + "type": "text" + }, + { + "bbox": [ + 341, + 154, + 361, + 166 + ], + "score": 0.92, + "content": "\\bar { | | } \\delta \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "can be controlled by early stopping", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "(Goodfellow et al., 2015; Kurakin et al., 2016) or by including it as a component of the loss function", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 220, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 220, + 189 + ], + "score": 1.0, + "content": "(Carlini & Wagner, 2017b).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 121, + 506, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "However, the white-box assumption may be unsuitable for many applications. For instance, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 134, + 216 + ], + "score": 1.0, + "content": "model", + "type": "text" + }, + { + "bbox": [ + 134, + 205, + 141, + 214 + ], + "score": 0.68, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "may be exposed to the public as an API, allowing only queries on inputs. This black-box", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "threat model is much more challenging for the adversary, since gradient information may not be used", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 302, + 238 + ], + "score": 1.0, + "content": "to guide the finding of the adversarial direction", + "type": "text" + }, + { + "bbox": [ + 302, + 227, + 308, + 236 + ], + "score": 0.74, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 226, + 506, + 238 + ], + "score": 1.0, + "content": ", and each query to the model incurs a time and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "monetary cost. Thus, the adversary is tasked with an additional goal of minimizing the number of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 247, + 191, + 261 + ], + "score": 1.0, + "content": "black-box queries to", + "type": "text" + }, + { + "bbox": [ + 191, + 248, + 199, + 258 + ], + "score": 0.77, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "while succeeding in constructing an imperceptible adversarial perturbation.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 498, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 498, + 272 + ], + "score": 1.0, + "content": "This poses a slightly modified constrained optimization problem (with a slight abuse of notation):", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 192, + 506, + 272 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 273, + 355, + 321 + ], + "lines": [ + { + "bbox": [ + 257, + 273, + 355, + 321 + ], + "spans": [ + { + "bbox": [ + 257, + 273, + 355, + 321 + ], + "score": 0.64, + "content": "\\begin{array} { c } { \\displaystyle \\operatorname* { m i n } _ { \\delta } \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\| \\delta \\| _ { 2 } < \\rho } \\\\ { \\mathrm { q u e r i e s } \\leq B } \\end{array}", + "type": "interline_equation", + "image_path": "cdd75a22462751e269ecc0465704960e5591e17ac52bc906fee4d34db5a92025.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 273, + 355, + 297.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 257, + 297.0, + 355, + 321.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 135, + 336 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 324, + 144, + 334 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "is some fixed budget for the number of queries allowed during the optimization. For", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 226, + 347 + ], + "score": 1.0, + "content": "iterative methods, the budget", + "type": "text" + }, + { + "bbox": [ + 226, + 335, + 236, + 344 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "constrains the number of iterations the algorithm may take, hence", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 346, + 393, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 393, + 359 + ], + "score": 1.0, + "content": "requiring that the attack algorithm converges to a solution very quickly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 322, + 505, + 359 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 288, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 289, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 289, + 387 + ], + "score": 1.0, + "content": "3 A SIMPLE BLACK-BOX ATTACK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 477, + 410 + ], + "score": 1.0, + "content": "Imagine that we have some image x which a black-box neural network classifies as category", + "type": "text" + }, + { + "bbox": [ + 477, + 400, + 484, + 409 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 193, + 421 + ], + "score": 1.0, + "content": "predicted probability", + "type": "text" + }, + { + "bbox": [ + 194, + 408, + 234, + 421 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 407, + 399, + 421 + ], + "score": 1.0, + "content": ". Our goal is to find a small pertubation", + "type": "text" + }, + { + "bbox": [ + 399, + 408, + 406, + 418 + ], + "score": 0.75, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "such that the prediction", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 417, + 168, + 433 + ], + "spans": [ + { + "bbox": [ + 107, + 419, + 163, + 432 + ], + "score": 0.91, + "content": "h ( \\mathbf { x } + \\delta ) \\neq y", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 417, + 168, + 433 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 396, + 505, + 433 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 442, + 252, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 253, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 253, + 456 + ], + "score": 1.0, + "content": "Algorithm 1 SimBA in Pesudocode", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table", + "bbox": [ + 109, + 456, + 506, + 588 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 456, + 506, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 456, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 109, + 456, + 506, + 588 + ], + "score": 0.949, + "html": "
1: procedure SIMBA(x,y, Q,∈)
2: δ=0 3:> Query black-box for initial probabilities
p = Ph(y|x)
4: while Py = maxy' Py' do 5:While the true label has not changed
Pick randomly without replacement: q ∈ Q> Try eq and then -eq if that fails.
6:for α ∈{ε,-ε} do
7:p'= ph(y|x+δ+aq) Query the black-box model
8:> If the probability is lower,accept this step
9:if py<Py then =δ+aq
10:p=p'
11: break return δMove on to the next direction
", + "type": "table", + "image_path": "41db931fe0f9a99cba716ed39c0f54e3df276345878beb14c3e44eea3c2cf93b.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 109, + 456, + 506, + 500.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 109, + 500.0, + 506, + 544.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 109, + 544.0, + 506, + 588.0 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 430, + 612 + ], + "score": 1.0, + "content": "The intuition behind our method is simple: for any direction q and some step size", + "type": "text" + }, + { + "bbox": [ + 430, + 601, + 435, + 609 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 597, + 466, + 612 + ], + "score": 1.0, + "content": ", one of", + "type": "text" + }, + { + "bbox": [ + 466, + 600, + 494, + 610 + ], + "score": 0.89, + "content": "\\mathbf { x } + \\epsilon \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 137, + 621 + ], + "score": 0.77, + "content": "\\mathbf { x } - \\epsilon \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 610, + 218, + 622 + ], + "score": 1.0, + "content": "is likely to decrease", + "type": "text" + }, + { + "bbox": [ + 218, + 609, + 257, + 622 + ], + "score": 0.93, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 610, + 454, + 622 + ], + "score": 1.0, + "content": ". We therefore repeatedly pick random directions", + "type": "text" + }, + { + "bbox": [ + 454, + 612, + 462, + 621 + ], + "score": 0.33, + "content": "\\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "and either", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "add or subtract them. The approach is summarized in psuedocode in Algorithm 1. To minimize the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 190, + 644 + ], + "score": 1.0, + "content": "number of queries to", + "type": "text" + }, + { + "bbox": [ + 190, + 631, + 207, + 644 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 632, + 451, + 644 + ], + "score": 1.0, + "content": "we always first try adding \u000fq. If this decreases the probability", + "type": "text" + }, + { + "bbox": [ + 451, + 631, + 490, + 643 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 642, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 656 + ], + "score": 1.0, + "content": "take the step, otherwise we try subtracting \u000fq. This procedure requires between 1.4 and 1.5 queries", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "per update on average (depending on the data set and target model). Our proposed method – Simple", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 396, + 678 + ], + "score": 1.0, + "content": "Black-box Attack (SimBA) – takes as input the target image label pair", + "type": "text" + }, + { + "bbox": [ + 397, + 664, + 420, + 676 + ], + "score": 0.91, + "content": "\\left( \\mathbf { x } , y \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 664, + 505, + 678 + ], + "score": 1.0, + "content": ", a set of orthogonal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 676, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 178, + 688 + ], + "score": 1.0, + "content": "candidate vectors", + "type": "text" + }, + { + "bbox": [ + 179, + 676, + 188, + 687 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 676, + 251, + 688 + ], + "score": 1.0, + "content": "and a step-size", + "type": "text" + }, + { + "bbox": [ + 251, + 676, + 275, + 686 + ], + "score": 0.87, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 676, + 373, + 688 + ], + "score": 1.0, + "content": ". For simplicity we pick", + "type": "text" + }, + { + "bbox": [ + 374, + 676, + 402, + 687 + ], + "score": 0.92, + "content": "\\mathbf { q } \\in Q", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 676, + 505, + 688 + ], + "score": 1.0, + "content": "uniformly at random. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 686, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 506, + 698 + ], + "score": 1.0, + "content": "guarantee maximum query efficiency, we ensure that no two directions cancel each other out and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 698, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 382, + 710 + ], + "score": 1.0, + "content": "diminish progress, or amplify each other and increase the norm of", + "type": "text" + }, + { + "bbox": [ + 382, + 698, + 388, + 707 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 698, + 505, + 710 + ], + "score": 1.0, + "content": "disproportionately. For this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 368, + 721 + ], + "score": 1.0, + "content": "reason we pick q without replacement and restrict all vectors in √", + "type": "text" + }, + { + "bbox": [ + 368, + 709, + 377, + 720 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "to be orthogonal. As we show", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 444, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 323, + 733 + ], + "score": 1.0, + "content": "later, this results in a guaranteed perturbation norm of", + "type": "text" + }, + { + "bbox": [ + 324, + 719, + 376, + 732 + ], + "score": 0.94, + "content": "\\| \\delta \\| _ { 2 } = \\sqrt { T } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 720, + 398, + 733 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 398, + 721, + 407, + 730 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 720, + 444, + 733 + ], + "score": 1.0, + "content": "updates.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 597, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 85, + 506, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 85, + 506, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 85, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 112, + 85, + 506, + 213 + ], + "score": 0.968, + "type": "image", + "image_path": "4cd2729197b86e4d0ecc7f994ae80686a119688575848cf4e902bc9294c10c6c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 85, + 506, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 127.66666666666666, + 506, + 170.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 170.33333333333331, + 506, + 212.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 227, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 227, + 504, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 504, + 239 + ], + "score": 1.0, + "content": "Figure 1: Plot of the change in true class probability when descending in a random direction in pixel", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 237, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 289, + 252 + ], + "score": 1.0, + "content": "space (left) and DCT space (right) at step size", + "type": "text" + }, + { + "bbox": [ + 290, + 240, + 295, + 248 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 237, + 506, + 252 + ], + "score": 1.0, + "content": ". The average change (purple line) is almost linear in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 112, + 259 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 249, + 459, + 262 + ], + "score": 1.0, + "content": "with the slope being steeper when the direction is sampled in DCT space. Furthermore,", + "type": "text" + }, + { + "bbox": [ + 459, + 250, + 479, + 260 + ], + "score": 0.88, + "content": "98 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 289, + 274 + ], + "score": 1.0, + "content": "directions sampled in DCT space have either", + "type": "text" + }, + { + "bbox": [ + 289, + 262, + 298, + 272 + ], + "score": 0.44, + "content": "\\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 259, + 309, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 309, + 262, + 325, + 272 + ], + "score": 0.69, + "content": "- \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 259, + 421, + 274 + ], + "score": 1.0, + "content": "descending, while only", + "type": "text" + }, + { + "bbox": [ + 421, + 261, + 441, + 271 + ], + "score": 0.87, + "content": "73 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "are descending", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 270, + 166, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 166, + 285 + ], + "score": 1.0, + "content": "in pixel space.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 291, + 222, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 224, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 224, + 303 + ], + "score": 1.0, + "content": "3.1 HYPER-PARAMETERS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 311, + 503, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 501, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 417, + 325 + ], + "score": 1.0, + "content": "The only hyper-parameters of SimBA are the set of orthogonal search vectors", + "type": "text" + }, + { + "bbox": [ + 418, + 312, + 427, + 323 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 309, + 496, + 325 + ], + "score": 1.0, + "content": "and the step size", + "type": "text" + }, + { + "bbox": [ + 496, + 314, + 501, + 321 + ], + "score": 0.56, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 328, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 204, + 342 + ], + "score": 1.0, + "content": "Orthogonal directions", + "type": "text" + }, + { + "bbox": [ + 204, + 329, + 213, + 340 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 327, + 484, + 342 + ], + "score": 1.0, + "content": ". A natural first choice for the set of orthogonal search directions", + "type": "text" + }, + { + "bbox": [ + 484, + 329, + 494, + 340 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 275, + 352 + ], + "score": 1.0, + "content": "to randomly subsample the natural basis,", + "type": "text" + }, + { + "bbox": [ + 276, + 340, + 305, + 351 + ], + "score": 0.92, + "content": "Q = I", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ", which corresponds to performing our algorithm", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "directly in pixel space. Essentially each iteration we are increasing or decreasing one color of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "single randomly chosen pixel. Alternatively, we can consider directions in frequency domain. Re-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "cent work has discovered that random noise in low frequency space are more likely to be adversarial", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "(Guo et al., 2018). To exploit this fact, we follow Guo et al. (2018) and propose to exploit the dis-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "crete cosine transform (DCT). The discrete cosine transform is an orthonormal transformation that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 402, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 246, + 419 + ], + "score": 1.0, + "content": "maps signals in a 2D image space", + "type": "text" + }, + { + "bbox": [ + 247, + 404, + 271, + 415 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 402, + 507, + 419 + ], + "score": 1.0, + "content": "to frequency coefficients corresponding to magnitudes of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "wave functions. In what follows, we will refer to the set of orthonormal frequencies extracted by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 140, + 441 + ], + "score": 1.0, + "content": "DCT as", + "type": "text" + }, + { + "bbox": [ + 141, + 427, + 167, + 439 + ], + "score": 0.9, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 426, + 299, + 441 + ], + "score": 1.0, + "content": ". While the full set of directions", + "type": "text" + }, + { + "bbox": [ + 299, + 427, + 326, + 439 + ], + "score": 0.9, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 426, + 364, + 441 + ], + "score": 1.0, + "content": "contains", + "type": "text" + }, + { + "bbox": [ + 364, + 427, + 389, + 438 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "frequencies, we keep only a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 140, + 451 + ], + "score": 1.0, + "content": "fraction", + "type": "text" + }, + { + "bbox": [ + 140, + 440, + 146, + 448 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "of the lowest frequency directions in order to make the adversarial perturbation in the low", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 176, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 176, + 463 + ], + "score": 1.0, + "content": "frequency space.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 368, + 479 + ], + "score": 1.0, + "content": "Choosing a learning rate \u000f. Given any set of search directions", + "type": "text" + }, + { + "bbox": [ + 368, + 466, + 377, + 477 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 465, + 506, + 479 + ], + "score": 1.0, + "content": ", some directions may decrease", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 475, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 148, + 489 + ], + "score": 0.91, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 475, + 506, + 492 + ], + "score": 1.0, + "content": "more than others. Furthermore, it is not naively obvious that arbitrary steps along any", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 487, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 144, + 501 + ], + "score": 1.0, + "content": "direction", + "type": "text" + }, + { + "bbox": [ + 145, + 489, + 156, + 500 + ], + "score": 0.86, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 487, + 392, + 501 + ], + "score": 1.0, + "content": "decrease the probability. It is possible for the probability", + "type": "text" + }, + { + "bbox": [ + 392, + 488, + 459, + 500 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid { \\bf x } + \\epsilon { \\bf q } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 487, + 504, + 501 + ], + "score": 1.0, + "content": "to be non-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 164, + 512 + ], + "score": 1.0, + "content": "monotonic in", + "type": "text" + }, + { + "bbox": [ + 164, + 501, + 170, + 509 + ], + "score": 0.27, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 498, + 483, + 512 + ], + "score": 1.0, + "content": ". In Figure 1, we plot the relative decrease in probability as a function of", + "type": "text" + }, + { + "bbox": [ + 483, + 501, + 489, + 509 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "randomly sampled search directions in both pixel space and the DCT space. This figure highlights", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 260, + 535 + ], + "score": 1.0, + "content": "an illuminating result: the probability", + "type": "text" + }, + { + "bbox": [ + 260, + 521, + 321, + 533 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid { \\bf x } \\pm \\epsilon { \\bf q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 520, + 435, + 535 + ], + "score": 1.0, + "content": "decreases monotonically in", + "type": "text" + }, + { + "bbox": [ + 435, + 523, + 441, + 531 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "with surprising", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 546 + ], + "score": 1.0, + "content": "consistency (across random images and vectors q)! Although some directions eventually increase", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 541, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 505, + 556 + ], + "score": 1.0, + "content": "the true class probability, the expected change in this probability is negative with a relatively steep", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 415, + 566 + ], + "score": 1.0, + "content": "slope. This means that our algorithm is not overly sensitive to the choice of", + "type": "text" + }, + { + "bbox": [ + 416, + 556, + 422, + 564 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "and the iterates will", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "decrease the true class probability quickly. The figure also shows that search in the DCT space tends", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 576, + 504, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 504, + 588 + ], + "score": 1.0, + "content": "to lead to steeper descent directions than pixel space. As we show in the next section, we can tightly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 169, + 599 + ], + "score": 1.0, + "content": "bound the final", + "type": "text" + }, + { + "bbox": [ + 170, + 587, + 182, + 597 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 586, + 358, + 599 + ], + "score": 1.0, + "content": "-norm of the perturbation given a choice of", + "type": "text" + }, + { + "bbox": [ + 358, + 588, + 364, + 596 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 586, + 493, + 599 + ], + "score": 1.0, + "content": "and maximum number of steps", + "type": "text" + }, + { + "bbox": [ + 493, + 587, + 501, + 596 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 586, + 505, + 599 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 596, + 442, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 172, + 612 + ], + "score": 1.0, + "content": "so the choice of", + "type": "text" + }, + { + "bbox": [ + 172, + 600, + 177, + 608 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 596, + 417, + 612 + ], + "score": 1.0, + "content": "depends primarily on budget considerations with respect to", + "type": "text" + }, + { + "bbox": [ + 418, + 597, + 438, + 610 + ], + "score": 0.92, + "content": "\\lVert \\delta \\rVert _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 596, + 442, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 622, + 248, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 250, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 250, + 635 + ], + "score": 1.0, + "content": "3.2 BUDGET CONSIDERATIONS.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 482, + 656 + ], + "score": 1.0, + "content": "Each iteration of our algorithm strictly increases the norm of the adversarial perturbation", + "type": "text" + }, + { + "bbox": [ + 482, + 644, + 504, + 654 + ], + "score": 0.86, + "content": "\\delta _ { i } \\ =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 107, + 655, + 121, + 665 + ], + "score": 0.84, + "content": "\\epsilon \\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 653, + 312, + 667 + ], + "score": 1.0, + "content": ". By exploiting the orthonormality of the basis", + "type": "text" + }, + { + "bbox": [ + 312, + 654, + 321, + 665 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 653, + 482, + 667 + ], + "score": 1.0, + "content": ", we can bound this change tightly. Let", + "type": "text" + }, + { + "bbox": [ + 482, + 655, + 505, + 665 + ], + "score": 0.86, + "content": "\\alpha _ { i } \\in", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 665, + 382, + 678 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 147, + 677 + ], + "score": 0.93, + "content": "\\{ - \\epsilon , 0 , \\epsilon \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 665, + 361, + 678 + ], + "score": 1.0, + "content": "denote the sign of the search direction chosen at step", + "type": "text" + }, + { + "bbox": [ + 361, + 666, + 366, + 675 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 665, + 382, + 678 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 682, + 343, + 695 + ], + "lines": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "spans": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "score": 0.92, + "content": "\\delta _ { i + 1 } = \\delta _ { i } + \\alpha _ { i } { \\bf q } _ { i } .", + "type": "interline_equation", + "image_path": "281e4819b4b98a57958284771e7700f1a716d4852a1192a9227fcb7af81e6995.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 85, + 506, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 85, + 506, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 85, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 112, + 85, + 506, + 213 + ], + "score": 0.968, + "type": "image", + "image_path": "4cd2729197b86e4d0ecc7f994ae80686a119688575848cf4e902bc9294c10c6c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 85, + 506, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 127.66666666666666, + 506, + 170.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 170.33333333333331, + 506, + 212.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 227, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 227, + 504, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 504, + 239 + ], + "score": 1.0, + "content": "Figure 1: Plot of the change in true class probability when descending in a random direction in pixel", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 237, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 289, + 252 + ], + "score": 1.0, + "content": "space (left) and DCT space (right) at step size", + "type": "text" + }, + { + "bbox": [ + 290, + 240, + 295, + 248 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 237, + 506, + 252 + ], + "score": 1.0, + "content": ". The average change (purple line) is almost linear in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 112, + 259 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 249, + 459, + 262 + ], + "score": 1.0, + "content": "with the slope being steeper when the direction is sampled in DCT space. Furthermore,", + "type": "text" + }, + { + "bbox": [ + 459, + 250, + 479, + 260 + ], + "score": 0.88, + "content": "98 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 289, + 274 + ], + "score": 1.0, + "content": "directions sampled in DCT space have either", + "type": "text" + }, + { + "bbox": [ + 289, + 262, + 298, + 272 + ], + "score": 0.44, + "content": "\\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 259, + 309, + 274 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 309, + 262, + 325, + 272 + ], + "score": 0.69, + "content": "- \\mathbf { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 259, + 421, + 274 + ], + "score": 1.0, + "content": "descending, while only", + "type": "text" + }, + { + "bbox": [ + 421, + 261, + 441, + 271 + ], + "score": 0.87, + "content": "73 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "are descending", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 270, + 166, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 166, + 285 + ], + "score": 1.0, + "content": "in pixel space.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 291, + 222, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 224, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 224, + 303 + ], + "score": 1.0, + "content": "3.1 HYPER-PARAMETERS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 311, + 503, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 309, + 501, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 417, + 325 + ], + "score": 1.0, + "content": "The only hyper-parameters of SimBA are the set of orthogonal search vectors", + "type": "text" + }, + { + "bbox": [ + 418, + 312, + 427, + 323 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 309, + 496, + 325 + ], + "score": 1.0, + "content": "and the step size", + "type": "text" + }, + { + "bbox": [ + 496, + 314, + 501, + 321 + ], + "score": 0.56, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 309, + 501, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 328, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 204, + 342 + ], + "score": 1.0, + "content": "Orthogonal directions", + "type": "text" + }, + { + "bbox": [ + 204, + 329, + 213, + 340 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 327, + 484, + 342 + ], + "score": 1.0, + "content": ". A natural first choice for the set of orthogonal search directions", + "type": "text" + }, + { + "bbox": [ + 484, + 329, + 494, + 340 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 275, + 352 + ], + "score": 1.0, + "content": "to randomly subsample the natural basis,", + "type": "text" + }, + { + "bbox": [ + 276, + 340, + 305, + 351 + ], + "score": 0.92, + "content": "Q = I", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ", which corresponds to performing our algorithm", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "directly in pixel space. Essentially each iteration we are increasing or decreasing one color of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "single randomly chosen pixel. Alternatively, we can consider directions in frequency domain. Re-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "cent work has discovered that random noise in low frequency space are more likely to be adversarial", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "(Guo et al., 2018). To exploit this fact, we follow Guo et al. (2018) and propose to exploit the dis-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "crete cosine transform (DCT). The discrete cosine transform is an orthonormal transformation that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 402, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 246, + 419 + ], + "score": 1.0, + "content": "maps signals in a 2D image space", + "type": "text" + }, + { + "bbox": [ + 247, + 404, + 271, + 415 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 402, + 507, + 419 + ], + "score": 1.0, + "content": "to frequency coefficients corresponding to magnitudes of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "wave functions. In what follows, we will refer to the set of orthonormal frequencies extracted by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 140, + 441 + ], + "score": 1.0, + "content": "DCT as", + "type": "text" + }, + { + "bbox": [ + 141, + 427, + 167, + 439 + ], + "score": 0.9, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 426, + 299, + 441 + ], + "score": 1.0, + "content": ". While the full set of directions", + "type": "text" + }, + { + "bbox": [ + 299, + 427, + 326, + 439 + ], + "score": 0.9, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 426, + 364, + 441 + ], + "score": 1.0, + "content": "contains", + "type": "text" + }, + { + "bbox": [ + 364, + 427, + 389, + 438 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "frequencies, we keep only a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 140, + 451 + ], + "score": 1.0, + "content": "fraction", + "type": "text" + }, + { + "bbox": [ + 140, + 440, + 146, + 448 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "of the lowest frequency directions in order to make the adversarial perturbation in the low", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 176, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 176, + 463 + ], + "score": 1.0, + "content": "frequency space.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 327, + 507, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 368, + 479 + ], + "score": 1.0, + "content": "Choosing a learning rate \u000f. Given any set of search directions", + "type": "text" + }, + { + "bbox": [ + 368, + 466, + 377, + 477 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 465, + 506, + 479 + ], + "score": 1.0, + "content": ", some directions may decrease", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 475, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 148, + 489 + ], + "score": 0.91, + "content": "p _ { h } ( y \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 475, + 506, + 492 + ], + "score": 1.0, + "content": "more than others. Furthermore, it is not naively obvious that arbitrary steps along any", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 487, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 144, + 501 + ], + "score": 1.0, + "content": "direction", + "type": "text" + }, + { + "bbox": [ + 145, + 489, + 156, + 500 + ], + "score": 0.86, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 487, + 392, + 501 + ], + "score": 1.0, + "content": "decrease the probability. It is possible for the probability", + "type": "text" + }, + { + "bbox": [ + 392, + 488, + 459, + 500 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid { \\bf x } + \\epsilon { \\bf q } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 487, + 504, + 501 + ], + "score": 1.0, + "content": "to be non-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 164, + 512 + ], + "score": 1.0, + "content": "monotonic in", + "type": "text" + }, + { + "bbox": [ + 164, + 501, + 170, + 509 + ], + "score": 0.27, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 498, + 483, + 512 + ], + "score": 1.0, + "content": ". In Figure 1, we plot the relative decrease in probability as a function of", + "type": "text" + }, + { + "bbox": [ + 483, + 501, + 489, + 509 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "randomly sampled search directions in both pixel space and the DCT space. This figure highlights", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 260, + 535 + ], + "score": 1.0, + "content": "an illuminating result: the probability", + "type": "text" + }, + { + "bbox": [ + 260, + 521, + 321, + 533 + ], + "score": 0.92, + "content": "p _ { h } ( y \\mid { \\bf x } \\pm \\epsilon { \\bf q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 520, + 435, + 535 + ], + "score": 1.0, + "content": "decreases monotonically in", + "type": "text" + }, + { + "bbox": [ + 435, + 523, + 441, + 531 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "with surprising", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 546 + ], + "score": 1.0, + "content": "consistency (across random images and vectors q)! Although some directions eventually increase", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 541, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 505, + 556 + ], + "score": 1.0, + "content": "the true class probability, the expected change in this probability is negative with a relatively steep", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 415, + 566 + ], + "score": 1.0, + "content": "slope. This means that our algorithm is not overly sensitive to the choice of", + "type": "text" + }, + { + "bbox": [ + 416, + 556, + 422, + 564 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "and the iterates will", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "decrease the true class probability quickly. The figure also shows that search in the DCT space tends", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 576, + 504, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 504, + 588 + ], + "score": 1.0, + "content": "to lead to steeper descent directions than pixel space. As we show in the next section, we can tightly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 169, + 599 + ], + "score": 1.0, + "content": "bound the final", + "type": "text" + }, + { + "bbox": [ + 170, + 587, + 182, + 597 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 586, + 358, + 599 + ], + "score": 1.0, + "content": "-norm of the perturbation given a choice of", + "type": "text" + }, + { + "bbox": [ + 358, + 588, + 364, + 596 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 586, + 493, + 599 + ], + "score": 1.0, + "content": "and maximum number of steps", + "type": "text" + }, + { + "bbox": [ + 493, + 587, + 501, + 596 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 586, + 505, + 599 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 596, + 442, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 172, + 612 + ], + "score": 1.0, + "content": "so the choice of", + "type": "text" + }, + { + "bbox": [ + 172, + 600, + 177, + 608 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 596, + 417, + 612 + ], + "score": 1.0, + "content": "depends primarily on budget considerations with respect to", + "type": "text" + }, + { + "bbox": [ + 418, + 597, + 438, + 610 + ], + "score": 0.92, + "content": "\\lVert \\delta \\rVert _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 596, + 442, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 465, + 506, + 612 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 622, + 248, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 250, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 250, + 635 + ], + "score": 1.0, + "content": "3.2 BUDGET CONSIDERATIONS.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 482, + 656 + ], + "score": 1.0, + "content": "Each iteration of our algorithm strictly increases the norm of the adversarial perturbation", + "type": "text" + }, + { + "bbox": [ + 482, + 644, + 504, + 654 + ], + "score": 0.86, + "content": "\\delta _ { i } \\ =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 107, + 655, + 121, + 665 + ], + "score": 0.84, + "content": "\\epsilon \\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 653, + 312, + 667 + ], + "score": 1.0, + "content": ". By exploiting the orthonormality of the basis", + "type": "text" + }, + { + "bbox": [ + 312, + 654, + 321, + 665 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 653, + 482, + 667 + ], + "score": 1.0, + "content": ", we can bound this change tightly. Let", + "type": "text" + }, + { + "bbox": [ + 482, + 655, + 505, + 665 + ], + "score": 0.86, + "content": "\\alpha _ { i } \\in", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 665, + 382, + 678 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 147, + 677 + ], + "score": 0.93, + "content": "\\{ - \\epsilon , 0 , \\epsilon \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 665, + 361, + 678 + ], + "score": 1.0, + "content": "denote the sign of the search direction chosen at step", + "type": "text" + }, + { + "bbox": [ + 361, + 666, + 366, + 675 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 665, + 382, + 678 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 642, + 505, + 678 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 682, + 343, + 695 + ], + "lines": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "spans": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "score": 0.92, + "content": "\\delta _ { i + 1 } = \\delta _ { i } + \\alpha _ { i } { \\bf q } _ { i } .", + "type": "interline_equation", + "image_path": "281e4819b4b98a57958284771e7700f1a716d4852a1192a9227fcb7af81e6995.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 268, + 682, + 343, + 695 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 217, + 96 + ], + "score": 1.0, + "content": "We can recursively expand", + "type": "text" + }, + { + "bbox": [ + 217, + 83, + 353, + 95 + ], + "score": 0.93, + "content": "\\delta _ { i + 1 } = \\delta _ { i - 1 } + \\alpha _ { i - 1 } { \\bf q } _ { i - 1 } + \\alpha _ { i } { \\bf q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 81, + 492, + 96 + ], + "score": 1.0, + "content": ". In general, the final perturbation", + "type": "text" + }, + { + "bbox": [ + 492, + 83, + 504, + 94 + ], + "score": 0.84, + "content": "\\delta _ { T }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 405, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 127, + 107 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 127, + 94, + 136, + 104 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 92, + 405, + 107 + ], + "score": 1.0, + "content": "steps can be written as a sum of these individual search directions:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 108, + 338, + 143 + ], + "lines": [ + { + "bbox": [ + 273, + 108, + 338, + 143 + ], + "spans": [ + { + "bbox": [ + 273, + 108, + 338, + 143 + ], + "score": 0.93, + "content": "\\delta _ { T } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } .", + "type": "interline_equation", + "image_path": "adca316baf619133cee51a6f97ad597244985ab64d6af3e6be16332f7e38e04d.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 108, + 338, + 125.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 273, + 125.5, + 338, + 143.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 146, + 504, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 190, + 162 + ], + "score": 1.0, + "content": "Since the directions", + "type": "text" + }, + { + "bbox": [ + 190, + 149, + 201, + 159 + ], + "score": 0.85, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 145, + 267, + 162 + ], + "score": 1.0, + "content": "are orthogonal,", + "type": "text" + }, + { + "bbox": [ + 268, + 146, + 313, + 160 + ], + "score": 0.93, + "content": "\\mathbf { q } _ { i } ^ { \\top } \\mathbf { q } _ { j } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 145, + 347, + 162 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 348, + 147, + 373, + 159 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 145, + 506, + 162 + ], + "score": 1.0, + "content": ". We can therefore compute the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 158, + 270, + 171 + ], + "spans": [ + { + "bbox": [ + 107, + 159, + 119, + 169 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 158, + 270, + 171 + ], + "score": 1.0, + "content": "-norm of the adversarial perturbation:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 173, + 431, + 210 + ], + "lines": [ + { + "bbox": [ + 180, + 173, + 431, + 210 + ], + "spans": [ + { + "bbox": [ + 180, + 173, + 431, + 210 + ], + "score": 0.94, + "content": "\\lVert \\delta _ { T } \\rVert _ { 2 } ^ { 2 } = \\left. \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } \\right. _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\lVert \\alpha _ { i } \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } ^ { 2 } \\lVert \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } \\leq T \\epsilon ^ { 2 } .", + "type": "interline_equation", + "image_path": "664fe05300f694efd2f549bbc2259d345ca4bea052d16b31839fdd9856a36b0a.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 180, + 173, + 431, + 185.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 180, + 185.33333333333334, + 431, + 197.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 180, + 197.66666666666669, + 431, + 210.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 343, + 226 + ], + "score": 1.0, + "content": "Here, the second equality follows from the orthogonality of", + "type": "text" + }, + { + "bbox": [ + 343, + 214, + 354, + 225 + ], + "score": 0.87, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 212, + 371, + 226 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 214, + 383, + 225 + ], + "score": 0.87, + "content": "{ \\bf q } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 212, + 505, + 226 + ], + "score": 1.0, + "content": ", and the last inequality is tight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 253, + 237 + ], + "score": 1.0, + "content": "√if all queries result in a step of either", + "type": "text" + }, + { + "bbox": [ + 253, + 227, + 258, + 234 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 223, + 270, + 237 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 270, + 226, + 283, + 235 + ], + "score": 0.78, + "content": "- \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 223, + 435, + 237 + ], + "score": 1.0, + "content": ". Thus the adversarial perturbation has", + "type": "text" + }, + { + "bbox": [ + 436, + 225, + 448, + 235 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "-norm at most", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 234, + 496, + 250 + ], + "spans": [ + { + "bbox": [ + 107, + 236, + 128, + 248 + ], + "score": 0.89, + "content": "\\sqrt { T } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 234, + 149, + 250 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 149, + 237, + 158, + 246 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 234, + 461, + 250 + ], + "score": 1.0, + "content": "iterations. The same analysis holds when using any orthonormal basis (e.g.", + "type": "text" + }, + { + "bbox": [ + 461, + 237, + 488, + 249 + ], + "score": 0.87, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 234, + 496, + 250 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "This result highlights an important trade-off for our method. For query-limited scenarios, we may", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 282, + 277 + ], + "score": 1.0, + "content": "reduce the number of iterations by setting", + "type": "text" + }, + { + "bbox": [ + 282, + 267, + 289, + 275 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 264, + 443, + 277 + ], + "score": 1.0, + "content": "higher, incurring higher perturbation", + "type": "text" + }, + { + "bbox": [ + 443, + 265, + 456, + 276 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "-norm. If a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 295, + 288 + ], + "score": 1.0, + "content": "low norm solution is more desirable, reducing", + "type": "text" + }, + { + "bbox": [ + 296, + 278, + 302, + 285 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "will allow quadratically more queries at the same", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 286, + 491, + 299 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 119, + 298 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 286, + 491, + 299 + ], + "score": 1.0, + "content": "-norm. A more thorough theoretical analysis of this trade-off could improve query efficiency.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 277, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 279, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 279, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTAL EVALUATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 350 + ], + "score": 1.0, + "content": "In this section, we empirically evaluate our attack against a comprehensive list of known black-box", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "attack algorithms: ZOO (Chen et al., 2017), the Boundary Attack (Brendel et al., 2017), Opt attack", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "(Cheng et al., 2018), Low Frequency Boundary Attack (LFBA) (Guo et al., 2018), AutoZOOM (Tu", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "et al., 2018), and the QL attack (Ilyas et al., 2018). Based on Eq. (??), there are three dimensions to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "evaluate black-box adversarial attacks on: how often the optimization problem finds a feasible point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 484, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 299, + 406 + ], + "score": 1.0, + "content": "(success rate), how many queries were required", + "type": "text" + }, + { + "bbox": [ + 299, + 393, + 315, + 404 + ], + "score": 0.73, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 393, + 466, + 406 + ], + "score": 1.0, + "content": ", and the resulting perturbation norms", + "type": "text" + }, + { + "bbox": [ + 467, + 393, + 480, + 405 + ], + "score": 0.71, + "content": "( \\rho )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 393, + 484, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "image", + "bbox": [ + 105, + 413, + 501, + 568 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 413, + 501, + 568 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 413, + 501, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 501, + 568 + ], + "score": 0.969, + "type": "image", + "image_path": "5c6f39b033bc83dde2df4535d2a01dd32211186862e55a6725a99162fa5e49f0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 105, + 413, + 501, + 464.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 105, + 464.6666666666667, + 501, + 516.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 105, + 516.3333333333334, + 501, + 568.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 576, + 505, + 620 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "Figure 2: Comparison of success rate versus number of model queries for untargeted (left) and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "targeted (right) attacks. Horizontal axis shows queries in log scale. For boundary attack and LFBA,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 295, + 610 + ], + "score": 1.0, + "content": "success is defined as achieving a perturbation", + "type": "text" + }, + { + "bbox": [ + 295, + 598, + 307, + 609 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "-norm of 10 or less. Note that both SimBA and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 608, + 325, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 325, + 622 + ], + "score": 1.0, + "content": "SimBA-DCT achieve a high success rate very quickly.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + } + ], + "index": 25.75 + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 160, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 161, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 161, + 657 + ], + "score": 1.0, + "content": "4.1 SETUP", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "We first compare all methods on the ImageNet validation set. We present numbers reported by the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "original authors’ papers in comparison to ours where applicable. For methods where the required", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 688, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 699 + ], + "score": 1.0, + "content": "values were unavailable (the boundary attack, LFBA, and the QL attack), we evaluate these methods", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "ourselves using hyperparameters suggested by the authors. For all original and reproduced results,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we sample a set of 1000 images from the ImageNet validation set that are initially classified correctly", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 284, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 284, + 734 + ], + "score": 1.0, + "content": "to avoid artifically inflating the success rate.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 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 2019", + "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": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 217, + 96 + ], + "score": 1.0, + "content": "We can recursively expand", + "type": "text" + }, + { + "bbox": [ + 217, + 83, + 353, + 95 + ], + "score": 0.93, + "content": "\\delta _ { i + 1 } = \\delta _ { i - 1 } + \\alpha _ { i - 1 } { \\bf q } _ { i - 1 } + \\alpha _ { i } { \\bf q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 81, + 492, + 96 + ], + "score": 1.0, + "content": ". In general, the final perturbation", + "type": "text" + }, + { + "bbox": [ + 492, + 83, + 504, + 94 + ], + "score": 0.84, + "content": "\\delta _ { T }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 405, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 127, + 107 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 127, + 94, + 136, + 104 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 92, + 405, + 107 + ], + "score": 1.0, + "content": "steps can be written as a sum of these individual search directions:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 504, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 108, + 338, + 143 + ], + "lines": [ + { + "bbox": [ + 273, + 108, + 338, + 143 + ], + "spans": [ + { + "bbox": [ + 273, + 108, + 338, + 143 + ], + "score": 0.93, + "content": "\\delta _ { T } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } .", + "type": "interline_equation", + "image_path": "adca316baf619133cee51a6f97ad597244985ab64d6af3e6be16332f7e38e04d.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 108, + 338, + 125.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 273, + 125.5, + 338, + 143.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 146, + 504, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 190, + 162 + ], + "score": 1.0, + "content": "Since the directions", + "type": "text" + }, + { + "bbox": [ + 190, + 149, + 201, + 159 + ], + "score": 0.85, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 145, + 267, + 162 + ], + "score": 1.0, + "content": "are orthogonal,", + "type": "text" + }, + { + "bbox": [ + 268, + 146, + 313, + 160 + ], + "score": 0.93, + "content": "\\mathbf { q } _ { i } ^ { \\top } \\mathbf { q } _ { j } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 145, + 347, + 162 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 348, + 147, + 373, + 159 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 145, + 506, + 162 + ], + "score": 1.0, + "content": ". We can therefore compute the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 158, + 270, + 171 + ], + "spans": [ + { + "bbox": [ + 107, + 159, + 119, + 169 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 158, + 270, + 171 + ], + "score": 1.0, + "content": "-norm of the adversarial perturbation:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 145, + 506, + 171 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 173, + 431, + 210 + ], + "lines": [ + { + "bbox": [ + 180, + 173, + 431, + 210 + ], + "spans": [ + { + "bbox": [ + 180, + 173, + 431, + 210 + ], + "score": 0.94, + "content": "\\lVert \\delta _ { T } \\rVert _ { 2 } ^ { 2 } = \\left. \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } \\right. _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\lVert \\alpha _ { i } \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } ^ { 2 } \\lVert \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } \\leq T \\epsilon ^ { 2 } .", + "type": "interline_equation", + "image_path": "664fe05300f694efd2f549bbc2259d345ca4bea052d16b31839fdd9856a36b0a.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 180, + 173, + 431, + 185.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 180, + 185.33333333333334, + 431, + 197.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 180, + 197.66666666666669, + 431, + 210.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 343, + 226 + ], + "score": 1.0, + "content": "Here, the second equality follows from the orthogonality of", + "type": "text" + }, + { + "bbox": [ + 343, + 214, + 354, + 225 + ], + "score": 0.87, + "content": "\\mathbf { q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 212, + 371, + 226 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 214, + 383, + 225 + ], + "score": 0.87, + "content": "{ \\bf q } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 212, + 505, + 226 + ], + "score": 1.0, + "content": ", and the last inequality is tight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 253, + 237 + ], + "score": 1.0, + "content": "√if all queries result in a step of either", + "type": "text" + }, + { + "bbox": [ + 253, + 227, + 258, + 234 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 223, + 270, + 237 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 270, + 226, + 283, + 235 + ], + "score": 0.78, + "content": "- \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 223, + 435, + 237 + ], + "score": 1.0, + "content": ". Thus the adversarial perturbation has", + "type": "text" + }, + { + "bbox": [ + 436, + 225, + 448, + 235 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "-norm at most", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 234, + 496, + 250 + ], + "spans": [ + { + "bbox": [ + 107, + 236, + 128, + 248 + ], + "score": 0.89, + "content": "\\sqrt { T } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 234, + 149, + 250 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 149, + 237, + 158, + 246 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 234, + 461, + 250 + ], + "score": 1.0, + "content": "iterations. The same analysis holds when using any orthonormal basis (e.g.", + "type": "text" + }, + { + "bbox": [ + 461, + 237, + 488, + 249 + ], + "score": 0.87, + "content": "Q _ { \\mathrm { D C T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 234, + 496, + 250 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 212, + 506, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "This result highlights an important trade-off for our method. For query-limited scenarios, we may", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 282, + 277 + ], + "score": 1.0, + "content": "reduce the number of iterations by setting", + "type": "text" + }, + { + "bbox": [ + 282, + 267, + 289, + 275 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 264, + 443, + 277 + ], + "score": 1.0, + "content": "higher, incurring higher perturbation", + "type": "text" + }, + { + "bbox": [ + 443, + 265, + 456, + 276 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "-norm. If a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 295, + 288 + ], + "score": 1.0, + "content": "low norm solution is more desirable, reducing", + "type": "text" + }, + { + "bbox": [ + 296, + 278, + 302, + 285 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "will allow quadratically more queries at the same", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 286, + 491, + 299 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 119, + 298 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 286, + 491, + 299 + ], + "score": 1.0, + "content": "-norm. A more thorough theoretical analysis of this trade-off could improve query efficiency.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 252, + 506, + 299 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 277, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 279, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 279, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTAL EVALUATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 350 + ], + "score": 1.0, + "content": "In this section, we empirically evaluate our attack against a comprehensive list of known black-box", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "attack algorithms: ZOO (Chen et al., 2017), the Boundary Attack (Brendel et al., 2017), Opt attack", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "(Cheng et al., 2018), Low Frequency Boundary Attack (LFBA) (Guo et al., 2018), AutoZOOM (Tu", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "et al., 2018), and the QL attack (Ilyas et al., 2018). Based on Eq. (??), there are three dimensions to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "evaluate black-box adversarial attacks on: how often the optimization problem finds a feasible point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 484, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 299, + 406 + ], + "score": 1.0, + "content": "(success rate), how many queries were required", + "type": "text" + }, + { + "bbox": [ + 299, + 393, + 315, + 404 + ], + "score": 0.73, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 393, + 466, + 406 + ], + "score": 1.0, + "content": ", and the resulting perturbation norms", + "type": "text" + }, + { + "bbox": [ + 467, + 393, + 480, + 405 + ], + "score": 0.71, + "content": "( \\rho )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 393, + 484, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 339, + 506, + 406 + ] + }, + { + "type": "image", + "bbox": [ + 105, + 413, + 501, + 568 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 413, + 501, + 568 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 413, + 501, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 501, + 568 + ], + "score": 0.969, + "type": "image", + "image_path": "5c6f39b033bc83dde2df4535d2a01dd32211186862e55a6725a99162fa5e49f0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 105, + 413, + 501, + 464.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 105, + 464.6666666666667, + 501, + 516.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 105, + 516.3333333333334, + 501, + 568.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 576, + 505, + 620 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "Figure 2: Comparison of success rate versus number of model queries for untargeted (left) and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "targeted (right) attacks. Horizontal axis shows queries in log scale. For boundary attack and LFBA,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 295, + 610 + ], + "score": 1.0, + "content": "success is defined as achieving a perturbation", + "type": "text" + }, + { + "bbox": [ + 295, + 598, + 307, + 609 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "-norm of 10 or less. Note that both SimBA and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 608, + 325, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 325, + 622 + ], + "score": 1.0, + "content": "SimBA-DCT achieve a high success rate very quickly.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + } + ], + "index": 25.75 + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 160, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 161, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 161, + 657 + ], + "score": 1.0, + "content": "4.1 SETUP", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "We first compare all methods on the ImageNet validation set. We present numbers reported by the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "original authors’ papers in comparison to ours where applicable. For methods where the required", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 688, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 699 + ], + "score": 1.0, + "content": "values were unavailable (the boundary attack, LFBA, and the QL attack), we evaluate these methods", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "ourselves using hyperparameters suggested by the authors. For all original and reproduced results,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we sample a set of 1000 images from the ImageNet validation set that are initially classified correctly", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 284, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 284, + 734 + ], + "score": 1.0, + "content": "to avoid artifically inflating the success rate.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 666, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 77, + 504, + 235 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 77, + 504, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 504, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 504, + 235 + ], + "score": 0.97, + "type": "image", + "image_path": "e0d277a68c5031f553128bbc34a263ad2a02f03ec261b203de110b13d0493ac0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 77, + 504, + 129.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 129.66666666666666, + 504, + 182.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 182.33333333333331, + 504, + 234.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 243, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 504, + 256 + ], + "score": 1.0, + "content": "Figure 3: Histogram of queries required until a successful model attack (over 1000 target images).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "score": 1.0, + "content": "SimBA-DCT is highly skew-right, suggesting that only a handful of images require more than a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 264, + 486, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 486, + 278 + ], + "score": 1.0, + "content": "small number of queries. The median number of queries required by SimBA-DCT is only 582.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 106, + 287, + 504, + 352 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 287, + 504, + 352 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 287, + 504, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 504, + 352 + ], + "score": 0.957, + "html": "
Untargeted
AttackAveragequeriesSuccessrateAverageL2TargetedSuccessrateAverageL2
ZO0192,00088.9%1.20AttackAverage queries
Boundary attack123,407100%5.98QL-attack20.61498.7%11.39
Opt-attack71,100100%6.98AutoZOOM13,525100%26.74
LFBA30,000100%6.34SimBA7,899100%8.83
SimBA1,66598.6%3.77SimBA-DCT9,18296.0%7.02
SimBA-DCT1,23298.3%3.09
", + "type": "table", + "image_path": "734074d0526336e7b0b6c3dba8a3deab42184b390887c38658d53c62e85a714f.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 287, + 504, + 308.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 308.6666666666667, + 504, + 330.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 330.33333333333337, + 504, + 352.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Table 1: Average query count for untargeted (left) and targeted (right) attacks. Both SimBA and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "SimBA-DCT have comparable success rate to other algorithms, but require a significantly fewer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 382, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 395 + ], + "score": 1.0, + "content": "number of model queries. This effect is especially dramatic for untargeted attack, where the number", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 392, + 405, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 405, + 406 + ], + "score": 1.0, + "content": "of queries made by SimBA-DCT is 24 times fewer than all other methods.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "We also evaluate SimBA in the real-world setting of attacking the Google Cloud Vision API. Due to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 361, + 451 + ], + "score": 1.0, + "content": "the extreme budget required by baselines that might cost up to", + "type": "text" + }, + { + "bbox": [ + 361, + 437, + 383, + 448 + ], + "score": 0.88, + "content": "\\$ 300", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "per image2, we compare here", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 448, + 391, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 391, + 461 + ], + "score": 1.0, + "content": "only to LFBA, which we found to be the most query efficient baseline.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 371, + 477 + ], + "score": 1.0, + "content": "In our experiments, we limit SimBA and SimBA-DCT to at most", + "type": "text" + }, + { + "bbox": [ + 371, + 465, + 424, + 477 + ], + "score": 0.87, + "content": "T = 1 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "iterations for untar-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 190, + 488 + ], + "score": 1.0, + "content": "geted attacks and to", + "type": "text" + }, + { + "bbox": [ + 190, + 477, + 244, + 488 + ], + "score": 0.8, + "content": "T = 3 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "for targeted attacks. For SimBA-DCT, we use we keep the first", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "1/8th of all frequencies, and add an additional 1/32nd of the frequencies whenever we run out of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 498, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 419, + 510 + ], + "score": 1.0, + "content": "frequencies without succeeding. For both methods, we use a fixed step size of", + "type": "text" + }, + { + "bbox": [ + 419, + 498, + 450, + 508 + ], + "score": 0.87, + "content": "\\epsilon = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 498, + 455, + 510 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 523, + 219, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 220, + 536 + ], + "score": 1.0, + "content": "4.2 IMAGENET RESULTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 557 + ], + "score": 1.0, + "content": "Evaluating success rate (Figure 2). We first demonstrate the query efficiency of our method by", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "showing that the average success rate increases dramatically faster than other methods with the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "number of queries. Figure 2 compares SimBA and SimBA-DCT to the boundary attack and LFBA", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "score": 1.0, + "content": "in the untargeted setting, and to the QL attack for the targeted setting. Since both boundary attack", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 439, + 600 + ], + "score": 1.0, + "content": "and LFBA are initialized with inputs of the adversarial class and gradually reduce", + "type": "text" + }, + { + "bbox": [ + 440, + 588, + 452, + 599 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "perturbation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 271, + 611 + ], + "score": 1.0, + "content": "norm, we define success as reducing the", + "type": "text" + }, + { + "bbox": [ + 271, + 599, + 283, + 609 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "-norm to 10 or below. For untargeted attack (left plot),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "the success rate for both SimBA and SimBA-DCT increase very quickly. LFBA is competitive with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT until iteration 1000, but the final success rate is much worse than both", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "methods. A similar result can be seen for targeted attack (right plot), where SimBA and SimBA-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 641, + 385, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 385, + 656 + ], + "score": 1.0, + "content": "DCT outperform QL attack dramatically in terms of query efficiency.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "Query distributions. In Figure 3 we plot the histogram of model queries made by both SimBA", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "and SimBA-DCT over 1000 random images. Notice that the distributions are highly skewed so", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "the median query count is much smaller than the average query count reported in Table 1. These", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "median counts for SimBA and SimBA-DCT are only 944 and 582, respectively. In the targeted case,", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 719, + 322, + 729 + ], + "lines": [ + { + "bbox": [ + 118, + 716, + 324, + 732 + ], + "spans": [ + { + "bbox": [ + 118, + 716, + 324, + 732 + ], + "score": 1.0, + "content": "2The Google API charges $1.50 for 1000 image queries.", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 77, + 504, + 235 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 77, + 504, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 504, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 504, + 235 + ], + "score": 0.97, + "type": "image", + "image_path": "e0d277a68c5031f553128bbc34a263ad2a02f03ec261b203de110b13d0493ac0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 77, + 504, + 129.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 129.66666666666666, + 504, + 182.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 182.33333333333331, + 504, + 234.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 243, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 504, + 256 + ], + "score": 1.0, + "content": "Figure 3: Histogram of queries required until a successful model attack (over 1000 target images).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "score": 1.0, + "content": "SimBA-DCT is highly skew-right, suggesting that only a handful of images require more than a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 264, + 486, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 486, + 278 + ], + "score": 1.0, + "content": "small number of queries. The median number of queries required by SimBA-DCT is only 582.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 106, + 287, + 504, + 352 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 287, + 504, + 352 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 287, + 504, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 504, + 352 + ], + "score": 0.957, + "html": "
Untargeted
AttackAveragequeriesSuccessrateAverageL2TargetedSuccessrateAverageL2
ZO0192,00088.9%1.20AttackAverage queries
Boundary attack123,407100%5.98QL-attack20.61498.7%11.39
Opt-attack71,100100%6.98AutoZOOM13,525100%26.74
LFBA30,000100%6.34SimBA7,899100%8.83
SimBA1,66598.6%3.77SimBA-DCT9,18296.0%7.02
SimBA-DCT1,23298.3%3.09
", + "type": "table", + "image_path": "734074d0526336e7b0b6c3dba8a3deab42184b390887c38658d53c62e85a714f.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 287, + 504, + 308.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 308.6666666666667, + 504, + 330.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 330.33333333333337, + 504, + 352.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Table 1: Average query count for untargeted (left) and targeted (right) attacks. Both SimBA and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "SimBA-DCT have comparable success rate to other algorithms, but require a significantly fewer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 382, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 395 + ], + "score": 1.0, + "content": "number of model queries. This effect is especially dramatic for untargeted attack, where the number", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 392, + 405, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 405, + 406 + ], + "score": 1.0, + "content": "of queries made by SimBA-DCT is 24 times fewer than all other methods.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 361, + 505, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "We also evaluate SimBA in the real-world setting of attacking the Google Cloud Vision API. Due to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 361, + 451 + ], + "score": 1.0, + "content": "the extreme budget required by baselines that might cost up to", + "type": "text" + }, + { + "bbox": [ + 361, + 437, + 383, + 448 + ], + "score": 0.88, + "content": "\\$ 300", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "per image2, we compare here", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 448, + 391, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 391, + 461 + ], + "score": 1.0, + "content": "only to LFBA, which we found to be the most query efficient baseline.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 425, + 505, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 371, + 477 + ], + "score": 1.0, + "content": "In our experiments, we limit SimBA and SimBA-DCT to at most", + "type": "text" + }, + { + "bbox": [ + 371, + 465, + 424, + 477 + ], + "score": 0.87, + "content": "T = 1 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "iterations for untar-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 190, + 488 + ], + "score": 1.0, + "content": "geted attacks and to", + "type": "text" + }, + { + "bbox": [ + 190, + 477, + 244, + 488 + ], + "score": 0.8, + "content": "T = 3 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "for targeted attacks. For SimBA-DCT, we use we keep the first", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "1/8th of all frequencies, and add an additional 1/32nd of the frequencies whenever we run out of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 498, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 419, + 510 + ], + "score": 1.0, + "content": "frequencies without succeeding. For both methods, we use a fixed step size of", + "type": "text" + }, + { + "bbox": [ + 419, + 498, + 450, + 508 + ], + "score": 0.87, + "content": "\\epsilon = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 498, + 455, + 510 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 465, + 506, + 510 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 523, + 219, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 220, + 536 + ], + "score": 1.0, + "content": "4.2 IMAGENET RESULTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 557 + ], + "score": 1.0, + "content": "Evaluating success rate (Figure 2). We first demonstrate the query efficiency of our method by", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "showing that the average success rate increases dramatically faster than other methods with the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "number of queries. Figure 2 compares SimBA and SimBA-DCT to the boundary attack and LFBA", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "score": 1.0, + "content": "in the untargeted setting, and to the QL attack for the targeted setting. Since both boundary attack", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 439, + 600 + ], + "score": 1.0, + "content": "and LFBA are initialized with inputs of the adversarial class and gradually reduce", + "type": "text" + }, + { + "bbox": [ + 440, + 588, + 452, + 599 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "perturbation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 271, + 611 + ], + "score": 1.0, + "content": "norm, we define success as reducing the", + "type": "text" + }, + { + "bbox": [ + 271, + 599, + 283, + 609 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "-norm to 10 or below. For untargeted attack (left plot),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "the success rate for both SimBA and SimBA-DCT increase very quickly. LFBA is competitive with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT until iteration 1000, but the final success rate is much worse than both", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "methods. A similar result can be seen for targeted attack (right plot), where SimBA and SimBA-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 641, + 385, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 385, + 656 + ], + "score": 1.0, + "content": "DCT outperform QL attack dramatically in terms of query efficiency.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 542, + 506, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "Query distributions. In Figure 3 we plot the histogram of model queries made by both SimBA", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "and SimBA-DCT over 1000 random images. Notice that the distributions are highly skewed so", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "the median query count is much smaller than the average query count reported in Table 1. These", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "median counts for SimBA and SimBA-DCT are only 944 and 582, respectively. In the targeted case,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "while the majority of images can be successfully attacked with very few model evaluations, SimBA-", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 366, + 345 + ], + "score": 1.0, + "content": "DCT failed to find an adversarial perturbation for approximately", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 366, + 332, + 388, + 343 + ], + "score": 0.89, + "content": "2 . 5 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 389, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "of the images. Nevertheless,", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 342, + 397, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 252, + 356 + ], + "score": 1.0, + "content": "SimBA is achieves a success rate of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 252, + 343, + 276, + 354 + ], + "score": 0.89, + "content": "1 0 0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 277, + 342, + 397, + 356 + ], + "score": 1.0, + "content": "within 7,899 average queries.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 666, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 77, + 501, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 77, + 501, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 501, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 501, + 236 + ], + "score": 0.97, + "type": "image", + "image_path": "db590b8ee2cbb10bb154afc4de63741e4e286b9f65d2f71e31a30752da880881.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 77, + 501, + 130.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 130.0, + 501, + 183.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 183.0, + 501, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 244, + 505, + 299 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "Figure 4: Comparison of success rate versus number of model queries across different network", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "score": 1.0, + "content": "architectures for untargeted SimBA (left) and SimBA-DCT (right) attacks. For all networks, SimBA-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "DCT is more query efficient by at least a factor of 2. DenseNet is the most vulnerable against both", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 283, + 289 + ], + "score": 1.0, + "content": "attacks, admitting a success rate of almost", + "type": "text" + }, + { + "bbox": [ + 284, + 277, + 308, + 288 + ], + "score": 0.89, + "content": "1 0 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "after only 10,000 queries for SimBA and 4000", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 462, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 462, + 301 + ], + "score": 1.0, + "content": "queries for SimBA-DCT. Inception v3 is much more difficult to attack for both methods.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "while the majority of images can be successfully attacked with very few model evaluations, SimBA-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 366, + 345 + ], + "score": 1.0, + "content": "DCT failed to find an adversarial perturbation for approximately", + "type": "text" + }, + { + "bbox": [ + 366, + 332, + 388, + 343 + ], + "score": 0.89, + "content": "2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "of the images. Nevertheless,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 342, + 397, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 252, + 356 + ], + "score": 1.0, + "content": "SimBA is achieves a success rate of", + "type": "text" + }, + { + "bbox": [ + 252, + 343, + 276, + 354 + ], + "score": 0.89, + "content": "1 0 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 342, + 397, + 356 + ], + "score": 1.0, + "content": "within 7,899 average queries.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 296, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 297, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 297, + 379 + ], + "score": 1.0, + "content": "Aggregate statistics (Table 1). Table 1 com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 378, + 297, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 297, + 391 + ], + "score": 1.0, + "content": "putes aggregate statistics of model queries, suc-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 389, + 297, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 214, + 400 + ], + "score": 1.0, + "content": "cess rate, and perturbation", + "type": "text" + }, + { + "bbox": [ + 214, + 389, + 226, + 400 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 390, + 297, + 400 + ], + "score": 1.0, + "content": "-norm across dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 399, + 298, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 298, + 412 + ], + "score": 1.0, + "content": "ferent attack algorithms. The target model is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 410, + 297, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 297, + 423 + ], + "score": 1.0, + "content": "pretrained ResNet-50 (He et al., 2016) network,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 421, + 297, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 297, + 433 + ], + "score": 1.0, + "content": "with the exception of AutoZOOM, which used", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "score": 1.0, + "content": "an Inception v3 (Szegedy et al., 2016) network.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 443, + 297, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 297, + 455 + ], + "score": 1.0, + "content": "All methods achieve a similar success rate ex-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 455, + 297, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 297, + 466 + ], + "score": 1.0, + "content": "cept for ZOO, which has a reported success rate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 465, + 298, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 117, + 478 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 465, + 145, + 476 + ], + "score": 0.88, + "content": "{ \\mathrm { 8 8 . 9 \\% } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 465, + 298, + 478 + ], + "score": 1.0, + "content": ". The success rate for boundary attack", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 476, + 297, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 194, + 488 + ], + "score": 1.0, + "content": "and LFBA are always", + "type": "text" + }, + { + "bbox": [ + 194, + 477, + 218, + 488 + ], + "score": 0.88, + "content": "1 0 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 476, + 297, + 488 + ], + "score": 1.0, + "content": "since both methods", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 488, + 297, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 297, + 500 + ], + "score": 1.0, + "content": "begin with very large perturbations to guarantee", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 498, + 297, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 297, + 510 + ], + "score": 1.0, + "content": "misclassification and gradually reduce the per-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 509, + 297, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 297, + 520 + ], + "score": 1.0, + "content": "turbation norm. Both SimBA and SimBA-DCT", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 520, + 298, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 188, + 532 + ], + "score": 1.0, + "content": "have lower average", + "type": "text" + }, + { + "bbox": [ + 188, + 521, + 200, + 532 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 520, + 298, + 532 + ], + "score": 1.0, + "content": "-norm than all methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 532, + 297, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 297, + 543 + ], + "score": 1.0, + "content": "except for ZOO for untargeted attacks, while", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 543, + 297, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 297, + 554 + ], + "score": 1.0, + "content": "requiring an order of magnitude fewer queries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 553, + 297, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 297, + 565 + ], + "score": 1.0, + "content": "(at 1665 and 1232, respectively). For targeted", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 565, + 297, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 297, + 575 + ], + "score": 1.0, + "content": "attack (right table), all the evaluated methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 575, + 297, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 297, + 588 + ], + "score": 1.0, + "content": "have much more similar query count, but both", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 585, + 297, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 297, + 599 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT still require signifi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 597, + 296, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 296, + 608 + ], + "score": 1.0, + "content": "cantly fewer queries than QL attack and Auto-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 607, + 297, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 171, + 620 + ], + "score": 1.0, + "content": "ZOOM, and the", + "type": "text" + }, + { + "bbox": [ + 171, + 609, + 183, + 619 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 607, + 297, + 620 + ], + "score": 1.0, + "content": "-norm of constructed pertur-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 618, + 213, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 213, + 631 + ], + "score": 1.0, + "content": "bation is also much lower.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 296, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 297, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 297, + 655 + ], + "score": 1.0, + "content": "Evaluating different networks (Figure 4).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 653, + 297, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 297, + 666 + ], + "score": 1.0, + "content": "To verify that our attack is robust against", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 664, + 297, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 297, + 676 + ], + "score": 1.0, + "content": "different model architectures, we evaluate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 675, + 297, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 297, + 687 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT additionally against", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 297, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 297, + 699 + ], + "score": 1.0, + "content": "DenseNet-121 (Huang et al., 2017a) and Incep-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 697, + 297, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 297, + 710 + ], + "score": 1.0, + "content": "tion v3 (Szegedy et al., 2016) networks. Fig-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 708, + 297, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 297, + 720 + ], + "score": 1.0, + "content": "ure 4 shows success rate across the number of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 297, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 297, + 732 + ], + "score": 1.0, + "content": "model queries for an untargeted attack against", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "image", + "bbox": [ + 307, + 376, + 502, + 609 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 376, + 502, + 609 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 307, + 376, + 502, + 608 + ], + "spans": [ + { + "bbox": [ + 307, + 376, + 502, + 608 + ], + "score": 0.974, + "type": "image", + "image_path": "185717453b53aee51e17b3ad09b3f93837df2a5cd7cc17e6db665519e81e43d1.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 307, + 376, + 502, + 388.2631578947368 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 307, + 388.2631578947368, + 502, + 400.52631578947364 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 307, + 400.52631578947364, + 502, + 412.78947368421046 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 307, + 412.78947368421046, + 502, + 425.0526315789473 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 307, + 425.0526315789473, + 502, + 437.3157894736841 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 307, + 437.3157894736841, + 502, + 449.5789473684209 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 307, + 449.5789473684209, + 502, + 461.84210526315775 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 307, + 461.84210526315775, + 502, + 474.10526315789457 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 307, + 474.10526315789457, + 502, + 486.3684210526314 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 307, + 486.3684210526314, + 502, + 498.6315789473682 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 307, + 498.6315789473682, + 502, + 510.89473684210503 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 307, + 510.89473684210503, + 502, + 523.1578947368419 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 307, + 523.1578947368419, + 502, + 535.4210526315787 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 307, + 535.4210526315787, + 502, + 547.6842105263156 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 307, + 547.6842105263156, + 502, + 559.9473684210525 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 307, + 559.9473684210525, + 502, + 572.2105263157894 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 307, + 572.2105263157894, + 502, + 584.4736842105262 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 307, + 584.4736842105262, + 502, + 596.7368421052631 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 307, + 596.7368421052631, + 502, + 609.0 + ], + "spans": [], + "index": 61 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 305, + 617, + 504, + 726 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 304, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "Figure 5: Randomly selected images before and", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 304, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 304, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "after adversarial perturbation by SimBA, SimBA-", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 303, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 303, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "DCT and boundary attack. The constructed per-", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 304, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 304, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "turbation is imperceptible for all three methods,", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 304, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 304, + 660, + 335, + 672 + ], + "score": 1.0, + "content": "but the", + "type": "text" + }, + { + "bbox": [ + 335, + 661, + 348, + 672 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "-norm for SimBA and SimBA-DCT is", + "type": "text" + } + ], + "index": 66 + }, + { + "bbox": [ + 303, + 672, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 303, + 672, + 505, + 684 + ], + "score": 1.0, + "content": "significantly lower than boundary attack across all", + "type": "text" + } + ], + "index": 67 + }, + { + "bbox": [ + 303, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 303, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "images, despite allowing boundary attack to make", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 304, + 694, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 304, + 694, + 505, + 705 + ], + "score": 1.0, + "content": "60,000 queries. In comparison, our methods are", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 303, + 704, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 303, + 704, + 505, + 716 + ], + "score": 1.0, + "content": "capable of constructing an adversarial example in", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 303, + 715, + 468, + 726 + ], + "spans": [ + { + "bbox": [ + 303, + 715, + 468, + 726 + ], + "score": 1.0, + "content": "as few as 36 queries. Zoom in for detail.", + "type": "text" + } + ], + "index": 71 + } + ], + "index": 66.5 + } + ], + "index": 59.25 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 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": "image", + "bbox": [ + 105, + 77, + 501, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 77, + 501, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 77, + 501, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 501, + 236 + ], + "score": 0.97, + "type": "image", + "image_path": "db590b8ee2cbb10bb154afc4de63741e4e286b9f65d2f71e31a30752da880881.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 77, + 501, + 130.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 130.0, + 501, + 183.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 183.0, + 501, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 244, + 505, + 299 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "Figure 4: Comparison of success rate versus number of model queries across different network", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "score": 1.0, + "content": "architectures for untargeted SimBA (left) and SimBA-DCT (right) attacks. For all networks, SimBA-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "DCT is more query efficient by at least a factor of 2. DenseNet is the most vulnerable against both", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 283, + 289 + ], + "score": 1.0, + "content": "attacks, admitting a success rate of almost", + "type": "text" + }, + { + "bbox": [ + 284, + 277, + 308, + 288 + ], + "score": 0.89, + "content": "1 0 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "after only 10,000 queries for SimBA and 4000", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 462, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 462, + 301 + ], + "score": 1.0, + "content": "queries for SimBA-DCT. Inception v3 is much more difficult to attack for both methods.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 505, + 354 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 105, + 321, + 506, + 356 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 296, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 297, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 297, + 379 + ], + "score": 1.0, + "content": "Aggregate statistics (Table 1). Table 1 com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 378, + 297, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 297, + 391 + ], + "score": 1.0, + "content": "putes aggregate statistics of model queries, suc-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 389, + 297, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 214, + 400 + ], + "score": 1.0, + "content": "cess rate, and perturbation", + "type": "text" + }, + { + "bbox": [ + 214, + 389, + 226, + 400 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 390, + 297, + 400 + ], + "score": 1.0, + "content": "-norm across dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 399, + 298, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 298, + 412 + ], + "score": 1.0, + "content": "ferent attack algorithms. The target model is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 410, + 297, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 297, + 423 + ], + "score": 1.0, + "content": "pretrained ResNet-50 (He et al., 2016) network,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 421, + 297, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 297, + 433 + ], + "score": 1.0, + "content": "with the exception of AutoZOOM, which used", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "score": 1.0, + "content": "an Inception v3 (Szegedy et al., 2016) network.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 443, + 297, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 297, + 455 + ], + "score": 1.0, + "content": "All methods achieve a similar success rate ex-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 455, + 297, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 297, + 466 + ], + "score": 1.0, + "content": "cept for ZOO, which has a reported success rate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 465, + 298, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 117, + 478 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 465, + 145, + 476 + ], + "score": 0.88, + "content": "{ \\mathrm { 8 8 . 9 \\% } }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 465, + 298, + 478 + ], + "score": 1.0, + "content": ". The success rate for boundary attack", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 476, + 297, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 194, + 488 + ], + "score": 1.0, + "content": "and LFBA are always", + "type": "text" + }, + { + "bbox": [ + 194, + 477, + 218, + 488 + ], + "score": 0.88, + "content": "1 0 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 476, + 297, + 488 + ], + "score": 1.0, + "content": "since both methods", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 488, + 297, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 297, + 500 + ], + "score": 1.0, + "content": "begin with very large perturbations to guarantee", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 498, + 297, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 297, + 510 + ], + "score": 1.0, + "content": "misclassification and gradually reduce the per-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 509, + 297, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 297, + 520 + ], + "score": 1.0, + "content": "turbation norm. Both SimBA and SimBA-DCT", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 520, + 298, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 188, + 532 + ], + "score": 1.0, + "content": "have lower average", + "type": "text" + }, + { + "bbox": [ + 188, + 521, + 200, + 532 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 520, + 298, + 532 + ], + "score": 1.0, + "content": "-norm than all methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 532, + 297, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 297, + 543 + ], + "score": 1.0, + "content": "except for ZOO for untargeted attacks, while", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 543, + 297, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 297, + 554 + ], + "score": 1.0, + "content": "requiring an order of magnitude fewer queries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 553, + 297, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 297, + 565 + ], + "score": 1.0, + "content": "(at 1665 and 1232, respectively). For targeted", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 565, + 297, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 297, + 575 + ], + "score": 1.0, + "content": "attack (right table), all the evaluated methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 575, + 297, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 297, + 588 + ], + "score": 1.0, + "content": "have much more similar query count, but both", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 585, + 297, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 297, + 599 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT still require signifi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 597, + 296, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 296, + 608 + ], + "score": 1.0, + "content": "cantly fewer queries than QL attack and Auto-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 607, + 297, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 171, + 620 + ], + "score": 1.0, + "content": "ZOOM, and the", + "type": "text" + }, + { + "bbox": [ + 171, + 609, + 183, + 619 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 607, + 297, + 620 + ], + "score": 1.0, + "content": "-norm of constructed pertur-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 618, + 213, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 213, + 631 + ], + "score": 1.0, + "content": "bation is also much lower.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 366, + 298, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 296, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 297, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 297, + 655 + ], + "score": 1.0, + "content": "Evaluating different networks (Figure 4).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 653, + 297, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 297, + 666 + ], + "score": 1.0, + "content": "To verify that our attack is robust against", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 664, + 297, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 297, + 676 + ], + "score": 1.0, + "content": "different model architectures, we evaluate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 675, + 297, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 297, + 687 + ], + "score": 1.0, + "content": "SimBA and SimBA-DCT additionally against", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 297, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 297, + 699 + ], + "score": 1.0, + "content": "DenseNet-121 (Huang et al., 2017a) and Incep-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 697, + 297, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 297, + 710 + ], + "score": 1.0, + "content": "tion v3 (Szegedy et al., 2016) networks. Fig-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 708, + 297, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 297, + 720 + ], + "score": 1.0, + "content": "ure 4 shows success rate across the number of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 297, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 297, + 732 + ], + "score": 1.0, + "content": "model queries for an untargeted attack against", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 642, + 297, + 732 + ] + }, + { + "type": "image", + "bbox": [ + 307, + 376, + 502, + 609 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 376, + 502, + 609 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 307, + 376, + 502, + 608 + ], + "spans": [ + { + "bbox": [ + 307, + 376, + 502, + 608 + ], + "score": 0.974, + "type": "image", + "image_path": "185717453b53aee51e17b3ad09b3f93837df2a5cd7cc17e6db665519e81e43d1.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 307, + 376, + 502, + 388.2631578947368 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 307, + 388.2631578947368, + 502, + 400.52631578947364 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 307, + 400.52631578947364, + 502, + 412.78947368421046 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 307, + 412.78947368421046, + 502, + 425.0526315789473 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 307, + 425.0526315789473, + 502, + 437.3157894736841 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 307, + 437.3157894736841, + 502, + 449.5789473684209 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 307, + 449.5789473684209, + 502, + 461.84210526315775 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 307, + 461.84210526315775, + 502, + 474.10526315789457 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 307, + 474.10526315789457, + 502, + 486.3684210526314 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 307, + 486.3684210526314, + 502, + 498.6315789473682 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 307, + 498.6315789473682, + 502, + 510.89473684210503 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 307, + 510.89473684210503, + 502, + 523.1578947368419 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 307, + 523.1578947368419, + 502, + 535.4210526315787 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 307, + 535.4210526315787, + 502, + 547.6842105263156 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 307, + 547.6842105263156, + 502, + 559.9473684210525 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 307, + 559.9473684210525, + 502, + 572.2105263157894 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 307, + 572.2105263157894, + 502, + 584.4736842105262 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 307, + 584.4736842105262, + 502, + 596.7368421052631 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 307, + 596.7368421052631, + 502, + 609.0 + ], + "spans": [], + "index": 61 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 305, + 617, + 504, + 726 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 304, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "Figure 5: Randomly selected images before and", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 304, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 304, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "after adversarial perturbation by SimBA, SimBA-", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 303, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 303, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "DCT and boundary attack. The constructed per-", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 304, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 304, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "turbation is imperceptible for all three methods,", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 304, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 304, + 660, + 335, + 672 + ], + "score": 1.0, + "content": "but the", + "type": "text" + }, + { + "bbox": [ + 335, + 661, + 348, + 672 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "-norm for SimBA and SimBA-DCT is", + "type": "text" + } + ], + "index": 66 + }, + { + "bbox": [ + 303, + 672, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 303, + 672, + 505, + 684 + ], + "score": 1.0, + "content": "significantly lower than boundary attack across all", + "type": "text" + } + ], + "index": 67 + }, + { + "bbox": [ + 303, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 303, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "images, despite allowing boundary attack to make", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 304, + 694, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 304, + 694, + 505, + 705 + ], + "score": 1.0, + "content": "60,000 queries. In comparison, our methods are", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 303, + 704, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 303, + 704, + 505, + 716 + ], + "score": 1.0, + "content": "capable of constructing an adversarial example in", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 303, + 715, + 468, + 726 + ], + "spans": [ + { + "bbox": [ + 303, + 715, + 468, + 726 + ], + "score": 1.0, + "content": "as few as 36 queries. Zoom in for detail.", + "type": "text" + } + ], + "index": 71 + } + ], + "index": 66.5 + } + ], + "index": 59.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 80, + 503, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 80, + 503, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 503, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 503, + 204 + ], + "score": 0.9, + "type": "image", + "image_path": "f9bfccb10b14cc731fbe504da93bbd43da7c023d54f5277d521cf6335835b304.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 503, + 121.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 121.33333333333334, + 503, + 162.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 162.66666666666669, + 503, + 204.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 213, + 506, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "Figure 6: Screenshot of Google Cloud Vision labeling results on a randomly chosen image before", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 225, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 236 + ], + "score": 1.0, + "content": "and after adversarial perturbation. While the labels for the adversarial image are still reasonable, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 235, + 492, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 492, + 248 + ], + "score": 1.0, + "content": "concept bird has been completely removed. See Supplementary Material for additional samples.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 505, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "score": 1.0, + "content": "the three different network architectures. ResNet-50 and DenseNet-121 exhibit a similar degree", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "of vulnerability against our attacks. However, Inception v3 is noticeably more difficult to attack,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 290, + 414, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 414, + 304 + ], + "score": 1.0, + "content": "requiring more than 10,000 queries to successfully attack with some images.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Qualitative results (Figure 5). For qualitative evaluation of our method, we present several ran-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "domly selected images before and after adversarial perturbation by untargeted attack. For compar-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "ison, we attack the same set of images using boundary attack for 30,000 iterations (60,000 model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 449, + 359 + ], + "score": 1.0, + "content": "queries). Figure 5 shows the clean and perturbed images along with the perturbation", + "type": "text" + }, + { + "bbox": [ + 450, + 347, + 462, + 357 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "-norm and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "number of queries. While all attacks are highly successful at changing the label, SimBA and SimBA-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "score": 1.0, + "content": "DCT require much fewer queries and the resulting perturbation norm is also much smaller than that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "of boundary attack. In fact, SimBA-DCT was able to find an adversarial image in as few as 36", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "model queries! Notice that the perturbation produced by SimBA contains sparse but sharp differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 209, + 415 + ], + "score": 1.0, + "content": "ences, constituting a low", + "type": "text" + }, + { + "bbox": [ + 209, + 402, + 222, + 412 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 400, + 323, + 415 + ], + "score": 1.0, + "content": "norm but relatively high", + "type": "text" + }, + { + "bbox": [ + 324, + 402, + 340, + 412 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "norm. However, SimBA-DCT produces", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "perturbations that are sparse in frequency space, but the resulting change in pixel space is spread out", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 423, + 175, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 175, + 435 + ], + "score": 1.0, + "content": "across all pixels.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 109, + 448, + 271, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 274, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 274, + 461 + ], + "score": 1.0, + "content": "4.3 GOOGLE CLOUD VISION ATTACK", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 296, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 297, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 297, + 480 + ], + "score": 1.0, + "content": "To demonstrate the effectiveness of our at-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 297, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 297, + 492 + ], + "score": 1.0, + "content": "tack against real world systems, we attack the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 491, + 297, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 297, + 503 + ], + "score": 1.0, + "content": "Google Cloud Vision API, an online machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 502, + 297, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 297, + 513 + ], + "score": 1.0, + "content": "learning service that provides labels for arbi-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 513, + 297, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 297, + 524 + ], + "score": 1.0, + "content": "trary input images. For a given image, the API", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 524, + 297, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 297, + 535 + ], + "score": 1.0, + "content": "returns a list of top concepts contained in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 534, + 297, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 297, + 546 + ], + "score": 1.0, + "content": "image and their associated probabilities. Since", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 545, + 297, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 297, + 557 + ], + "score": 1.0, + "content": "the full list of probabilities associated with ev-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 556, + 297, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 297, + 568 + ], + "score": 1.0, + "content": "ery label is unavailable, we define an untargeted", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 567, + 297, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 297, + 579 + ], + "score": 1.0, + "content": "attack that aims to remove the top 3 concepts", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 578, + 297, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 297, + 590 + ], + "score": 1.0, + "content": "in the original. We use the maximum of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 590, + 298, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 298, + 601 + ], + "score": 1.0, + "content": "original top 3 concepts’ returned probabilities", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 600, + 297, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 297, + 612 + ], + "score": 1.0, + "content": "as the adversarial loss and use SimBA to min-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 611, + 297, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 297, + 623 + ], + "score": 1.0, + "content": "imize this loss. Figure 6 shows a sample ran-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 622, + 297, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 297, + 635 + ], + "score": 1.0, + "content": "dom image before and after the attack. The top", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 633, + 298, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 298, + 645 + ], + "score": 1.0, + "content": "3 concepts, in particular the concept bird, have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 643, + 265, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 265, + 657 + ], + "score": 1.0, + "content": "been removed in the adversarial image.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 29 + }, + { + "type": "image", + "bbox": [ + 304, + 445, + 502, + 590 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 304, + 445, + 502, + 590 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 445, + 502, + 590 + ], + "spans": [ + { + "bbox": [ + 304, + 445, + 502, + 590 + ], + "score": 0.965, + "type": "image", + "image_path": "5a9be383d241f2bbc4e0ccc0b2582d537471b9498dec0583ff3064ca9276c752.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 304, + 445, + 502, + 457.0833333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 304, + 457.0833333333333, + 502, + 469.16666666666663 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 304, + 469.16666666666663, + 502, + 481.24999999999994 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 304, + 481.24999999999994, + 502, + 493.33333333333326 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 304, + 493.33333333333326, + 502, + 505.4166666666666 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 304, + 505.4166666666666, + 502, + 517.4999999999999 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 304, + 517.4999999999999, + 502, + 529.5833333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 304, + 529.5833333333333, + 502, + 541.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 304, + 541.6666666666666, + 502, + 553.75 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 304, + 553.75, + 502, + 565.8333333333334 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 304, + 565.8333333333334, + 502, + 577.9166666666667 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 304, + 577.9166666666667, + 502, + 590.0000000000001 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 598, + 505, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 598, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 304, + 598, + 506, + 610 + ], + "score": 1.0, + "content": "Figure 7: Plot of success rate across number of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 304, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 304, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "model queries for Google Cloud Vision attack.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 304, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 304, + 620, + 450, + 632 + ], + "score": 1.0, + "content": "SimBA is able to achieve close to", + "type": "text" + }, + { + "bbox": [ + 450, + 620, + 470, + 631 + ], + "score": 0.88, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "success", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 304, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 304, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "rate after only 5000 queries, while the success rate", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 304, + 642, + 439, + 654 + ], + "spans": [ + { + "bbox": [ + 304, + 642, + 415, + 654 + ], + "score": 1.0, + "content": "for LFBA has only reached", + "type": "text" + }, + { + "bbox": [ + 416, + 642, + 435, + 653 + ], + "score": 0.89, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 642, + 439, + 654 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52 + } + ], + "index": 47.75 + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 297, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 297, + 674 + ], + "score": 1.0, + "content": "Since our attack can be executed efficiently, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "evaluate its effectiveness over an aggregate of 50 random images. For the LFBA baseline, we define", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 684, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 340, + 695 + ], + "score": 1.0, + "content": "an attack as successful if the produced perturbation has an", + "type": "text" + }, + { + "bbox": [ + 340, + 684, + 353, + 694 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 684, + 466, + 695 + ], + "score": 1.0, + "content": "-norm of at most the highest", + "type": "text" + }, + { + "bbox": [ + 467, + 684, + 479, + 694 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 684, + 505, + 695 + ], + "score": 1.0, + "content": "-norm", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 694, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 706 + ], + "score": 1.0, + "content": "in a successful run of our attack. Figure 7 shows the average success rate of both attacks across", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 349, + 717 + ], + "score": 1.0, + "content": "number of queries. SimBA achieves a final success rate of", + "type": "text" + }, + { + "bbox": [ + 350, + 705, + 370, + 716 + ], + "score": 0.88, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 705, + 505, + 717 + ], + "score": 1.0, + "content": "after only 5000 API calls, while", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 715, + 505, + 728 + ], + "spans": [ + { + "bbox": [ + 105, + 715, + 232, + 728 + ], + "score": 1.0, + "content": "LFBA is able to succeed only", + "type": "text" + }, + { + "bbox": [ + 233, + 716, + 253, + 727 + ], + "score": 0.87, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 715, + 505, + 728 + ], + "score": 1.0, + "content": "of the time under the same query budge. To the best of our", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 57.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": "image", + "bbox": [ + 106, + 80, + 503, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 80, + 503, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 503, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 503, + 204 + ], + "score": 0.9, + "type": "image", + "image_path": "f9bfccb10b14cc731fbe504da93bbd43da7c023d54f5277d521cf6335835b304.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 503, + 121.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 121.33333333333334, + 503, + 162.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 162.66666666666669, + 503, + 204.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 213, + 506, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "Figure 6: Screenshot of Google Cloud Vision labeling results on a randomly chosen image before", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 225, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 236 + ], + "score": 1.0, + "content": "and after adversarial perturbation. While the labels for the adversarial image are still reasonable, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 235, + 492, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 492, + 248 + ], + "score": 1.0, + "content": "concept bird has been completely removed. See Supplementary Material for additional samples.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 505, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 281 + ], + "score": 1.0, + "content": "the three different network architectures. ResNet-50 and DenseNet-121 exhibit a similar degree", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "of vulnerability against our attacks. However, Inception v3 is noticeably more difficult to attack,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 290, + 414, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 414, + 304 + ], + "score": 1.0, + "content": "requiring more than 10,000 queries to successfully attack with some images.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 266, + 505, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Qualitative results (Figure 5). For qualitative evaluation of our method, we present several ran-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "domly selected images before and after adversarial perturbation by untargeted attack. For compar-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "ison, we attack the same set of images using boundary attack for 30,000 iterations (60,000 model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 449, + 359 + ], + "score": 1.0, + "content": "queries). Figure 5 shows the clean and perturbed images along with the perturbation", + "type": "text" + }, + { + "bbox": [ + 450, + 347, + 462, + 357 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "-norm and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "number of queries. While all attacks are highly successful at changing the label, SimBA and SimBA-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 506, + 381 + ], + "score": 1.0, + "content": "DCT require much fewer queries and the resulting perturbation norm is also much smaller than that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "of boundary attack. In fact, SimBA-DCT was able to find an adversarial image in as few as 36", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "model queries! Notice that the perturbation produced by SimBA contains sparse but sharp differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 209, + 415 + ], + "score": 1.0, + "content": "ences, constituting a low", + "type": "text" + }, + { + "bbox": [ + 209, + 402, + 222, + 412 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 400, + 323, + 415 + ], + "score": 1.0, + "content": "norm but relatively high", + "type": "text" + }, + { + "bbox": [ + 324, + 402, + 340, + 412 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "norm. However, SimBA-DCT produces", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "perturbations that are sparse in frequency space, but the resulting change in pixel space is spread out", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 423, + 175, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 175, + 435 + ], + "score": 1.0, + "content": "across all pixels.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 313, + 506, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 448, + 271, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 274, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 274, + 461 + ], + "score": 1.0, + "content": "4.3 GOOGLE CLOUD VISION ATTACK", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 296, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 297, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 297, + 480 + ], + "score": 1.0, + "content": "To demonstrate the effectiveness of our at-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 297, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 297, + 492 + ], + "score": 1.0, + "content": "tack against real world systems, we attack the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 491, + 297, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 297, + 503 + ], + "score": 1.0, + "content": "Google Cloud Vision API, an online machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 502, + 297, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 297, + 513 + ], + "score": 1.0, + "content": "learning service that provides labels for arbi-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 513, + 297, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 297, + 524 + ], + "score": 1.0, + "content": "trary input images. For a given image, the API", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 524, + 297, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 297, + 535 + ], + "score": 1.0, + "content": "returns a list of top concepts contained in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 534, + 297, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 297, + 546 + ], + "score": 1.0, + "content": "image and their associated probabilities. Since", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 545, + 297, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 297, + 557 + ], + "score": 1.0, + "content": "the full list of probabilities associated with ev-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 556, + 297, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 297, + 568 + ], + "score": 1.0, + "content": "ery label is unavailable, we define an untargeted", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 567, + 297, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 297, + 579 + ], + "score": 1.0, + "content": "attack that aims to remove the top 3 concepts", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 578, + 297, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 297, + 590 + ], + "score": 1.0, + "content": "in the original. We use the maximum of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 590, + 298, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 298, + 601 + ], + "score": 1.0, + "content": "original top 3 concepts’ returned probabilities", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 600, + 297, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 297, + 612 + ], + "score": 1.0, + "content": "as the adversarial loss and use SimBA to min-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 611, + 297, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 297, + 623 + ], + "score": 1.0, + "content": "imize this loss. Figure 6 shows a sample ran-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 622, + 297, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 297, + 635 + ], + "score": 1.0, + "content": "dom image before and after the attack. The top", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 633, + 298, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 298, + 645 + ], + "score": 1.0, + "content": "3 concepts, in particular the concept bird, have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 643, + 265, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 265, + 657 + ], + "score": 1.0, + "content": "been removed in the adversarial image.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 468, + 298, + 657 + ] + }, + { + "type": "image", + "bbox": [ + 304, + 445, + 502, + 590 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 304, + 445, + 502, + 590 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 445, + 502, + 590 + ], + "spans": [ + { + "bbox": [ + 304, + 445, + 502, + 590 + ], + "score": 0.965, + "type": "image", + "image_path": "5a9be383d241f2bbc4e0ccc0b2582d537471b9498dec0583ff3064ca9276c752.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 304, + 445, + 502, + 457.0833333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 304, + 457.0833333333333, + 502, + 469.16666666666663 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 304, + 469.16666666666663, + 502, + 481.24999999999994 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 304, + 481.24999999999994, + 502, + 493.33333333333326 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 304, + 493.33333333333326, + 502, + 505.4166666666666 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 304, + 505.4166666666666, + 502, + 517.4999999999999 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 304, + 517.4999999999999, + 502, + 529.5833333333333 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 304, + 529.5833333333333, + 502, + 541.6666666666666 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 304, + 541.6666666666666, + 502, + 553.75 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 304, + 553.75, + 502, + 565.8333333333334 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 304, + 565.8333333333334, + 502, + 577.9166666666667 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 304, + 577.9166666666667, + 502, + 590.0000000000001 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 598, + 505, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 598, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 304, + 598, + 506, + 610 + ], + "score": 1.0, + "content": "Figure 7: Plot of success rate across number of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 304, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 304, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "model queries for Google Cloud Vision attack.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 304, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 304, + 620, + 450, + 632 + ], + "score": 1.0, + "content": "SimBA is able to achieve close to", + "type": "text" + }, + { + "bbox": [ + 450, + 620, + 470, + 631 + ], + "score": 0.88, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "success", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 304, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 304, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "rate after only 5000 queries, while the success rate", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 304, + 642, + 439, + 654 + ], + "spans": [ + { + "bbox": [ + 304, + 642, + 415, + 654 + ], + "score": 1.0, + "content": "for LFBA has only reached", + "type": "text" + }, + { + "bbox": [ + 416, + 642, + 435, + 653 + ], + "score": 0.89, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 642, + 439, + 654 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52 + } + ], + "index": 47.75 + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 297, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 297, + 674 + ], + "score": 1.0, + "content": "Since our attack can be executed efficiently, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "evaluate its effectiveness over an aggregate of 50 random images. For the LFBA baseline, we define", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 684, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 340, + 695 + ], + "score": 1.0, + "content": "an attack as successful if the produced perturbation has an", + "type": "text" + }, + { + "bbox": [ + 340, + 684, + 353, + 694 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 684, + 466, + 695 + ], + "score": 1.0, + "content": "-norm of at most the highest", + "type": "text" + }, + { + "bbox": [ + 467, + 684, + 479, + 694 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 684, + 505, + 695 + ], + "score": 1.0, + "content": "-norm", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 694, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 706 + ], + "score": 1.0, + "content": "in a successful run of our attack. Figure 7 shows the average success rate of both attacks across", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 349, + 717 + ], + "score": 1.0, + "content": "number of queries. SimBA achieves a final success rate of", + "type": "text" + }, + { + "bbox": [ + 350, + 705, + 370, + 716 + ], + "score": 0.88, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 705, + 505, + 717 + ], + "score": 1.0, + "content": "after only 5000 API calls, while", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 715, + 505, + 728 + ], + "spans": [ + { + "bbox": [ + 105, + 715, + 232, + 728 + ], + "score": 1.0, + "content": "LFBA is able to succeed only", + "type": "text" + }, + { + "bbox": [ + 233, + 716, + 253, + 727 + ], + "score": 0.87, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 715, + 505, + 728 + ], + "score": 1.0, + "content": "of the time under the same query budge. To the best of our", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "knowledge, this is the first adversarial attack result on Google Cloud Vision that has a high reported", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 313, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 313, + 106 + ], + "score": 1.0, + "content": "success rate within very limited number of queries.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 57.5, + "bbox_fs": [ + 105, + 660, + 506, + 728 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "knowledge, this is the first adversarial attack result on Google Cloud Vision that has a high reported", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 313, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 313, + 106 + ], + "score": 1.0, + "content": "success rate within very limited number of queries.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 120, + 211, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 213, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 213, + 135 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 159 + ], + "score": 1.0, + "content": "Many recent studies have shown that both white-box and black-box attacks can be applied to a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 506, + 169 + ], + "score": 1.0, + "content": "diverse set of tasks. Computer vision models for image segmentation and object detection have also", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "been shown to be vulnerable against adversarial perturbations (Cisse et al., 2017a; Xie et al., 2017).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 179, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 191 + ], + "score": 1.0, + "content": "Carlini & Wagner (2018) performed a systematic study of speech recognition attacks and showed", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "that robust adversarial examples that alter the transcription model to output arbitrary target phrases", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "can be constructed. Attacks on neural network policies (Huang et al., 2017b; Behzadan & Munir,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 295, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 295, + 224 + ], + "score": 1.0, + "content": "2017) have also been shown to be permissible.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "As these attacks become prevalent, many recent works have focused on designing defenses against", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "adversarial examples. One common class of defenses applies an image transformation prior to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "score": 1.0, + "content": "classification, which aims to remove the adversarial perturbation without changing the image content", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "(Xu et al., 2017; Dziugaite et al., 2016; Guo et al., 2017). Instead of requiring the model to correctly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "classify all adversarial images, another strategy is to detect the attack and output an adversarial class", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "score": 1.0, + "content": "when certain statistics of the input appear abnormal (Li & Li, 2017; Metzen et al., 2017; Meng", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "& Chen, 2017; Lu et al., 2017). The training procedure can also be strengthened by including", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "score": 1.0, + "content": "the adversarial loss as an implicit or explicit regularizer to promote robustness against adversarial", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "perturbations (Tramer et al., 2017; Madry et al., 2017; Cisse et al., 2017b). While these defenses `", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "have shown great success against a passive adversary, almost all of them can be easily defeated by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "modifying the attack strategy (Carlini & Wagner, 2017a; Athalye & Carlini, 2018; Athalye et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 348, + 136, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 136, + 363 + ], + "score": 1.0, + "content": "2018).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "Relative to defenses against white-box attacks, few studies have focused on defending against ad-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "score": 1.0, + "content": "versaries that may only access the model via black-box queries. While transfer attacks can be effec-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "tively mitigated by methods such as ensemble adversarial training (Tramer et al., 2017) and image `", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "transformation (Guo et al., 2017), it is unknown whether existing defense strategies can be applied", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "to adaptive adversaries that may access the model via queries. Guo et al. (2018) have shown that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "the boundary attack is susceptible to image transformations that quantize the decision boundary, but", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "employing the attack in low frequency space can successfully circumvent these transformation de-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "fenses. Given the query efficiency and real world applicability of our proposed black-box attacks,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "we hope that more research can be dedicated towards defending against malicious adversaries under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 465, + 178, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 178, + 476 + ], + "score": 1.0, + "content": "this threat model.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 492, + 195, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 197, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 197, + 508 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 504, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "We proposed SimBA, a simple black-box adversarial attack that takes small steps iteratively towards", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "the decision boundary, and demonstrated through extensive experiment its unprecedented query", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "efficiency in both the untargeted and targeted settings. Due to its accessibility, we hope that this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 551, + 473, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 473, + 563 + ], + "score": 1.0, + "content": "method establishes a strong baseline for future research on black-box adversarial examples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "While we intentionally avoid more sophisticated techniques to improve the method in favor of sim-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "plicity, we believe that additional modifications can still dramatically decrease the number of model", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "queries. One possible extension could be to further investigate the selection of different sets of or-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "thonormal bases, which could be crucial to the efficiency of our method by increasing the probability", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "of finding a direction of large change. Another area for improvement is the adaptive selection of the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 366, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 142, + 635 + ], + "score": 1.0, + "content": "step size", + "type": "text" + }, + { + "bbox": [ + 143, + 624, + 149, + 632 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 622, + 366, + 635 + ], + "score": 1.0, + "content": "to optimally consume the distance and query budgets.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "Given that our method has relatively few requirements, it is conceivable that it can be applied to any", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "task for which the target model returns a continuous score for the prediction. For instance, speech", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 661, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 673 + ], + "score": 1.0, + "content": "recognition systems are trained to maximize the probability of the correct transcription, and neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "network policies are trained to maximize some reward function over the set of actions conditioned", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "on the current environment. A simple iterative algorithm that modifies the input at random elements", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 694, + 455, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 455, + 705 + ], + "score": 1.0, + "content": "may prove to be effective in these scenarios. We leave these directions for future work.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 120, + 211, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 213, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 213, + 135 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 159 + ], + "score": 1.0, + "content": "Many recent studies have shown that both white-box and black-box attacks can be applied to a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 506, + 169 + ], + "score": 1.0, + "content": "diverse set of tasks. Computer vision models for image segmentation and object detection have also", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "been shown to be vulnerable against adversarial perturbations (Cisse et al., 2017a; Xie et al., 2017).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 179, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 191 + ], + "score": 1.0, + "content": "Carlini & Wagner (2018) performed a systematic study of speech recognition attacks and showed", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "that robust adversarial examples that alter the transcription model to output arbitrary target phrases", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "can be constructed. Attacks on neural network policies (Huang et al., 2017b; Behzadan & Munir,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 295, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 295, + 224 + ], + "score": 1.0, + "content": "2017) have also been shown to be permissible.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 145, + 506, + 224 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 241 + ], + "score": 1.0, + "content": "As these attacks become prevalent, many recent works have focused on designing defenses against", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "adversarial examples. One common class of defenses applies an image transformation prior to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "score": 1.0, + "content": "classification, which aims to remove the adversarial perturbation without changing the image content", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "(Xu et al., 2017; Dziugaite et al., 2016; Guo et al., 2017). Instead of requiring the model to correctly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "classify all adversarial images, another strategy is to detect the attack and output an adversarial class", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "score": 1.0, + "content": "when certain statistics of the input appear abnormal (Li & Li, 2017; Metzen et al., 2017; Meng", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "& Chen, 2017; Lu et al., 2017). The training procedure can also be strengthened by including", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "score": 1.0, + "content": "the adversarial loss as an implicit or explicit regularizer to promote robustness against adversarial", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "perturbations (Tramer et al., 2017; Madry et al., 2017; Cisse et al., 2017b). While these defenses `", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "have shown great success against a passive adversary, almost all of them can be easily defeated by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "modifying the attack strategy (Carlini & Wagner, 2017a; Athalye & Carlini, 2018; Athalye et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 348, + 136, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 136, + 363 + ], + "score": 1.0, + "content": "2018).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 229, + 506, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "Relative to defenses against white-box attacks, few studies have focused on defending against ad-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "score": 1.0, + "content": "versaries that may only access the model via black-box queries. While transfer attacks can be effec-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "tively mitigated by methods such as ensemble adversarial training (Tramer et al., 2017) and image `", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "transformation (Guo et al., 2017), it is unknown whether existing defense strategies can be applied", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "to adaptive adversaries that may access the model via queries. Guo et al. (2018) have shown that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "the boundary attack is susceptible to image transformations that quantize the decision boundary, but", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "employing the attack in low frequency space can successfully circumvent these transformation de-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "fenses. Given the query efficiency and real world applicability of our proposed black-box attacks,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "we hope that more research can be dedicated towards defending against malicious adversaries under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 465, + 178, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 178, + 476 + ], + "score": 1.0, + "content": "this threat model.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 366, + 506, + 476 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 492, + 195, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 197, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 197, + 508 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 504, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "We proposed SimBA, a simple black-box adversarial attack that takes small steps iteratively towards", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "the decision boundary, and demonstrated through extensive experiment its unprecedented query", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "efficiency in both the untargeted and targeted settings. Due to its accessibility, we hope that this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 551, + 473, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 473, + 563 + ], + "score": 1.0, + "content": "method establishes a strong baseline for future research on black-box adversarial examples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 518, + 505, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "While we intentionally avoid more sophisticated techniques to improve the method in favor of sim-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "plicity, we believe that additional modifications can still dramatically decrease the number of model", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "queries. One possible extension could be to further investigate the selection of different sets of or-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "thonormal bases, which could be crucial to the efficiency of our method by increasing the probability", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "of finding a direction of large change. Another area for improvement is the adaptive selection of the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 366, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 142, + 635 + ], + "score": 1.0, + "content": "step size", + "type": "text" + }, + { + "bbox": [ + 143, + 624, + 149, + 632 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 622, + 366, + 635 + ], + "score": 1.0, + "content": "to optimally consume the distance and query budgets.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 567, + 506, + 635 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "Given that our method has relatively few requirements, it is conceivable that it can be applied to any", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "task for which the target model returns a continuous score for the prediction. For instance, speech", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 661, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 673 + ], + "score": 1.0, + "content": "recognition systems are trained to maximize the probability of the correct transcription, and neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "network policies are trained to maximize some reward function over the set of actions conditioned", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "on the current environment. A simple iterative algorithm that modifies the input at random elements", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 694, + 455, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 455, + 705 + ], + "score": 1.0, + "content": "may prove to be effective in these scenarios. We leave these directions for future work.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 638, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 176, + 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": [ + 106, + 100, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "Anish Athalye and Nicholas Carlini. On the robustness of the CVPR 2018 white-box adversarial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 504, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 504, + 123 + ], + "score": 1.0, + "content": "example defenses. CoRR, abs/1804.03286, 2018. URL http://arxiv.org/abs/1804.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 152, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 152, + 133 + ], + "score": 1.0, + "content": "03286.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 108, + 141, + 503, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "Anish Athalye, Nicholas Carlini, and David A. Wagner. Obfuscated gradients give a false sense of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 164 + ], + "score": 1.0, + "content": "security: Circumventing defenses to adversarial examples. CoRR, abs/1802.00420, 2018. URL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 163, + 307, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 307, + 176 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1802.00420.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 195 + ], + "score": 1.0, + "content": "Vahid Behzadan and Arslan Munir. Vulnerability of deep reinforcement learning to policy induction", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 193, + 272, + 204 + ], + "spans": [ + { + "bbox": [ + 116, + 193, + 272, + 204 + ], + "score": 1.0, + "content": "attacks. CoRR, abs/1701.04143, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 224 + ], + "score": 1.0, + "content": "Wieland Brendel, Jonas Rauber, and Matthias Bethge. Decision-based adversarial attacks: Reliable", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 222, + 504, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 504, + 236 + ], + "score": 1.0, + "content": "attacks against black-box machine learning models. CoRR, abs/1712.04248, 2017. URL http:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 234, + 277, + 245 + ], + "spans": [ + { + "bbox": [ + 117, + 234, + 277, + 245 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1712.04248.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 103, + 252, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 267 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Adversarial examples are not easily detected: Bypassing ten", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 264, + 321, + 275 + ], + "spans": [ + { + "bbox": [ + 117, + 264, + 321, + 275 + ], + "score": 1.0, + "content": "detection methods. CoRR, abs/1705.07263, 2017a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 104, + 282, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Towards evaluating the robustness of neural networks. In", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 293, + 364, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 364, + 306 + ], + "score": 1.0, + "content": "IEEE Symposium on Security and Privacy, pp. 39–57, 2017b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 503, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Audio adversarial examples: Targeted attacks on speech-to-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 473, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 473, + 335 + ], + "score": 1.0, + "content": "text. CoRR, abs/1801.01944, 2018. URL http://arxiv.org/abs/1801.01944.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "score": 1.0, + "content": "Pin-Yu Chen, Huan Zhang, Yash Sharma, Jinfeng Yi, and Cho-Jui Hsieh. ZOO: zeroth order op-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 116, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "timization based black-box attacks to deep neural networks without training substitute models.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "In Proceedings of the 10th ACM Workshop on Artificial Intelligence and Security, AISec@CCS", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "2017, Dallas, TX, USA, November 3, 2017, pp. 15–26, 2017. doi: 10.1145/3128572.3140448.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 386, + 395, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 386, + 395, + 398 + ], + "score": 1.0, + "content": "URL http://doi.acm.org/10.1145/3128572.3140448.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "score": 1.0, + "content": "Minhao Cheng, Thong Le, Pin-Yu Chen, Jinfeng Yi, Huan Zhang, and Cho-Jui Hsieh. Query-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "efficient hard-label black-box attack: An optimization-based approach. CoRR, abs/1807.04457,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 426, + 356, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 356, + 439 + ], + "score": 1.0, + "content": "2018. URL http://arxiv.org/abs/1807.04457.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 503, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 504, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 459 + ], + "score": 1.0, + "content": "Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep struc-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 456, + 344, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 456, + 344, + 469 + ], + "score": 1.0, + "content": "tured prediction models. CoRR, abs/1707.05373, 2017a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 475, + 504, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "Moustapha Cisse, Piotr Bojanowski, Edouard Grave, Yann Dauphin, and Nicolas Usunier. Parseval", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 474, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 474, + 499 + ], + "score": 1.0, + "content": "networks: Improving robustness to adversarial examples. CoRR, abs/1704.08847, 2017b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 504, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite, Zoubin Ghahramani, and Daniel Roy. A study of the effect of JPG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 517, + 384, + 528 + ], + "spans": [ + { + "bbox": [ + 116, + 517, + 384, + 528 + ], + "score": 1.0, + "content": "compression on adversarial images. CoRR, abs/1608.00853, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 547, + 247, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 247, + 558 + ], + "score": 1.0, + "content": "examples. In Proc. ICLR, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Chuan Guo, Mayank Rana, Moustapha Cisse, and Laurens van der Maaten. Countering adversarial ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 576, + 504, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 504, + 589 + ], + "score": 1.0, + "content": "images using input transformations. CoRR, abs/1711.00117, 2017. URL http://arxiv.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 587, + 229, + 599 + ], + "spans": [ + { + "bbox": [ + 116, + 587, + 229, + 599 + ], + "score": 1.0, + "content": "org/abs/1711.00117.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 606, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Chuan Guo, Jared S. Frank, and Kilian Q. Weinberger. Low frequency adversarial perturbations.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 616, + 453, + 629 + ], + "spans": [ + { + "bbox": [ + 117, + 616, + 453, + 629 + ], + "score": 1.0, + "content": "CoRR, abs/1809.08758, 2018. URL http://arxiv.org/abs/1809.08758.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 651 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 290, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 290, + 659 + ], + "score": 1.0, + "content": "nition. In Proc. CVPR, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 105, + 666, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "Gao Huang, Zhuang Liu, Kilian Weinberger, and Laurens van der Maaten. Densely connected", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 375, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 375, + 690 + ], + "score": 1.0, + "content": "convolutional networks. In Proc. CVPR, pp. 2261–2269, 2017a.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 695, + 504, + 719 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 505, + 708 + ], + "score": 1.0, + "content": "Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 707, + 356, + 719 + ], + "spans": [ + { + "bbox": [ + 115, + 707, + 356, + 719 + ], + "score": 1.0, + "content": "on neural network policies. CoRR, abs/1702.02284, 2017b.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": "title", + "bbox": [ + 108, + 82, + 176, + 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": [ + 106, + 100, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "Anish Athalye and Nicholas Carlini. On the robustness of the CVPR 2018 white-box adversarial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 504, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 504, + 123 + ], + "score": 1.0, + "content": "example defenses. CoRR, abs/1804.03286, 2018. URL http://arxiv.org/abs/1804.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 152, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 152, + 133 + ], + "score": 1.0, + "content": "03286.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 100, + 505, + 133 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 141, + 503, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "Anish Athalye, Nicholas Carlini, and David A. Wagner. Obfuscated gradients give a false sense of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 164 + ], + "score": 1.0, + "content": "security: Circumventing defenses to adversarial examples. CoRR, abs/1802.00420, 2018. URL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 163, + 307, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 307, + 176 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1802.00420.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 141, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 195 + ], + "score": 1.0, + "content": "Vahid Behzadan and Arslan Munir. Vulnerability of deep reinforcement learning to policy induction", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 193, + 272, + 204 + ], + "spans": [ + { + "bbox": [ + 116, + 193, + 272, + 204 + ], + "score": 1.0, + "content": "attacks. CoRR, abs/1701.04143, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 180, + 505, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 224 + ], + "score": 1.0, + "content": "Wieland Brendel, Jonas Rauber, and Matthias Bethge. Decision-based adversarial attacks: Reliable", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 222, + 504, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 504, + 236 + ], + "score": 1.0, + "content": "attacks against black-box machine learning models. CoRR, abs/1712.04248, 2017. URL http:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 234, + 277, + 245 + ], + "spans": [ + { + "bbox": [ + 117, + 234, + 277, + 245 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1712.04248.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 211, + 505, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 252, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 267 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Adversarial examples are not easily detected: Bypassing ten", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 264, + 321, + 275 + ], + "spans": [ + { + "bbox": [ + 117, + 264, + 321, + 275 + ], + "score": 1.0, + "content": "detection methods. CoRR, abs/1705.07263, 2017a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 251, + 505, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 282, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Towards evaluating the robustness of neural networks. In", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 293, + 364, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 364, + 306 + ], + "score": 1.0, + "content": "IEEE Symposium on Security and Privacy, pp. 39–57, 2017b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 282, + 505, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 503, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "Nicholas Carlini and David A. Wagner. Audio adversarial examples: Targeted attacks on speech-to-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 473, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 473, + 335 + ], + "score": 1.0, + "content": "text. CoRR, abs/1801.01944, 2018. URL http://arxiv.org/abs/1801.01944.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 311, + 505, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "score": 1.0, + "content": "Pin-Yu Chen, Huan Zhang, Yash Sharma, Jinfeng Yi, and Cho-Jui Hsieh. ZOO: zeroth order op-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 116, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "timization based black-box attacks to deep neural networks without training substitute models.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "In Proceedings of the 10th ACM Workshop on Artificial Intelligence and Security, AISec@CCS", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "2017, Dallas, TX, USA, November 3, 2017, pp. 15–26, 2017. doi: 10.1145/3128572.3140448.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 386, + 395, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 386, + 395, + 398 + ], + "score": 1.0, + "content": "URL http://doi.acm.org/10.1145/3128572.3140448.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 340, + 506, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "score": 1.0, + "content": "Minhao Cheng, Thong Le, Pin-Yu Chen, Jinfeng Yi, Huan Zhang, and Cho-Jui Hsieh. Query-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "efficient hard-label black-box attack: An optimization-based approach. CoRR, abs/1807.04457,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 426, + 356, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 356, + 439 + ], + "score": 1.0, + "content": "2018. URL http://arxiv.org/abs/1807.04457.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 403, + 505, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 503, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 504, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 459 + ], + "score": 1.0, + "content": "Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep struc-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 456, + 344, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 456, + 344, + 469 + ], + "score": 1.0, + "content": "tured prediction models. CoRR, abs/1707.05373, 2017a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 444, + 504, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 475, + 504, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "Moustapha Cisse, Piotr Bojanowski, Edouard Grave, Yann Dauphin, and Nicolas Usunier. Parseval", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 474, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 474, + 499 + ], + "score": 1.0, + "content": "networks: Improving robustness to adversarial examples. CoRR, abs/1704.08847, 2017b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 476, + 505, + 499 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 504, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite, Zoubin Ghahramani, and Daniel Roy. A study of the effect of JPG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 517, + 384, + 528 + ], + "spans": [ + { + "bbox": [ + 116, + 517, + 384, + 528 + ], + "score": 1.0, + "content": "compression on adversarial images. CoRR, abs/1608.00853, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 505, + 505, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 547, + 247, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 247, + 558 + ], + "score": 1.0, + "content": "examples. In Proc. ICLR, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 534, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Chuan Guo, Mayank Rana, Moustapha Cisse, and Laurens van der Maaten. Countering adversarial ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 576, + 504, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 504, + 589 + ], + "score": 1.0, + "content": "images using input transformations. CoRR, abs/1711.00117, 2017. URL http://arxiv.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 587, + 229, + 599 + ], + "spans": [ + { + "bbox": [ + 116, + 587, + 229, + 599 + ], + "score": 1.0, + "content": "org/abs/1711.00117.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 565, + 505, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 606, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Chuan Guo, Jared S. Frank, and Kilian Q. Weinberger. Low frequency adversarial perturbations.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 616, + 453, + 629 + ], + "spans": [ + { + "bbox": [ + 117, + 616, + 453, + 629 + ], + "score": 1.0, + "content": "CoRR, abs/1809.08758, 2018. URL http://arxiv.org/abs/1809.08758.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 606, + 505, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 651 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 290, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 290, + 659 + ], + "score": 1.0, + "content": "nition. In Proc. CVPR, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 633, + 505, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 666, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "Gao Huang, Zhuang Liu, Kilian Weinberger, and Laurens van der Maaten. Densely connected", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 375, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 375, + 690 + ], + "score": 1.0, + "content": "convolutional networks. In Proc. CVPR, pp. 2261–2269, 2017a.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 666, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 695, + 504, + 719 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 505, + 708 + ], + "score": 1.0, + "content": "Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 707, + 356, + 719 + ], + "spans": [ + { + "bbox": [ + 115, + 707, + 356, + 719 + ], + "score": 1.0, + "content": "on neural network policies. CoRR, abs/1702.02284, 2017b.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 695, + 505, + 719 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "limited queries and information. In Proceedings of the 35th International Conference on Machine", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2142–2151,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 445, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 445, + 128 + ], + "score": 1.0, + "content": "2018. URL http://proceedings.mlr.press/v80/ilyas18a.html.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 134, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. CoRR,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 209, + 156 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 209, + 156 + ], + "score": 1.0, + "content": "abs/1611.01236, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "Xin Li and Fuxin Li. Adversarial examples detection in deep networks with convolutional filter", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 504, + 187 + ], + "score": 1.0, + "content": "statistics. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "October 22-29, 2017, pp. 5775–5783, 2017. doi: 10.1109/ICCV.2017.615. URL https:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 198, + 308, + 209 + ], + "spans": [ + { + "bbox": [ + 117, + 198, + 308, + 209 + ], + "score": 1.0, + "content": "//doi.org/10.1109/ICCV.2017.615.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Jiajun Lu, Theerasit Issaranon, and David A. Forsyth. Safetynet: Detecting and rejecting adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 504, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 504, + 239 + ], + "score": 1.0, + "content": "examples robustly. In IEEE International Conference on Computer Vision, ICCV 2017, Venice,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 237, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 237, + 505, + 251 + ], + "score": 1.0, + "content": "Italy, October 22-29, 2017, pp. 446–454, 2017. doi: 10.1109/ICCV.2017.56. URL https:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 249, + 301, + 261 + ], + "spans": [ + { + "bbox": [ + 117, + 249, + 301, + 261 + ], + "score": 1.0, + "content": "//doi.org/10.1109/ICCV.2017.56.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 115, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. CoRR, abs/1706.06083, 2017.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 290, + 329, + 302 + ], + "spans": [ + { + "bbox": [ + 117, + 290, + 329, + 302 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1706.06083.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "Dongyu Meng and Hao Chen. Magnet: A two-pronged defense against adversarial examples. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 505, + 333 + ], + "score": 1.0, + "content": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "CCS 2017, Dallas, TX, USA, October 30 - November 03, 2017, pp. 135–147, 2017. doi: 10.1145/", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 341, + 474, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 474, + 354 + ], + "score": 1.0, + "content": "3133956.3134057. URL http://doi.acm.org/10.1145/3133956.3134057.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adver-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 371, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 503, + 383 + ], + "score": 1.0, + "content": "sarial perturbations. CoRR, abs/1702.04267, 2017. URL http://arxiv.org/abs/1702.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 382, + 152, + 394 + ], + "spans": [ + { + "bbox": [ + 116, + 382, + 152, + 394 + ], + "score": 1.0, + "content": "04267.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 105, + 401, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: A simple and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 412, + 459, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 459, + 424 + ], + "score": 1.0, + "content": "accurate method to fool deep neural networks. In Proc. CVPR, pp. 2574–2582, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 442, + 356, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 356, + 454 + ], + "score": 1.0, + "content": "adversarial perturbations. In Proc. CVPR, pp. 86–94, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Ali Shafahi, W. Ronny Huang, Christoph Studer, Soheil Feizi, and Tom Goldstein. Are adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 471, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 115, + 471, + 504, + 484 + ], + "score": 1.0, + "content": "examples inevitable? CoRR, abs/1809.02104, 2018. URL http://arxiv.org/abs/1809.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 483, + 152, + 495 + ], + "spans": [ + { + "bbox": [ + 116, + 483, + 152, + 495 + ], + "score": 1.0, + "content": "02104.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 504, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 448, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 448, + 525 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. In In Proc. ICLR, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "score": 1.0, + "content": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 542, + 459, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 459, + 555 + ], + "score": 1.0, + "content": "the inception architecture for computer vision. In Proc. CVPR, pp. 2818–2826, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick D. McDaniel. Ensemble `", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 573, + 412, + 585 + ], + "spans": [ + { + "bbox": [ + 116, + 573, + 412, + 585 + ], + "score": 1.0, + "content": "adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "Chun-Chen Tu, Pai-Shun Ting, Pin-Yu Chen, Sijia Liu, Huan Zhang, Jinfeng Yi, Cho-Jui Hsieh,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "and Shin-Ming Cheng. Autozoom: Autoencoder-based zeroth order optimization method for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 504, + 627 + ], + "score": 1.0, + "content": "attacking black-box neural networks. CoRR, abs/1805.11770, 2018. URL http://arxiv.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 625, + 229, + 637 + ], + "spans": [ + { + "bbox": [ + 116, + 625, + 229, + 637 + ], + "score": 1.0, + "content": "org/abs/1805.11770.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 506, + 656 + ], + "score": 1.0, + "content": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan L. Yuille. Adver-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 115, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "sarial examples for semantic segmentation and object detection. In ICCV, pp. 1378–1387. IEEE", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 665, + 218, + 678 + ], + "spans": [ + { + "bbox": [ + 117, + 665, + 218, + 678 + ], + "score": 1.0, + "content": "Computer Society, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 105, + 684, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 698 + ], + "score": 1.0, + "content": "Weilin Xu, David Evans, and Yanjun Qi. Feature squeezing: Detecting adversarial examples in deep", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 695, + 309, + 707 + ], + "spans": [ + { + "bbox": [ + 115, + 695, + 309, + 707 + ], + "score": 1.0, + "content": "neural networks. CoRR, abs/1704.01155, 2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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": [ + 107, + 27, + 308, + 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 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "limited queries and information. In Proceedings of the 35th International Conference on Machine", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2142–2151,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 445, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 445, + 128 + ], + "score": 1.0, + "content": "2018. URL http://proceedings.mlr.press/v80/ilyas18a.html.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 82, + 505, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 134, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. CoRR,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 209, + 156 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 209, + 156 + ], + "score": 1.0, + "content": "abs/1611.01236, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 133, + 506, + 156 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "Xin Li and Fuxin Li. Adversarial examples detection in deep networks with convolutional filter", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 504, + 187 + ], + "score": 1.0, + "content": "statistics. In IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "October 22-29, 2017, pp. 5775–5783, 2017. doi: 10.1109/ICCV.2017.615. URL https:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 198, + 308, + 209 + ], + "spans": [ + { + "bbox": [ + 117, + 198, + 308, + 209 + ], + "score": 1.0, + "content": "//doi.org/10.1109/ICCV.2017.615.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 163, + 506, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Jiajun Lu, Theerasit Issaranon, and David A. Forsyth. Safetynet: Detecting and rejecting adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 504, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 504, + 239 + ], + "score": 1.0, + "content": "examples robustly. In IEEE International Conference on Computer Vision, ICCV 2017, Venice,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 237, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 237, + 505, + 251 + ], + "score": 1.0, + "content": "Italy, October 22-29, 2017, pp. 446–454, 2017. doi: 10.1109/ICCV.2017.56. URL https:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 249, + 301, + 261 + ], + "spans": [ + { + "bbox": [ + 117, + 249, + 301, + 261 + ], + "score": 1.0, + "content": "//doi.org/10.1109/ICCV.2017.56.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 216, + 505, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 281 + ], + "score": 1.0, + "content": "Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 115, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. CoRR, abs/1706.06083, 2017.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 290, + 329, + 302 + ], + "spans": [ + { + "bbox": [ + 117, + 290, + 329, + 302 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1706.06083.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 267, + 505, + 302 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "Dongyu Meng and Hao Chen. Magnet: A two-pronged defense against adversarial examples. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 505, + 333 + ], + "score": 1.0, + "content": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "CCS 2017, Dallas, TX, USA, October 30 - November 03, 2017, pp. 135–147, 2017. doi: 10.1145/", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 341, + 474, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 474, + 354 + ], + "score": 1.0, + "content": "3133956.3134057. URL http://doi.acm.org/10.1145/3133956.3134057.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 308, + 506, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adver-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 371, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 503, + 383 + ], + "score": 1.0, + "content": "sarial perturbations. CoRR, abs/1702.04267, 2017. URL http://arxiv.org/abs/1702.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 382, + 152, + 394 + ], + "spans": [ + { + "bbox": [ + 116, + 382, + 152, + 394 + ], + "score": 1.0, + "content": "04267.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 359, + 505, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 401, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: A simple and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 412, + 459, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 459, + 424 + ], + "score": 1.0, + "content": "accurate method to fool deep neural networks. In Proc. CVPR, pp. 2574–2582, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 401, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 442, + 356, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 356, + 454 + ], + "score": 1.0, + "content": "adversarial perturbations. In Proc. CVPR, pp. 86–94, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 430, + 505, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Ali Shafahi, W. Ronny Huang, Christoph Studer, Soheil Feizi, and Tom Goldstein. Are adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 471, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 115, + 471, + 504, + 484 + ], + "score": 1.0, + "content": "examples inevitable? CoRR, abs/1809.02104, 2018. URL http://arxiv.org/abs/1809.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 483, + 152, + 495 + ], + "spans": [ + { + "bbox": [ + 116, + 483, + 152, + 495 + ], + "score": 1.0, + "content": "02104.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 461, + 505, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 504, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 448, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 448, + 525 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. In In Proc. ICLR, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 501, + 505, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 546 + ], + "score": 1.0, + "content": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 542, + 459, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 459, + 555 + ], + "score": 1.0, + "content": "the inception architecture for computer vision. In Proc. CVPR, pp. 2818–2826, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 529, + 506, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick D. McDaniel. Ensemble `", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 573, + 412, + 585 + ], + "spans": [ + { + "bbox": [ + 116, + 573, + 412, + 585 + ], + "score": 1.0, + "content": "adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 561, + 505, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "Chun-Chen Tu, Pai-Shun Ting, Pin-Yu Chen, Sijia Liu, Huan Zhang, Jinfeng Yi, Cho-Jui Hsieh,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "and Shin-Ming Cheng. Autozoom: Autoencoder-based zeroth order optimization method for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 504, + 627 + ], + "score": 1.0, + "content": "attacking black-box neural networks. CoRR, abs/1805.11770, 2018. URL http://arxiv.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 625, + 229, + 637 + ], + "spans": [ + { + "bbox": [ + 116, + 625, + 229, + 637 + ], + "score": 1.0, + "content": "org/abs/1805.11770.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 590, + 505, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 506, + 656 + ], + "score": 1.0, + "content": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan L. Yuille. Adver-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 115, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "sarial examples for semantic segmentation and object detection. In ICCV, pp. 1378–1387. IEEE", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 665, + 218, + 678 + ], + "spans": [ + { + "bbox": [ + 117, + 665, + 218, + 678 + ], + "score": 1.0, + "content": "Computer Society, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 642, + 506, + 678 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 684, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 698 + ], + "score": 1.0, + "content": "Weilin Xu, David Evans, and Yanjun Qi. Feature squeezing: Detecting adversarial examples in deep", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 695, + 309, + 707 + ], + "spans": [ + { + "bbox": [ + 115, + 695, + 309, + 707 + ], + "score": 1.0, + "content": "neural networks. CoRR, abs/1704.01155, 2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 682, + 505, + 707 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 281, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 283, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 283, + 96 + ], + "score": 1.0, + "content": "S1 SUPPLEMENTARY MATERIAL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "To demonstrate the generality of our evaluation of the Google Cloud Vision attack, we show 10", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "additional random images before and after perturbation by SimBA. In all cases, we successfully", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 238, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 238, + 141 + ], + "score": 1.0, + "content": "remove the top 3 original labels.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 127, + 145, + 485, + 708 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 145, + 485, + 708 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 145, + 485, + 708 + ], + "spans": [ + { + "bbox": [ + 127, + 145, + 485, + 708 + ], + "score": 0.625, + "type": "image", + "image_path": "13166133a7c0be9e0360f5ebb32dc44fc47742e69f4ae53f3a8d2f9c3f08a4c5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 127, + 145, + 485, + 332.66666666666663 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 127, + 332.66666666666663, + 485, + 520.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 127, + 520.3333333333333, + 485, + 707.9999999999999 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 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 2019", + "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": "title", + "bbox": [ + 107, + 81, + 281, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 283, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 283, + 96 + ], + "score": 1.0, + "content": "S1 SUPPLEMENTARY MATERIAL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "To demonstrate the generality of our evaluation of the Google Cloud Vision attack, we show 10", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "additional random images before and after perturbation by SimBA. In all cases, we successfully", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 238, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 238, + 141 + ], + "score": 1.0, + "content": "remove the top 3 original labels.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 105, + 505, + 141 + ] + }, + { + "type": "image", + "bbox": [ + 127, + 145, + 485, + 708 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 145, + 485, + 708 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 145, + 485, + 708 + ], + "spans": [ + { + "bbox": [ + 127, + 145, + 485, + 708 + ], + "score": 0.625, + "type": "image", + "image_path": "13166133a7c0be9e0360f5ebb32dc44fc47742e69f4ae53f3a8d2f9c3f08a4c5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 127, + 145, + 485, + 332.66666666666663 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 127, + 332.66666666666663, + 485, + 520.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 127, + 520.3333333333333, + 485, + 707.9999999999999 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 114, + 484, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 114, + 484, + 671 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 114, + 484, + 671 + ], + "spans": [ + { + "bbox": [ + 126, + 114, + 484, + 671 + ], + "score": 0.949, + "type": "image", + "image_path": "f3b5f1296a0308812fb35c3a31a88070db640ad95b4da878cf2854887752e494.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 114, + 484, + 299.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 299.66666666666663, + 484, + 485.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 485.33333333333326, + 484, + 670.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 171, + 682, + 439, + 694 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 170, + 680, + 440, + 696 + ], + "spans": [ + { + "bbox": [ + 170, + 680, + 440, + 696 + ], + "score": 1.0, + "content": "Figure S1: Additional adversarial images on Google Cloud Vision.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 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 2019", + "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": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 114, + 484, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 114, + 484, + 671 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 114, + 484, + 671 + ], + "spans": [ + { + "bbox": [ + 126, + 114, + 484, + 671 + ], + "score": 0.949, + "type": "image", + "image_path": "f3b5f1296a0308812fb35c3a31a88070db640ad95b4da878cf2854887752e494.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 114, + 484, + 299.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 299.66666666666663, + 484, + 485.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 485.33333333333326, + 484, + 670.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 171, + 682, + 439, + 694 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 170, + 680, + 440, + 696 + ], + "spans": [ + { + "bbox": [ + 170, + 680, + 440, + 696 + ], + "score": 1.0, + "content": "Figure S1: Additional adversarial images on Google Cloud Vision.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rJeZS3RcYm/rJeZS3RcYm_model.json b/parse/train/rJeZS3RcYm/rJeZS3RcYm_model.json new file mode 100644 index 0000000000000000000000000000000000000000..d339c10f7aa24fbf801c8457db893a7a8695731c --- /dev/null +++ b/parse/train/rJeZS3RcYm/rJeZS3RcYm_model.json @@ -0,0 +1,22140 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 533, + 1302, + 533, + 1302, + 1022, + 398, + 1022 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1381, + 1403, + 1381, + 1403, + 1745, + 298, + 1745 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1150, + 1403, + 1150, + 1403, + 1364, + 298, + 1364 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1762, + 1402, + 1762, + 1402, + 1976, + 298, + 1976 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 300, + 221, + 1233, + 221, + 1233, + 268, + 300, + 268 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 330, + 2000, + 1083, + 2000, + 1083, + 2028, + 330, + 2028 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 313, + 322, + 680, + 322, + 680, + 383, + 313, + 383 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 302, + 1080, + 572, + 1080, + 572, + 1115, + 302, + 1115 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 773, + 464, + 927, + 464, + 927, + 498, + 773, + 498 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.803 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.687 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.122 + }, + { + "category_id": 13, + "poly": [ + 487, + 930, + 520, + 930, + 520, + 960, + 487, + 960 + ], + "score": 0.83, + "latex": "\\$ 3" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 219.0, + 1239.0, + 219.0, + 1239.0, + 277.0, + 296.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1995.0, + 1086.0, + 1995.0, + 1086.0, + 2032.0, + 333.0, + 2032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1077.0, + 579.0, + 1077.0, + 579.0, + 1124.0, + 293.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 463.0, + 932.0, + 463.0, + 932.0, + 501.0, + 770.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 860.0, + 2088.0, + 860.0, + 2118.0, + 841.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 533.0, + 1306.0, + 533.0, + 1306.0, + 568.0, + 395.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 564.0, + 1303.0, + 564.0, + 1303.0, + 601.0, + 394.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 590.0, + 1306.0, + 590.0, + 1306.0, + 632.0, + 392.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 625.0, + 1306.0, + 625.0, + 1306.0, + 659.0, + 394.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 655.0, + 1307.0, + 655.0, + 1307.0, + 693.0, + 391.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 686.0, + 1307.0, + 686.0, + 1307.0, + 721.0, + 393.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 716.0, + 1306.0, + 716.0, + 1306.0, + 750.0, + 394.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 746.0, + 1307.0, + 746.0, + 1307.0, + 781.0, + 392.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 779.0, + 1306.0, + 779.0, + 1306.0, + 810.0, + 394.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 807.0, + 1307.0, + 807.0, + 1307.0, + 842.0, + 393.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 840.0, + 1306.0, + 840.0, + 1306.0, + 872.0, + 393.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 870.0, + 1307.0, + 870.0, + 1307.0, + 903.0, + 393.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 897.0, + 1307.0, + 897.0, + 1307.0, + 935.0, + 393.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 930.0, + 486.0, + 930.0, + 486.0, + 965.0, + 394.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 930.0, + 1308.0, + 930.0, + 1308.0, + 965.0, + 521.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 961.0, + 1306.0, + 961.0, + 1306.0, + 994.0, + 393.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 989.0, + 1258.0, + 989.0, + 1258.0, + 1027.0, + 393.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1417.0, + 293.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1403.0, + 1410.0, + 1403.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1440.0, + 1406.0, + 1440.0, + 1406.0, + 1476.0, + 292.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1472.0, + 1403.0, + 1472.0, + 1403.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1529.0, + 1407.0, + 1529.0, + 1407.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 1403.0, + 1563.0, + 1403.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1592.0, + 1405.0, + 1592.0, + 1405.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1685.0, + 1407.0, + 1685.0, + 1407.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1714.0, + 1307.0, + 1714.0, + 1307.0, + 1750.0, + 294.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1408.0, + 1149.0, + 1408.0, + 1187.0, + 293.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1180.0, + 1403.0, + 1180.0, + 1403.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1403.0, + 1212.0, + 1403.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1241.0, + 1405.0, + 1241.0, + 1405.0, + 1275.0, + 293.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 1403.0, + 1272.0, + 1403.0, + 1306.0, + 293.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 1403.0, + 1301.0, + 1403.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1334.0, + 1189.0, + 1334.0, + 1189.0, + 1369.0, + 296.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 1407.0, + 1760.0, + 1407.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1793.0, + 1406.0, + 1793.0, + 1406.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 1406.0, + 1884.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 322.0, + 560.0, + 322.0, + 560.0, + 355.0, + 315.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 352.0, + 682.0, + 352.0, + 682.0, + 385.0, + 311.0, + 385.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 475, + 298, + 475 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 719, + 1405, + 719, + 1405, + 965, + 298, + 965 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 489, + 1404, + 489, + 1404, + 705, + 298, + 705 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1077, + 1404, + 1077, + 1404, + 1324, + 297, + 1324 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1338, + 1403, + 1338, + 1403, + 1522, + 299, + 1522 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1706, + 1403, + 1706, + 1403, + 1861, + 297, + 1861 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1537, + 1403, + 1537, + 1403, + 1692, + 298, + 1692 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 729, + 1877, + 969, + 1877, + 969, + 1968, + 729, + 1968 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 300, + 1009, + 557, + 1009, + 557, + 1044, + 300, + 1044 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.738 + }, + { + "category_id": 13, + "poly": [ + 815, + 1599, + 944, + 1599, + 944, + 1633, + 815, + 1633 + ], + "score": 0.93, + "latex": "h ( \\mathbf { x } ^ { \\prime } ) = y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 633, + 1170, + 759, + 1170, + 759, + 1203, + 633, + 1203 + ], + "score": 0.93, + "latex": "h ( \\mathbf { x } ^ { \\prime } ) \\bar { = } y" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1262, + 1324, + 1262, + 1324, + 1296, + 1066, + 1296 + ], + "score": 0.93, + "latex": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) = \\| \\mathbf { x } - \\mathbf { x } ^ { \\prime } \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1171, + 1138, + 1171, + 1138, + 1204, + 987, + 1204 + ], + "score": 0.92, + "latex": "d ( \\mathbf { x } , \\mathbf { x } ^ { \\prime } ) < \\rho" + }, + { + "category_id": 13, + "poly": [ + 424, + 1769, + 482, + 1769, + 482, + 1803, + 424, + 1803 + ], + "score": 0.92, + "latex": "\\ell _ { y } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 663, + 1569, + 785, + 1569, + 785, + 1602, + 663, + 1602 + ], + "score": 0.92, + "latex": "h ( \\mathbf { x } ^ { \\prime } ) \\neq y" + }, + { + "category_id": 13, + "poly": [ + 933, + 1339, + 1075, + 1339, + 1075, + 1369, + 933, + 1369 + ], + "score": 0.91, + "latex": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } + \\boldsymbol { \\delta }" + }, + { + "category_id": 13, + "poly": [ + 534, + 1170, + 600, + 1170, + 600, + 1203, + 534, + 1203 + ], + "score": 0.91, + "latex": "d ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1140, + 365, + 1140, + 365, + 1174, + 299, + 1174 + ], + "score": 0.9, + "latex": "\\left( \\mathbf { x } , y \\right)" + }, + { + "category_id": 13, + "poly": [ + 657, + 1204, + 702, + 1204, + 702, + 1232, + 657, + 1232 + ], + "score": 0.9, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 765, + 1232, + 793, + 1232, + 793, + 1260, + 765, + 1260 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1600, + 1300, + 1600, + 1300, + 1632, + 1275, + 1632 + ], + "score": 0.85, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 672, + 1602, + 701, + 1602, + 701, + 1628, + 672, + 1628 + ], + "score": 0.85, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 841, + 1173, + 870, + 1173, + 870, + 1199, + 841, + 1199 + ], + "score": 0.84, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1145, + 1146, + 1145, + 1146, + 1172, + 1128, + 1172 + ], + "score": 0.81, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 529, + 1203, + 563, + 1203, + 563, + 1232, + 529, + 1232 + ], + "score": 0.8, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1111, + 1112, + 1111, + 1112, + 1137, + 1092, + 1137 + ], + "score": 0.79, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 539, + 1405, + 559, + 1405, + 559, + 1432, + 539, + 1432 + ], + "score": 0.79, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1172, + 1308, + 1172, + 1308, + 1198, + 1289, + 1198 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 825, + 1140, + 941, + 1140, + 941, + 1172, + 825, + 1172 + ], + "score": 0.77, + "latex": "h ( \\mathbf { x } ) = y" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1770, + 1095, + 1770, + 1095, + 1796, + 1074, + 1796 + ], + "score": 0.76, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 387, + 1372, + 403, + 1372, + 403, + 1398, + 387, + 1398 + ], + "score": 0.76, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 414, + 1493, + 431, + 1493, + 431, + 1519, + 414, + 1519 + ], + "score": 0.75, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 298, + 1805, + 315, + 1805, + 315, + 1831, + 298, + 1831 + ], + "score": 0.75, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 574, + 1203, + 608, + 1203, + 608, + 1232, + 574, + 1232 + ], + "score": 0.69, + "latex": "L _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 731, + 1875, + 968, + 1875, + 968, + 1969, + 731, + 1969 + ], + "score": 0.67, + "latex": "\\begin{array} { r } { \\underset { \\delta } { \\mathrm { m i n } } \\ \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\ \\lVert \\delta \\rVert _ { 2 } < \\rho . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 471, + 1237, + 493, + 1237, + 493, + 1260, + 471, + 1260 + ], + "score": 0.59, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 955, + 1142, + 975, + 1142, + 975, + 1168, + 955, + 1168 + ], + "score": 0.4, + "latex": "h" + }, + { + "category_id": 14, + "poly": [ + 788, + 1876, + 967, + 1876, + 967, + 1926, + 788, + 1926 + ], + "score": 0.35, + "latex": "\\operatorname* { m i n } _ { \\delta } \\ \\ell _ { y } ( { \\bf x } + \\delta )" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1005.0, + 561.0, + 1005.0, + 561.0, + 1052.0, + 291.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.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": [ + 296.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 293.0, + 1407.0, + 293.0, + 1407.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 379.0, + 1404.0, + 379.0, + 1404.0, + 419.0, + 293.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 414.0, + 1404.0, + 414.0, + 1404.0, + 448.0, + 293.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 444.0, + 748.0, + 444.0, + 748.0, + 478.0, + 294.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 754.0, + 297.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 784.0, + 295.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 781.0, + 1403.0, + 781.0, + 1403.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 813.0, + 1405.0, + 813.0, + 1405.0, + 847.0, + 296.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 843.0, + 1403.0, + 843.0, + 1403.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 909.0, + 292.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 904.0, + 1405.0, + 904.0, + 1405.0, + 938.0, + 295.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 935.0, + 869.0, + 935.0, + 869.0, + 968.0, + 295.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 488.0, + 1404.0, + 488.0, + 1404.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1406.0, + 519.0, + 1406.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 550.0, + 1405.0, + 550.0, + 1405.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 612.0, + 1402.0, + 612.0, + 1402.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 1406.0, + 640.0, + 1406.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 671.0, + 513.0, + 671.0, + 513.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1113.0, + 294.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1110.0, + 1091.0, + 1110.0, + 1091.0, + 1144.0, + 295.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1110.0, + 1404.0, + 1110.0, + 1404.0, + 1144.0, + 1113.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1140.0, + 824.0, + 1140.0, + 824.0, + 1178.0, + 366.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1140.0, + 954.0, + 1140.0, + 954.0, + 1178.0, + 942.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1140.0, + 1127.0, + 1140.0, + 1127.0, + 1178.0, + 976.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1178.0, + 1147.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1168.0, + 533.0, + 1168.0, + 533.0, + 1206.0, + 290.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1168.0, + 632.0, + 1168.0, + 632.0, + 1206.0, + 601.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1168.0, + 840.0, + 1168.0, + 840.0, + 1206.0, + 760.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1168.0, + 986.0, + 1168.0, + 986.0, + 1206.0, + 871.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1168.0, + 1288.0, + 1168.0, + 1288.0, + 1206.0, + 1139.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1168.0, + 1407.0, + 1168.0, + 1407.0, + 1206.0, + 1309.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1202.0, + 528.0, + 1202.0, + 528.0, + 1237.0, + 292.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1202.0, + 573.0, + 1202.0, + 573.0, + 1237.0, + 564.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1202.0, + 656.0, + 1202.0, + 656.0, + 1237.0, + 609.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1237.0, + 703.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 470.0, + 1231.0, + 470.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1231.0, + 764.0, + 1231.0, + 764.0, + 1264.0, + 494.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1231.0, + 1402.0, + 1231.0, + 1402.0, + 1264.0, + 794.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1260.0, + 1065.0, + 1260.0, + 1065.0, + 1298.0, + 291.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1260.0, + 1405.0, + 1260.0, + 1405.0, + 1298.0, + 1325.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 833.0, + 1295.0, + 833.0, + 1327.0, + 293.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 932.0, + 1337.0, + 932.0, + 1374.0, + 294.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1374.0, + 1076.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1372.0, + 386.0, + 1372.0, + 386.0, + 1403.0, + 297.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1372.0, + 1404.0, + 1372.0, + 1404.0, + 1403.0, + 404.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 538.0, + 1400.0, + 538.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1434.0, + 560.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1430.0, + 1404.0, + 1430.0, + 1404.0, + 1466.0, + 295.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1404.0, + 1463.0, + 1404.0, + 1495.0, + 295.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1492.0, + 413.0, + 1492.0, + 413.0, + 1524.0, + 297.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1492.0, + 778.0, + 1492.0, + 778.0, + 1524.0, + 432.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1741.0, + 296.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1774.0, + 293.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1766.0, + 423.0, + 1766.0, + 423.0, + 1805.0, + 290.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1766.0, + 1073.0, + 1766.0, + 1073.0, + 1805.0, + 483.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1766.0, + 1406.0, + 1766.0, + 1406.0, + 1805.0, + 1096.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1796.0, + 297.0, + 1796.0, + 297.0, + 1835.0, + 290.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1835.0, + 316.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1827.0, + 695.0, + 1827.0, + 695.0, + 1865.0, + 295.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1539.0, + 1404.0, + 1539.0, + 1404.0, + 1572.0, + 297.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 662.0, + 1567.0, + 662.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1567.0, + 1407.0, + 1567.0, + 1407.0, + 1604.0, + 786.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1599.0, + 671.0, + 1599.0, + 671.0, + 1634.0, + 292.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1599.0, + 814.0, + 1599.0, + 814.0, + 1634.0, + 702.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1599.0, + 1274.0, + 1599.0, + 1274.0, + 1634.0, + 945.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1599.0, + 1405.0, + 1599.0, + 1405.0, + 1634.0, + 1301.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1626.0, + 1405.0, + 1626.0, + 1405.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1660.0, + 758.0, + 1660.0, + 758.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 536, + 1405, + 536, + 1405, + 753, + 297, + 753 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1664, + 1404, + 1664, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 338, + 1403, + 338, + 1403, + 522, + 298, + 522 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1104, + 1404, + 1104, + 1404, + 1199, + 298, + 1199 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 900, + 1403, + 900, + 1403, + 994, + 299, + 994 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 325, + 298, + 325 + ], + "score": 0.97 + }, + { + "category_id": 5, + "poly": [ + 304, + 1269, + 1406, + 1269, + 1406, + 1635, + 304, + 1635 + ], + "score": 0.949, + "html": "
1: procedure SIMBA(x,y, Q,∈)
2: δ=0 3:> Query black-box for initial probabilities
p = Ph(y|x)
4: while Py = maxy' Py' do 5:While the true label has not changed
Pick randomly without replacement: q ∈ Q> Try eq and then -eq if that fails.
6:for α ∈{ε,-ε} do
7:p'= ph(y|x+δ+aq) Query the black-box model
8:> If the probability is lower,accept this step
9:if py<Py then =δ+aq
10:p=p'
11: break return δMove on to the next direction
" + }, + { + "category_id": 8, + "poly": [ + 717, + 762, + 983, + 762, + 983, + 890, + 717, + 890 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1036, + 800, + 1036, + 800, + 1072, + 300, + 1072 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1366, + 819, + 1400, + 819, + 1400, + 848, + 1366, + 848 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.618 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.477 + }, + { + "category_id": 0, + "poly": [ + 300, + 1230, + 701, + 1230, + 701, + 1262, + 300, + 1262 + ], + "score": 0.369 + }, + { + "category_id": 6, + "poly": [ + 300, + 1230, + 701, + 1230, + 701, + 1262, + 300, + 1262 + ], + "score": 0.353 + }, + { + "category_id": 13, + "poly": [ + 900, + 1999, + 1047, + 1999, + 1047, + 2036, + 900, + 2036 + ], + "score": 0.94, + "latex": "\\| \\delta \\| _ { 2 } = \\sqrt { T } \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 608, + 1694, + 715, + 1694, + 715, + 1728, + 608, + 1728 + ], + "score": 0.93, + "latex": "p _ { h } ( y \\mid \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 539, + 1135, + 652, + 1135, + 652, + 1170, + 539, + 1170 + ], + "score": 0.92, + "latex": "p _ { h } ( y \\mid \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 949, + 429, + 1004, + 429, + 1004, + 463, + 949, + 463 + ], + "score": 0.92, + "latex": "\\bar { | | } \\delta \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1755, + 1362, + 1755, + 1362, + 1788, + 1255, + 1788 + ], + "score": 0.92, + "latex": "p _ { h } ( y \\mid \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1879, + 1117, + 1879, + 1117, + 1909, + 1039, + 1909 + ], + "score": 0.92, + "latex": "\\mathbf { q } \\in Q" + }, + { + "category_id": 13, + "poly": [ + 807, + 230, + 914, + 230, + 914, + 263, + 807, + 263 + ], + "score": 0.92, + "latex": "p _ { h } ( \\cdot \\mid \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1847, + 1169, + 1847, + 1169, + 1879, + 1103, + 1879 + ], + "score": 0.91, + "latex": "\\left( \\mathbf { x } , y \\right)" + }, + { + "category_id": 13, + "poly": [ + 615, + 291, + 875, + 291, + 875, + 326, + 615, + 326 + ], + "score": 0.91, + "latex": "\\ell _ { y ^ { \\prime } } ( \\mathbf { x } ^ { \\prime } ) \\overset { \\cdot } { = } - p _ { h } ( y ^ { \\prime } \\mid \\mathbf { x } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1166, + 454, + 1166, + 454, + 1200, + 298, + 1200 + ], + "score": 0.91, + "latex": "h ( \\mathbf { x } + \\delta ) \\neq y" + }, + { + "category_id": 13, + "poly": [ + 529, + 1755, + 577, + 1755, + 577, + 1789, + 529, + 1789 + ], + "score": 0.9, + "latex": "h ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 297, + 429, + 354, + 429, + 354, + 463, + 297, + 463 + ], + "score": 0.9, + "latex": "\\ell _ { y } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1668, + 1373, + 1668, + 1373, + 1696, + 1296, + 1696 + ], + "score": 0.89, + "latex": "\\mathbf { x } + \\epsilon \\mathbf { q }" + }, + { + "category_id": 13, + "poly": [ + 699, + 1880, + 766, + 1880, + 766, + 1906, + 699, + 1906 + ], + "score": 0.87, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 358, + 292, + 383, + 292, + 383, + 324, + 358, + 324 + ], + "score": 0.86, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1879, + 524, + 1879, + 524, + 1909, + 498, + 1909 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 849, + 261, + 1074, + 261, + 1074, + 295, + 849, + 295 + ], + "score": 0.86, + "latex": "\\ell _ { y } ( \\mathbf { x } ^ { \\prime } ) = p _ { h } ( y \\mid \\mathbf { x } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1970, + 1048, + 1970, + 1048, + 2000, + 1024, + 2000 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1058, + 370, + 1078, + 370, + 1078, + 396, + 1058, + 396 + ], + "score": 0.82, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 376, + 902, + 402, + 902, + 402, + 928, + 376, + 928 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 839, + 1395, + 916, + 1395, + 916, + 1427, + 839, + 1427 + ], + "score": 0.81, + "latex": "\\mathbf { q } \\in Q" + }, + { + "category_id": 13, + "poly": [ + 630, + 932, + 656, + 932, + 656, + 958, + 630, + 958 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1108, + 2003, + 1132, + 2003, + 1132, + 2030, + 1108, + 2030 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1939, + 1080, + 1939, + 1080, + 1966, + 1063, + 1966 + ], + "score": 0.78, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 533, + 691, + 553, + 691, + 553, + 717, + 533, + 717 + ], + "score": 0.77, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 296, + 1697, + 381, + 1697, + 381, + 1726, + 296, + 1726 + ], + "score": 0.77, + "latex": "\\mathbf { x } - \\epsilon \\mathbf { q }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1112, + 1345, + 1112, + 1345, + 1137, + 1327, + 1137 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 492, + 232, + 512, + 232, + 512, + 258, + 492, + 258 + ], + "score": 0.76, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1136, + 1129, + 1136, + 1129, + 1163, + 1111, + 1163 + ], + "score": 0.75, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 840, + 631, + 857, + 631, + 857, + 657, + 840, + 657 + ], + "score": 0.74, + "latex": "\\delta" + }, + { + "category_id": 14, + "poly": [ + 774, + 761, + 954, + 761, + 954, + 810, + 774, + 810 + ], + "score": 0.73, + "latex": "\\operatorname* { m i n } _ { \\delta } \\ \\ell _ { y } ( \\mathbf x + \\delta )" + }, + { + "category_id": 13, + "poly": [ + 374, + 570, + 394, + 570, + 394, + 597, + 374, + 597 + ], + "score": 0.68, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 486, + 370, + 505, + 370, + 505, + 396, + 486, + 396 + ], + "score": 0.68, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 456, + 1369, + 640, + 1369, + 640, + 1399, + 456, + 1399 + ], + "score": 0.66, + "latex": "\\mathbf { p } _ { y } = \\operatorname* { m a x } _ { y ^ { \\prime } } \\mathbf { p } _ { y ^ { \\prime } }" + }, + { + "category_id": 14, + "poly": [ + 715, + 760, + 987, + 760, + 987, + 893, + 715, + 893 + ], + "score": 0.64, + "latex": "\\begin{array} { c } { \\displaystyle \\operatorname* { m i n } _ { \\delta } \\ell _ { y } ( \\mathbf { x } + \\delta ) } \\\\ { \\mathrm { s u b j e c t ~ t o } \\| \\delta \\| _ { 2 } < \\rho } \\\\ { \\mathrm { q u e r i e s } \\leq B } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1671, + 1211, + 1671, + 1211, + 1693, + 1196, + 1693 + ], + "score": 0.59, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 819, + 266, + 837, + 266, + 837, + 292, + 819, + 292 + ], + "score": 0.52, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1263, + 1700, + 1285, + 1700, + 1285, + 1726, + 1263, + 1726 + ], + "score": 0.33, + "latex": "\\mathbf { q }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1368, + 992, + 1368, + 992, + 1393, + 969, + 1393 + ], + "score": 0.29, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 910, + 1491, + 931, + 1491, + 931, + 1514, + 910, + 1514 + ], + "score": 0.28, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1429, + 1030, + 1429, + 1030, + 1453, + 1008, + 1453 + ], + "score": 0.26, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1459, + 1093, + 1459, + 1093, + 1484, + 1069, + 1484 + ], + "score": 0.25, + "latex": "\\triangleright" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1032.0, + 805.0, + 1032.0, + 805.0, + 1077.0, + 292.0, + 1077.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": [ + 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, + 1227.0, + 705.0, + 1227.0, + 705.0, + 1267.0, + 296.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1227.0, + 705.0, + 1227.0, + 705.0, + 1267.0, + 296.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 568.0, + 373.0, + 568.0, + 373.0, + 602.0, + 294.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 602.0, + 395.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 633.0, + 294.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 630.0, + 839.0, + 630.0, + 839.0, + 663.0, + 292.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 663.0, + 858.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 694.0, + 292.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 687.0, + 532.0, + 687.0, + 532.0, + 726.0, + 291.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 687.0, + 1406.0, + 687.0, + 1406.0, + 726.0, + 554.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 718.0, + 1386.0, + 718.0, + 1386.0, + 757.0, + 292.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1195.0, + 1661.0, + 1195.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1661.0, + 1295.0, + 1661.0, + 1295.0, + 1702.0, + 1212.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1661.0, + 1406.0, + 1661.0, + 1406.0, + 1702.0, + 1374.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1695.0, + 295.0, + 1695.0, + 295.0, + 1729.0, + 291.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1695.0, + 607.0, + 1695.0, + 607.0, + 1729.0, + 382.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1695.0, + 1262.0, + 1695.0, + 1262.0, + 1729.0, + 716.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1695.0, + 1406.0, + 1695.0, + 1406.0, + 1729.0, + 1286.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1724.0, + 1404.0, + 1724.0, + 1404.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 528.0, + 1756.0, + 528.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1756.0, + 1254.0, + 1756.0, + 1254.0, + 1791.0, + 578.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1756.0, + 1404.0, + 1756.0, + 1404.0, + 1791.0, + 1363.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1815.0, + 1405.0, + 1815.0, + 1405.0, + 1852.0, + 291.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1846.0, + 1102.0, + 1846.0, + 1102.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1884.0, + 1170.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1878.0, + 497.0, + 1878.0, + 497.0, + 1912.0, + 295.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1878.0, + 698.0, + 1878.0, + 698.0, + 1912.0, + 525.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1878.0, + 1038.0, + 1878.0, + 1038.0, + 1912.0, + 767.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1878.0, + 1405.0, + 1878.0, + 1405.0, + 1912.0, + 1118.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1908.0, + 1407.0, + 1908.0, + 1407.0, + 1941.0, + 291.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1939.0, + 1062.0, + 1939.0, + 1062.0, + 1973.0, + 295.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1973.0, + 1081.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1023.0, + 1970.0, + 1023.0, + 2004.0, + 294.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2004.0, + 1049.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 899.0, + 2000.0, + 899.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 2000.0, + 1107.0, + 2000.0, + 1107.0, + 2038.0, + 1048.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 2000.0, + 1234.0, + 2000.0, + 1234.0, + 2038.0, + 1133.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 337.0, + 1405.0, + 337.0, + 1405.0, + 373.0, + 294.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 367.0, + 485.0, + 367.0, + 485.0, + 405.0, + 292.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 367.0, + 1057.0, + 367.0, + 1057.0, + 405.0, + 506.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 367.0, + 1405.0, + 367.0, + 1405.0, + 405.0, + 1079.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 434.0, + 292.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 426.0, + 296.0, + 426.0, + 296.0, + 469.0, + 291.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 426.0, + 948.0, + 426.0, + 948.0, + 469.0, + 355.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 426.0, + 1407.0, + 426.0, + 1407.0, + 469.0, + 1005.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 458.0, + 1405.0, + 458.0, + 1405.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 490.0, + 612.0, + 490.0, + 612.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 1326.0, + 1102.0, + 1326.0, + 1141.0, + 293.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1102.0, + 1404.0, + 1102.0, + 1404.0, + 1141.0, + 1346.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 538.0, + 1133.0, + 538.0, + 1171.0, + 293.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1133.0, + 1110.0, + 1133.0, + 1110.0, + 1171.0, + 653.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1133.0, + 1404.0, + 1133.0, + 1404.0, + 1171.0, + 1130.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 297.0, + 1161.0, + 297.0, + 1205.0, + 293.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1161.0, + 467.0, + 1161.0, + 467.0, + 1205.0, + 455.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 897.0, + 375.0, + 897.0, + 375.0, + 936.0, + 295.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 936.0, + 403.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 629.0, + 929.0, + 629.0, + 966.0, + 294.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 929.0, + 1404.0, + 929.0, + 1404.0, + 966.0, + 657.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 962.0, + 1094.0, + 962.0, + 1094.0, + 999.0, + 294.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 227.0, + 806.0, + 227.0, + 806.0, + 265.0, + 513.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 265.0, + 915.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 818.0, + 259.0, + 818.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 259.0, + 848.0, + 259.0, + 848.0, + 297.0, + 838.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 297.0, + 1075.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 357.0, + 289.0, + 357.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 289.0, + 614.0, + 289.0, + 614.0, + 326.0, + 384.0, + 326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 912, + 1404, + 912, + 1404, + 1280, + 298, + 1280 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1295, + 1404, + 1295, + 1404, + 1693, + 297, + 1693 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1787, + 1402, + 1787, + 1402, + 1880, + 299, + 1880 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 312, + 237, + 1406, + 237, + 1406, + 592, + 312, + 592 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 297, + 632, + 1405, + 632, + 1405, + 786, + 297, + 786 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 745, + 1898, + 951, + 1898, + 951, + 1933, + 745, + 1933 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 301, + 1730, + 689, + 1730, + 689, + 1761, + 301, + 1761 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 809, + 618, + 809, + 618, + 840, + 300, + 840 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 299, + 866, + 1398, + 866, + 1398, + 898, + 299, + 898 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.727 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 854, + 76, + 854, + 104, + 300, + 104 + ], + "score": 0.492 + }, + { + "category_id": 0, + "poly": [ + 299, + 866, + 1398, + 866, + 1398, + 898, + 299, + 898 + ], + "score": 0.166 + }, + { + "category_id": 13, + "poly": [ + 299, + 1849, + 410, + 1849, + 410, + 1882, + 299, + 1882 + ], + "score": 0.93, + "latex": "\\{ - \\epsilon , 0 , \\epsilon \\}" + }, + { + "category_id": 13, + "poly": [ + 767, + 945, + 849, + 945, + 849, + 976, + 767, + 976 + ], + "score": 0.92, + "latex": "Q = I" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1661, + 1217, + 1661, + 1217, + 1695, + 1162, + 1695 + ], + "score": 0.92, + "latex": "\\lVert \\delta \\rVert _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 724, + 1448, + 894, + 1448, + 894, + 1481, + 724, + 1481 + ], + "score": 0.92, + "latex": "p _ { h } ( y \\mid { \\bf x } \\pm \\epsilon { \\bf q } )" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1357, + 1275, + 1357, + 1275, + 1390, + 1090, + 1390 + ], + "score": 0.92, + "latex": "p _ { h } ( y \\mid { \\bf x } + \\epsilon { \\bf q } _ { i } )" + }, + { + "category_id": 14, + "poly": [ + 745, + 1896, + 954, + 1896, + 954, + 1933, + 745, + 1933 + ], + "score": 0.92, + "latex": "\\delta _ { i + 1 } = \\delta _ { i } + \\alpha _ { i } { \\bf q } _ { i } ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1326, + 412, + 1326, + 412, + 1360, + 297, + 1360 + ], + "score": 0.91, + "latex": "p _ { h } ( y \\mid \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 687, + 1124, + 754, + 1124, + 754, + 1155, + 687, + 1155 + ], + "score": 0.91, + "latex": "\\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1188, + 1081, + 1188, + 1081, + 1217, + 1013, + 1217 + ], + "score": 0.91, + "latex": "d \\times d" + }, + { + "category_id": 13, + "poly": [ + 833, + 1188, + 908, + 1188, + 908, + 1220, + 833, + 1220 + ], + "score": 0.9, + "latex": "Q _ { \\mathrm { D C T } }" + }, + { + "category_id": 13, + "poly": [ + 392, + 1188, + 466, + 1188, + 466, + 1220, + 392, + 1220 + ], + "score": 0.9, + "latex": "Q _ { \\mathrm { D C T } }" + }, + { + "category_id": 13, + "poly": [ + 473, + 1632, + 507, + 1632, + 507, + 1661, + 473, + 1661 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 695, + 1332, + 695, + 1332, + 724, + 1277, + 724 + ], + "score": 0.88, + "latex": "98 \\%" + }, + { + "category_id": 13, + "poly": [ + 1172, + 725, + 1227, + 725, + 1227, + 754, + 1172, + 754 + ], + "score": 0.87, + "latex": "73 \\%" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1821, + 1403, + 1821, + 1403, + 1849, + 1341, + 1849 + ], + "score": 0.86, + "latex": "\\alpha _ { i } \\in" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1789, + 1402, + 1789, + 1402, + 1819, + 1340, + 1819 + ], + "score": 0.86, + "latex": "\\delta _ { i } \\ =" + }, + { + "category_id": 13, + "poly": [ + 1162, + 868, + 1187, + 868, + 1187, + 898, + 1162, + 898 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 869, + 1818, + 894, + 1818, + 894, + 1849, + 869, + 1849 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 403, + 1361, + 434, + 1361, + 434, + 1389, + 403, + 1389 + ], + "score": 0.86, + "latex": "\\mathbf { q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 914, + 1374, + 914, + 1374, + 945, + 1347, + 945 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 1822, + 337, + 1822, + 337, + 1849, + 298, + 1849 + ], + "score": 0.84, + "latex": "\\epsilon \\mathbf { q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1297, + 1049, + 1297, + 1049, + 1327, + 1024, + 1327 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 569, + 915, + 594, + 915, + 594, + 945, + 569, + 945 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1371, + 1632, + 1393, + 1632, + 1393, + 1658, + 1371, + 1658 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1852, + 1017, + 1852, + 1017, + 1876, + 1005, + 1876 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1545, + 1173, + 1545, + 1173, + 1567, + 1156, + 1567 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 996, + 1636, + 1012, + 1636, + 1012, + 1658, + 996, + 1658 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 479, + 1667, + 494, + 1667, + 494, + 1689, + 479, + 1689 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 390, + 1224, + 407, + 1224, + 407, + 1246, + 390, + 1246 + ], + "score": 0.7, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 861, + 728, + 905, + 728, + 905, + 757, + 861, + 757 + ], + "score": 0.69, + "latex": "- \\mathbf { q }" + }, + { + "category_id": 13, + "poly": [ + 806, + 669, + 821, + 669, + 821, + 691, + 806, + 691 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1453, + 1227, + 1453, + 1227, + 1475, + 1211, + 1475 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1393, + 1359, + 1393, + 1359, + 1415, + 1343, + 1415 + ], + "score": 0.6, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1379, + 873, + 1394, + 873, + 1394, + 894, + 1379, + 894 + ], + "score": 0.56, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 297, + 700, + 313, + 700, + 313, + 722, + 297, + 722 + ], + "score": 0.5, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 805, + 730, + 828, + 730, + 828, + 757, + 805, + 757 + ], + "score": 0.44, + "latex": "\\mathbf { q }" + }, + { + "category_id": 13, + "poly": [ + 457, + 1393, + 473, + 1393, + 473, + 1415, + 457, + 1415 + ], + "score": 0.27, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 249.0, + 401.0, + 249.0, + 401.0, + 280.0, + 345.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 232.0, + 675.0, + 232.0, + 675.0, + 270.0, + 566.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 250.0, + 973.0, + 250.0, + 973.0, + 277.0, + 922.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 230.0, + 1235.0, + 230.0, + 1235.0, + 269.0, + 1136.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 268.0, + 570.0, + 268.0, + 570.0, + 297.0, + 441.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 267.0, + 1139.0, + 267.0, + 1139.0, + 296.0, + 1013.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 285.0, + 1143.0, + 285.0, + 1143.0, + 314.0, + 1014.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 288.0, + 575.0, + 288.0, + 575.0, + 316.0, + 441.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 289.0, + 400.0, + 289.0, + 400.0, + 320.0, + 345.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 289.0, + 973.0, + 289.0, + 973.0, + 320.0, + 921.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 292.0, + 343.0, + 292.0, + 343.0, + 517.0, + 311.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 295.0, + 919.0, + 295.0, + 919.0, + 514.0, + 888.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 303.0, + 1087.0, + 303.0, + 1087.0, + 332.0, + 1011.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 307.0, + 519.0, + 307.0, + 519.0, + 336.0, + 442.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 329.0, + 400.0, + 329.0, + 400.0, + 360.0, + 345.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 329.0, + 973.0, + 329.0, + 973.0, + 360.0, + 921.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 368.0, + 401.0, + 368.0, + 401.0, + 400.0, + 345.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 369.0, + 975.0, + 369.0, + 975.0, + 400.0, + 921.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 407.0, + 401.0, + 407.0, + 401.0, + 442.0, + 335.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 409.0, + 975.0, + 409.0, + 975.0, + 440.0, + 915.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 447.0, + 403.0, + 447.0, + 403.0, + 482.0, + 335.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 448.0, + 976.0, + 448.0, + 976.0, + 483.0, + 912.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 488.0, + 400.0, + 488.0, + 400.0, + 519.0, + 333.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 491.0, + 975.0, + 491.0, + 975.0, + 520.0, + 910.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 527.0, + 401.0, + 527.0, + 401.0, + 558.0, + 333.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 541.0, + 424.0, + 541.0, + 424.0, + 573.0, + 378.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 544.0, + 510.0, + 544.0, + 510.0, + 572.0, + 467.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 541.0, + 599.0, + 541.0, + 599.0, + 573.0, + 554.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 541.0, + 687.0, + 541.0, + 687.0, + 573.0, + 641.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 541.0, + 776.0, + 541.0, + 776.0, + 573.0, + 730.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 541.0, + 863.0, + 541.0, + 863.0, + 573.0, + 818.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 542.0, + 1082.0, + 542.0, + 1082.0, + 576.0, + 1036.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 545.0, + 1165.0, + 545.0, + 1165.0, + 573.0, + 1123.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 545.0, + 1250.0, + 545.0, + 1250.0, + 573.0, + 1206.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 544.0, + 1335.0, + 544.0, + 1335.0, + 576.0, + 1291.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 545.0, + 1415.0, + 545.0, + 1415.0, + 573.0, + 1376.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 563.0, + 658.0, + 563.0, + 658.0, + 594.0, + 584.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 564.0, + 1222.0, + 564.0, + 1222.0, + 595.0, + 1150.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 520.5, + 996.0, + 520.5, + 996.0, + 576.0, + 912.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 632.0, + 1402.0, + 632.0, + 1402.0, + 665.0, + 296.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 661.0, + 805.0, + 661.0, + 805.0, + 700.0, + 292.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 661.0, + 1407.0, + 661.0, + 1407.0, + 700.0, + 822.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 296.0, + 693.0, + 296.0, + 729.0, + 292.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 693.0, + 1276.0, + 693.0, + 1276.0, + 729.0, + 314.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 729.0, + 1333.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 722.0, + 804.0, + 722.0, + 804.0, + 763.0, + 294.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 722.0, + 860.0, + 722.0, + 860.0, + 763.0, + 829.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 722.0, + 1171.0, + 722.0, + 1171.0, + 763.0, + 906.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 722.0, + 1405.0, + 722.0, + 1405.0, + 763.0, + 1228.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 752.0, + 462.0, + 752.0, + 462.0, + 794.0, + 293.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1729.0, + 696.0, + 1729.0, + 696.0, + 1765.0, + 295.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 809.0, + 623.0, + 809.0, + 623.0, + 842.0, + 295.0, + 842.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1161.0, + 861.0, + 1161.0, + 905.0, + 294.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 861.0, + 1378.0, + 861.0, + 1378.0, + 905.0, + 1188.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 861.0, + 1407.0, + 861.0, + 1407.0, + 905.0, + 1395.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 568.0, + 911.0, + 568.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 911.0, + 1346.0, + 911.0, + 1346.0, + 950.0, + 595.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 911.0, + 1406.0, + 911.0, + 1406.0, + 950.0, + 1375.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 946.0, + 766.0, + 946.0, + 766.0, + 980.0, + 294.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 946.0, + 1405.0, + 946.0, + 1405.0, + 980.0, + 850.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 975.0, + 1406.0, + 975.0, + 1406.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1007.0, + 1405.0, + 1007.0, + 1405.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1034.0, + 1405.0, + 1034.0, + 1405.0, + 1072.0, + 293.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 1404.0, + 1066.0, + 1404.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1406.0, + 1097.0, + 1406.0, + 1131.0, + 294.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1119.0, + 686.0, + 1119.0, + 686.0, + 1164.0, + 289.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1119.0, + 1410.0, + 1119.0, + 1410.0, + 1164.0, + 755.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1404.0, + 1158.0, + 1404.0, + 1192.0, + 294.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1185.0, + 391.0, + 1185.0, + 391.0, + 1225.0, + 292.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1185.0, + 832.0, + 1185.0, + 832.0, + 1225.0, + 467.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1185.0, + 1012.0, + 1185.0, + 1012.0, + 1225.0, + 909.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1185.0, + 1408.0, + 1185.0, + 1408.0, + 1225.0, + 1082.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1215.0, + 389.0, + 1215.0, + 389.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1254.0, + 408.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 490.0, + 1247.0, + 490.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 1023.0, + 1293.0, + 1023.0, + 1332.0, + 295.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1293.0, + 1406.0, + 1293.0, + 1406.0, + 1332.0, + 1050.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1321.0, + 296.0, + 1321.0, + 296.0, + 1368.0, + 290.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1321.0, + 1406.0, + 1321.0, + 1406.0, + 1368.0, + 413.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1355.0, + 402.0, + 1355.0, + 402.0, + 1392.0, + 295.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1355.0, + 1089.0, + 1355.0, + 1089.0, + 1392.0, + 435.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1355.0, + 1402.0, + 1355.0, + 1402.0, + 1392.0, + 1276.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 456.0, + 1386.0, + 456.0, + 1423.0, + 295.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1386.0, + 1342.0, + 1386.0, + 1342.0, + 1423.0, + 474.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1423.0, + 1360.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1417.0, + 1405.0, + 1417.0, + 1405.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1445.0, + 723.0, + 1445.0, + 723.0, + 1488.0, + 291.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1445.0, + 1210.0, + 1445.0, + 1210.0, + 1488.0, + 895.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1445.0, + 1405.0, + 1445.0, + 1405.0, + 1488.0, + 1228.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1517.0, + 292.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1547.0, + 291.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1155.0, + 1538.0, + 1155.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1573.0, + 1174.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1571.0, + 1404.0, + 1571.0, + 1404.0, + 1603.0, + 296.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 1402.0, + 1602.0, + 1402.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1630.0, + 472.0, + 1630.0, + 472.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1630.0, + 995.0, + 1630.0, + 995.0, + 1666.0, + 508.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1630.0, + 1370.0, + 1630.0, + 1370.0, + 1666.0, + 1013.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1630.0, + 1405.0, + 1630.0, + 1405.0, + 1666.0, + 1394.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1657.0, + 478.0, + 1657.0, + 478.0, + 1700.0, + 292.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1657.0, + 1161.0, + 1657.0, + 1161.0, + 1700.0, + 495.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1657.0, + 1229.0, + 1657.0, + 1229.0, + 1700.0, + 1218.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1785.0, + 1339.0, + 1785.0, + 1339.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1815.0, + 297.0, + 1815.0, + 297.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1815.0, + 868.0, + 1815.0, + 868.0, + 1855.0, + 338.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1815.0, + 1340.0, + 1815.0, + 1340.0, + 1855.0, + 895.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1815.0, + 1408.0, + 1815.0, + 1408.0, + 1855.0, + 1404.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1848.0, + 298.0, + 1848.0, + 298.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1848.0, + 1004.0, + 1848.0, + 1004.0, + 1885.0, + 411.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1848.0, + 1062.0, + 1848.0, + 1062.0, + 1885.0, + 1018.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1161.0, + 861.0, + 1161.0, + 905.0, + 294.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 861.0, + 1378.0, + 861.0, + 1378.0, + 905.0, + 1188.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 861.0, + 1407.0, + 861.0, + 1407.0, + 905.0, + 1395.0, + 905.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1404, + 1849, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 940, + 1405, + 940, + 1405, + 1126, + 296, + 1126 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 593, + 1404, + 593, + 1404, + 691, + 298, + 691 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 704, + 1405, + 704, + 1405, + 829, + 298, + 829 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 294, + 1148, + 1394, + 1148, + 1394, + 1578, + 294, + 1578 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 296, + 1600, + 1404, + 1600, + 1404, + 1724, + 296, + 1724 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 500, + 485, + 1195, + 485, + 1195, + 585, + 500, + 585 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 759, + 308, + 936, + 308, + 936, + 396, + 759, + 396 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1399, + 229, + 1399, + 294, + 292, + 294 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 407, + 1401, + 407, + 1401, + 473, + 298, + 473 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 301, + 872, + 770, + 872, + 770, + 907, + 301, + 907 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 298, + 1793, + 445, + 1793, + 445, + 1824, + 298, + 1824 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.742 + }, + { + "category_id": 14, + "poly": [ + 501, + 482, + 1198, + 482, + 1198, + 586, + 501, + 586 + ], + "score": 0.94, + "latex": "\\lVert \\delta _ { T } \\rVert _ { 2 } ^ { 2 } = \\left. \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } \\right. _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\lVert \\alpha _ { i } \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } ^ { 2 } \\lVert \\mathbf { q } _ { i } \\rVert _ { 2 } ^ { 2 } \\leq T \\epsilon ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 605, + 231, + 983, + 231, + 983, + 264, + 605, + 264 + ], + "score": 0.93, + "latex": "\\delta _ { i + 1 } = \\delta _ { i - 1 } + \\alpha _ { i - 1 } { \\bf q } _ { i - 1 } + \\alpha _ { i } { \\bf q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 745, + 407, + 871, + 407, + 871, + 446, + 745, + 446 + ], + "score": 0.93, + "latex": "\\mathbf { q } _ { i } ^ { \\top } \\mathbf { q } _ { j } = 0" + }, + { + "category_id": 14, + "poly": [ + 760, + 302, + 940, + 302, + 940, + 398, + 760, + 398 + ], + "score": 0.93, + "latex": "\\delta _ { T } = \\sum _ { i = 1 } ^ { T } \\alpha _ { i } \\mathbf { q } _ { i } ." + }, + { + "category_id": 13, + "poly": [ + 967, + 411, + 1037, + 411, + 1037, + 443, + 967, + 443 + ], + "score": 0.91, + "latex": "i \\neq j" + }, + { + "category_id": 13, + "poly": [ + 298, + 656, + 356, + 656, + 356, + 689, + 298, + 689 + ], + "score": 0.89, + "latex": "\\sqrt { T } \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 821, + 1663, + 855, + 1663, + 855, + 1692, + 821, + 1692 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1212, + 626, + 1246, + 626, + 1246, + 655, + 1212, + 655 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 798, + 331, + 798, + 331, + 828, + 298, + 828 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 737, + 1267, + 737, + 1267, + 767, + 1233, + 767 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 659, + 1358, + 659, + 1358, + 692, + 1282, + 692 + ], + "score": 0.87, + "latex": "Q _ { \\mathrm { D C T } }" + }, + { + "category_id": 13, + "poly": [ + 1033, + 597, + 1064, + 597, + 1064, + 627, + 1033, + 627 + ], + "score": 0.87, + "latex": "{ \\bf q } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 955, + 597, + 984, + 597, + 984, + 626, + 955, + 626 + ], + "score": 0.87, + "latex": "\\mathbf { q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 444, + 331, + 444, + 331, + 472, + 298, + 472 + ], + "score": 0.87, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 529, + 416, + 559, + 416, + 559, + 443, + 529, + 443 + ], + "score": 0.85, + "latex": "\\mathbf { q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 231, + 1400, + 231, + 1400, + 262, + 1368, + 262 + ], + "score": 0.84, + "latex": "\\delta _ { T }" + }, + { + "category_id": 13, + "poly": [ + 416, + 659, + 440, + 659, + 440, + 686, + 416, + 686 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 355, + 263, + 379, + 263, + 379, + 289, + 355, + 289 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 751, + 628, + 787, + 628, + 787, + 654, + 751, + 654 + ], + "score": 0.78, + "latex": "- \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 833, + 1094, + 875, + 1094, + 875, + 1124, + 833, + 1124 + ], + "score": 0.73, + "latex": "( B )" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1093, + 1335, + 1093, + 1335, + 1127, + 1298, + 1127 + ], + "score": 0.71, + "latex": "( \\rho )" + }, + { + "category_id": 13, + "poly": [ + 704, + 631, + 719, + 631, + 719, + 652, + 704, + 652 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 786, + 742, + 803, + 742, + 803, + 764, + 786, + 764 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 823, + 773, + 839, + 773, + 839, + 794, + 823, + 794 + ], + "score": 0.64, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1145.0, + 655.0, + 1145.0, + 655.0, + 1182.0, + 508.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1144.0, + 1203.0, + 1144.0, + 1203.0, + 1182.0, + 1082.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1169.0, + 356.0, + 1169.0, + 356.0, + 1204.0, + 310.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1169.0, + 918.0, + 1169.0, + 918.0, + 1204.0, + 872.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1239.0, + 355.0, + 1239.0, + 355.0, + 1274.0, + 310.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1239.0, + 916.0, + 1239.0, + 916.0, + 1273.0, + 872.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1297.0, + 354.0, + 1297.0, + 354.0, + 1427.0, + 291.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1294.0, + 913.0, + 1294.0, + 913.0, + 1428.0, + 851.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1378.0, + 354.0, + 1378.0, + 354.0, + 1411.0, + 311.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1378.0, + 915.0, + 1378.0, + 915.0, + 1411.0, + 873.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1424.0, + 805.0, + 1424.0, + 805.0, + 1452.0, + 653.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1447.0, + 354.0, + 1447.0, + 354.0, + 1481.0, + 311.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1445.0, + 713.0, + 1445.0, + 713.0, + 1480.0, + 650.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1448.0, + 915.0, + 1448.0, + 915.0, + 1481.0, + 872.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1448.0, + 1353.0, + 1448.0, + 1353.0, + 1478.0, + 1255.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1469.0, + 724.0, + 1469.0, + 724.0, + 1503.0, + 650.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1469.0, + 1328.0, + 1469.0, + 1328.0, + 1503.0, + 1254.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1494.0, + 763.0, + 1494.0, + 763.0, + 1527.0, + 652.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1494.0, + 1366.0, + 1494.0, + 1366.0, + 1527.0, + 1255.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1532.0, + 456.0, + 1532.0, + 456.0, + 1559.0, + 400.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1531.0, + 540.0, + 1531.0, + 540.0, + 1560.0, + 469.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1531.0, + 619.0, + 1531.0, + 619.0, + 1560.0, + 545.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1531.0, + 694.0, + 1531.0, + 694.0, + 1560.0, + 623.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1531.0, + 771.0, + 1531.0, + 771.0, + 1560.0, + 700.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1530.0, + 845.0, + 1530.0, + 845.0, + 1560.0, + 776.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1531.0, + 1018.0, + 1531.0, + 1018.0, + 1562.0, + 959.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1531.0, + 1102.0, + 1531.0, + 1102.0, + 1560.0, + 1030.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1531.0, + 1180.0, + 1531.0, + 1180.0, + 1560.0, + 1105.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1531.0, + 1255.0, + 1531.0, + 1255.0, + 1560.0, + 1183.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1530.0, + 1333.0, + 1530.0, + 1333.0, + 1559.0, + 1260.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1531.0, + 1403.0, + 1531.0, + 1403.0, + 1560.0, + 1338.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1549.0, + 623.0, + 1549.0, + 623.0, + 1583.0, + 540.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1548.0, + 1183.0, + 1548.0, + 1183.0, + 1582.0, + 1100.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1515.5, + 360.0, + 1515.5, + 360.0, + 1557.5, + 317.0, + 1557.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1515.5, + 920.0, + 1515.5, + 920.0, + 1557.5, + 878.0, + 1557.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1630.0, + 1404.0, + 1630.0, + 1404.0, + 1663.0, + 295.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1662.0, + 820.0, + 1662.0, + 820.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1695.0, + 856.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1690.0, + 905.0, + 1690.0, + 905.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 869.0, + 775.0, + 869.0, + 775.0, + 913.0, + 293.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 449.0, + 1790.0, + 449.0, + 1827.0, + 294.0, + 1827.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, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 297.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1402.0, + 1882.0, + 1402.0, + 1914.0, + 297.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1912.0, + 1402.0, + 1912.0, + 1402.0, + 1944.0, + 297.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 791.0, + 2001.0, + 791.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 942.0, + 1403.0, + 942.0, + 1403.0, + 974.0, + 295.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1006.0, + 294.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1037.0, + 293.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1067.0, + 293.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 1405.0, + 1064.0, + 1405.0, + 1096.0, + 295.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 832.0, + 1092.0, + 832.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1092.0, + 1297.0, + 1092.0, + 1297.0, + 1130.0, + 876.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1092.0, + 1347.0, + 1092.0, + 1347.0, + 1130.0, + 1336.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 591.0, + 954.0, + 591.0, + 954.0, + 630.0, + 293.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 591.0, + 1032.0, + 591.0, + 1032.0, + 630.0, + 985.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 591.0, + 1405.0, + 591.0, + 1405.0, + 630.0, + 1065.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 621.0, + 703.0, + 621.0, + 703.0, + 661.0, + 293.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 621.0, + 750.0, + 621.0, + 750.0, + 661.0, + 720.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 621.0, + 1211.0, + 621.0, + 1211.0, + 661.0, + 788.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 621.0, + 1406.0, + 621.0, + 1406.0, + 661.0, + 1247.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 652.0, + 415.0, + 652.0, + 415.0, + 697.0, + 357.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 652.0, + 1281.0, + 652.0, + 1281.0, + 697.0, + 441.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 652.0, + 1379.0, + 652.0, + 1379.0, + 697.0, + 1359.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 743.0, + 293.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 735.0, + 785.0, + 735.0, + 785.0, + 772.0, + 292.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 735.0, + 1232.0, + 735.0, + 1232.0, + 772.0, + 804.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 735.0, + 1408.0, + 735.0, + 1408.0, + 772.0, + 1268.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 822.0, + 766.0, + 822.0, + 802.0, + 293.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 766.0, + 1405.0, + 766.0, + 1405.0, + 802.0, + 840.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 796.0, + 1366.0, + 796.0, + 1366.0, + 833.0, + 332.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 604.0, + 227.0, + 604.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 227.0, + 1367.0, + 227.0, + 1367.0, + 267.0, + 984.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 267.0, + 1401.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 256.0, + 354.0, + 256.0, + 354.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 256.0, + 1125.0, + 256.0, + 1125.0, + 298.0, + 380.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 404.0, + 528.0, + 404.0, + 528.0, + 452.0, + 292.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 404.0, + 744.0, + 404.0, + 744.0, + 452.0, + 560.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 404.0, + 966.0, + 404.0, + 966.0, + 452.0, + 872.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 404.0, + 1407.0, + 404.0, + 1407.0, + 452.0, + 1038.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 440.0, + 752.0, + 440.0, + 752.0, + 476.0, + 332.0, + 476.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1510, + 1404, + 1510, + 1404, + 1817, + 298, + 1817 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1292, + 1403, + 1292, + 1403, + 1415, + 299, + 1415 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1185, + 1403, + 1185, + 1403, + 1277, + 299, + 1277 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 293, + 216, + 1400, + 216, + 1400, + 655, + 293, + 655 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1851, + 1402, + 1851, + 1402, + 1973, + 299, + 1973 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 296, + 798, + 1401, + 798, + 1401, + 979, + 296, + 979 + ], + "score": 0.957, + "html": "
Untargeted
AttackAveragequeriesSuccessrateAverageL2TargetedSuccessrateAverageL2
ZO0192,00088.9%1.20AttackAverage queries
Boundary attack123,407100%5.98QL-attack20.61498.7%11.39
Opt-attack71,100100%6.98AutoZOOM13,525100%26.74
LFBA30,000100%6.34SimBA7,899100%8.83
SimBA1,66598.6%3.77SimBA-DCT9,18296.0%7.02
SimBA-DCT1,23298.3%3.09
" + }, + { + "category_id": 2, + "poly": [ + 332, + 1998, + 897, + 1998, + 897, + 2027, + 332, + 2027 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 1454, + 609, + 1454, + 609, + 1485, + 300, + 1485 + ], + "score": 0.905 + }, + { + "category_id": 4, + "poly": [ + 296, + 676, + 1405, + 676, + 1405, + 769, + 296, + 769 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 297, + 1003, + 1403, + 1003, + 1403, + 1124, + 297, + 1124 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.789 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.704 + }, + { + "category_id": 2, + "poly": [ + 300, + 77, + 855, + 77, + 855, + 103, + 300, + 103 + ], + "score": 0.551 + }, + { + "category_id": 6, + "poly": [ + 537, + 799, + 654, + 799, + 654, + 823, + 537, + 823 + ], + "score": 0.429 + }, + { + "category_id": 6, + "poly": [ + 296, + 676, + 1405, + 676, + 1405, + 769, + 296, + 769 + ], + "score": 0.118 + }, + { + "category_id": 13, + "poly": [ + 1005, + 1216, + 1065, + 1216, + 1065, + 1247, + 1005, + 1247 + ], + "score": 0.88, + "latex": "\\$ 300" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1635, + 1257, + 1635, + 1257, + 1664, + 1223, + 1664 + ], + "score": 0.87, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1386, + 1252, + 1386, + 1252, + 1413, + 1166, + 1413 + ], + "score": 0.87, + "latex": "\\epsilon = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 754, + 1665, + 788, + 1665, + 788, + 1694, + 754, + 1694 + ], + "score": 0.87, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1293, + 1178, + 1293, + 1178, + 1325, + 1032, + 1325 + ], + "score": 0.87, + "latex": "T = 1 0 , 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 529, + 1325, + 678, + 1325, + 678, + 1356, + 529, + 1356 + ], + "score": 0.8, + "latex": "T = 3 0 , 0 0 0" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 217.0, + 664.0, + 217.0, + 664.0, + 254.0, + 516.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 217.0, + 1200.0, + 217.0, + 1200.0, + 253.0, + 1078.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 241.0, + 361.0, + 241.0, + 361.0, + 275.0, + 311.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 242.0, + 912.0, + 242.0, + 912.0, + 275.0, + 862.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 267.0, + 776.0, + 267.0, + 776.0, + 297.0, + 704.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 266.0, + 1327.0, + 266.0, + 1327.0, + 297.0, + 1254.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 289.0, + 815.0, + 289.0, + 815.0, + 323.0, + 702.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 289.0, + 1367.0, + 289.0, + 1367.0, + 323.0, + 1254.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 310.0, + 360.0, + 310.0, + 360.0, + 347.0, + 310.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 312.0, + 908.0, + 312.0, + 908.0, + 344.0, + 874.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 333.0, + 732.0, + 333.0, + 732.0, + 351.0, + 706.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 327.0, + 816.0, + 327.0, + 816.0, + 358.0, + 738.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 336.0, + 1282.0, + 336.0, + 1282.0, + 350.0, + 1261.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 325.0, + 1367.0, + 325.0, + 1367.0, + 360.0, + 1288.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 346.0, + 326.0, + 346.0, + 326.0, + 521.0, + 290.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 353.0, + 802.0, + 353.0, + 802.0, + 384.0, + 740.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 347.0, + 874.0, + 347.0, + 874.0, + 521.0, + 842.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 347.0, + 1354.0, + 347.0, + 1354.0, + 388.0, + 1290.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 382.0, + 359.0, + 382.0, + 359.0, + 415.0, + 313.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 384.0, + 909.0, + 384.0, + 909.0, + 415.0, + 874.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 455.0, + 357.0, + 455.0, + 357.0, + 482.0, + 316.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 454.0, + 908.0, + 454.0, + 908.0, + 483.0, + 874.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 524.0, + 359.0, + 524.0, + 359.0, + 553.0, + 323.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 524.0, + 909.0, + 524.0, + 909.0, + 555.0, + 873.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 595.0, + 505.0, + 595.0, + 505.0, + 638.0, + 423.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 607.0, + 625.0, + 607.0, + 625.0, + 636.0, + 555.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 601.0, + 743.0, + 601.0, + 743.0, + 639.0, + 670.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 607.0, + 857.0, + 607.0, + 857.0, + 635.0, + 787.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 607.0, + 1019.0, + 607.0, + 1019.0, + 636.0, + 951.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 594.0, + 1258.0, + 594.0, + 1258.0, + 636.0, + 1029.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 607.0, + 1406.0, + 607.0, + 1406.0, + 636.0, + 1260.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 626.0, + 630.0, + 626.0, + 630.0, + 657.0, + 551.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 626.0, + 1180.0, + 626.0, + 1180.0, + 657.0, + 1100.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1989.0, + 902.0, + 1989.0, + 902.0, + 2034.0, + 330.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1449.0, + 613.0, + 1449.0, + 613.0, + 1490.0, + 293.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 675.0, + 1402.0, + 675.0, + 1402.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 704.0, + 1408.0, + 704.0, + 1408.0, + 743.0, + 294.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 1352.0, + 736.0, + 1352.0, + 773.0, + 295.0, + 773.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 70.0, + 860.0, + 70.0, + 860.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 795.0, + 657.0, + 795.0, + 657.0, + 827.0, + 536.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 675.0, + 1402.0, + 675.0, + 1402.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 704.0, + 1408.0, + 704.0, + 1408.0, + 743.0, + 294.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 1352.0, + 736.0, + 1352.0, + 773.0, + 295.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1549.0, + 292.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1540.0, + 1406.0, + 1540.0, + 1406.0, + 1577.0, + 293.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1572.0, + 1406.0, + 1572.0, + 1406.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1636.0, + 296.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 1222.0, + 1633.0, + 1222.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1669.0, + 1258.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1664.0, + 753.0, + 1664.0, + 753.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1664.0, + 1404.0, + 1664.0, + 1404.0, + 1699.0, + 789.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1405.0, + 1694.0, + 1405.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 1406.0, + 1723.0, + 1406.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1783.0, + 1070.0, + 1783.0, + 1070.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1031.0, + 1292.0, + 1031.0, + 1327.0, + 293.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1292.0, + 1404.0, + 1292.0, + 1404.0, + 1327.0, + 1179.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1323.0, + 528.0, + 1323.0, + 528.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1323.0, + 1407.0, + 1323.0, + 1407.0, + 1358.0, + 679.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1407.0, + 1353.0, + 1407.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 1165.0, + 1386.0, + 1165.0, + 1419.0, + 295.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1386.0, + 1264.0, + 1386.0, + 1264.0, + 1419.0, + 1253.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1182.0, + 1404.0, + 1182.0, + 1404.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1214.0, + 1004.0, + 1214.0, + 1004.0, + 1253.0, + 293.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1214.0, + 1404.0, + 1214.0, + 1404.0, + 1253.0, + 1066.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1245.0, + 1087.0, + 1245.0, + 1087.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1003.0, + 1404.0, + 1003.0, + 1404.0, + 1037.0, + 296.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1030.0, + 1404.0, + 1030.0, + 1404.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1405.0, + 1063.0, + 1405.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 1125.0, + 1091.0, + 1125.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1021, + 824, + 1021, + 824, + 1750, + 299, + 1750 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1787, + 823, + 1787, + 823, + 2031, + 299, + 2031 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 853, + 1047, + 1397, + 1047, + 1397, + 1691, + 853, + 1691 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 294, + 216, + 1393, + 216, + 1393, + 658, + 294, + 658 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 893, + 1404, + 893, + 1404, + 986, + 299, + 986 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 296, + 680, + 1404, + 680, + 1404, + 833, + 296, + 833 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 848, + 1714, + 1402, + 1714, + 1402, + 2019, + 848, + 2019 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.661 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.2 + }, + { + "category_id": 2, + "poly": [ + 299, + 77, + 855, + 77, + 855, + 103, + 299, + 103 + ], + "score": 0.17 + }, + { + "category_id": 13, + "poly": [ + 701, + 954, + 769, + 954, + 769, + 984, + 701, + 984 + ], + "score": 0.89, + "latex": "1 0 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 789, + 771, + 858, + 771, + 858, + 801, + 789, + 801 + ], + "score": 0.89, + "latex": "1 0 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 524, + 1448, + 558, + 1448, + 558, + 1478, + 524, + 1478 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1018, + 924, + 1080, + 924, + 1080, + 955, + 1018, + 955 + ], + "score": 0.89, + "latex": "2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 477, + 1692, + 511, + 1692, + 511, + 1721, + 477, + 1721 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 540, + 1325, + 607, + 1325, + 607, + 1356, + 540, + 1356 + ], + "score": 0.88, + "latex": "1 0 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 327, + 1294, + 403, + 1294, + 403, + 1324, + 327, + 1324 + ], + "score": 0.88, + "latex": "{ \\mathrm { 8 8 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 597, + 1083, + 630, + 1083, + 630, + 1112, + 597, + 1112 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 933, + 1837, + 968, + 1837, + 968, + 1867, + 933, + 1867 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 999, + 1672, + 1397, + 1672, + 1397, + 1694, + 999, + 1694 + ], + "score": 0.81, + "latex": "\\| { \\bar { \\delta } } \\| _ { 2 } = 3 . 1 3 , B = 9 0 5 \\quad \\| { \\bar { \\delta } } \\| _ { 2 } = 2 . 1 5 , B = 1 9 3 \\quad \\| { \\bar { \\delta } } \\| _ { 2 } = 4 . 5 0 , B = 6 0 \\mathrm { K }" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1048.0, + 950.0, + 1048.0, + 950.0, + 1074.0, + 879.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1049.0, + 1097.0, + 1049.0, + 1097.0, + 1072.0, + 1034.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1043.0, + 1402.0, + 1043.0, + 1402.0, + 1074.0, + 1148.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1082.0, + 936.0, + 1082.0, + 936.0, + 1106.0, + 892.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1083.0, + 1091.0, + 1083.0, + 1091.0, + 1103.0, + 1042.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1083.0, + 1226.0, + 1083.0, + 1226.0, + 1103.0, + 1175.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1082.0, + 1356.0, + 1082.0, + 1356.0, + 1103.0, + 1311.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1127.0, + 955.0, + 1127.0, + 955.0, + 1186.0, + 885.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1213.0, + 1127.0, + 1213.0, + 1127.0, + 1233.0, + 1001.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1213.0, + 1263.0, + 1213.0, + 1263.0, + 1234.0, + 1137.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1213.0, + 1400.0, + 1213.0, + 1400.0, + 1236.0, + 1273.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1236.0, + 957.0, + 1236.0, + 957.0, + 1259.0, + 869.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1237.0, + 1090.0, + 1237.0, + 1090.0, + 1257.0, + 1042.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1234.0, + 1224.0, + 1234.0, + 1224.0, + 1259.0, + 1177.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1237.0, + 1377.0, + 1237.0, + 1377.0, + 1256.0, + 1292.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1366.0, + 1132.0, + 1366.0, + 1132.0, + 1388.0, + 1002.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1366.0, + 1268.0, + 1366.0, + 1268.0, + 1387.0, + 1136.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1366.0, + 1401.0, + 1366.0, + 1401.0, + 1388.0, + 1274.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1388.0, + 940.0, + 1388.0, + 940.0, + 1408.0, + 888.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1388.0, + 1095.0, + 1388.0, + 1095.0, + 1408.0, + 1037.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1387.0, + 1259.0, + 1387.0, + 1259.0, + 1409.0, + 1142.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 1387.0, + 1365.0, + 1387.0, + 1365.0, + 1410.0, + 1303.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1520.0, + 1134.0, + 1520.0, + 1134.0, + 1539.0, + 998.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1521.0, + 1264.0, + 1521.0, + 1264.0, + 1537.0, + 1136.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1522.0, + 1394.0, + 1522.0, + 1394.0, + 1538.0, + 1272.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1539.0, + 969.0, + 1539.0, + 969.0, + 1562.0, + 858.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1538.0, + 1103.0, + 1538.0, + 1103.0, + 1561.0, + 1028.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1538.0, + 1237.0, + 1538.0, + 1237.0, + 1561.0, + 1163.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1540.0, + 1369.0, + 1540.0, + 1369.0, + 1560.0, + 1301.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 214.0, + 636.0, + 214.0, + 636.0, + 254.0, + 540.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 217.0, + 1212.0, + 217.0, + 1212.0, + 252.0, + 1065.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 241.0, + 359.0, + 241.0, + 359.0, + 277.0, + 309.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 241.0, + 911.0, + 241.0, + 911.0, + 277.0, + 858.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 314.0, + 356.0, + 314.0, + 356.0, + 346.0, + 310.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 312.0, + 906.0, + 312.0, + 906.0, + 345.0, + 860.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 369.0, + 356.0, + 369.0, + 356.0, + 504.0, + 289.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 369.0, + 906.0, + 369.0, + 906.0, + 504.0, + 840.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 455.0, + 355.0, + 455.0, + 355.0, + 487.0, + 313.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 455.0, + 906.0, + 455.0, + 906.0, + 487.0, + 862.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 522.0, + 358.0, + 522.0, + 358.0, + 560.0, + 309.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 523.0, + 814.0, + 523.0, + 814.0, + 553.0, + 676.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 523.0, + 906.0, + 523.0, + 906.0, + 559.0, + 858.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 522.0, + 1366.0, + 522.0, + 1366.0, + 554.0, + 1225.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 546.0, + 786.0, + 546.0, + 786.0, + 581.0, + 675.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 544.0, + 1337.0, + 544.0, + 1337.0, + 583.0, + 1225.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 571.0, + 801.0, + 571.0, + 801.0, + 608.0, + 675.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 571.0, + 1353.0, + 571.0, + 1353.0, + 608.0, + 1226.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 609.0, + 500.0, + 609.0, + 500.0, + 643.0, + 439.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 609.0, + 624.0, + 609.0, + 624.0, + 641.0, + 550.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 606.0, + 742.0, + 606.0, + 742.0, + 644.0, + 669.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 608.0, + 858.0, + 608.0, + 858.0, + 641.0, + 786.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 597.0, + 911.0, + 597.0, + 911.0, + 637.0, + 861.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 609.0, + 1051.0, + 609.0, + 1051.0, + 643.0, + 988.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 609.0, + 1174.0, + 609.0, + 1174.0, + 641.0, + 1100.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 609.0, + 1292.0, + 609.0, + 1292.0, + 641.0, + 1219.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 609.0, + 1403.0, + 609.0, + 1403.0, + 643.0, + 1336.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 629.0, + 630.0, + 629.0, + 630.0, + 662.0, + 546.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 629.0, + 1179.0, + 629.0, + 1179.0, + 662.0, + 1096.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 591.0, + 359.0, + 591.0, + 359.0, + 637.0, + 320.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 679.0, + 1406.0, + 679.0, + 1406.0, + 716.0, + 295.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 710.0, + 1402.0, + 710.0, + 1402.0, + 743.0, + 296.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 788.0, + 770.0, + 788.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 805.0, + 859.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 1285.0, + 799.0, + 1285.0, + 837.0, + 293.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1748.0, + 846.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1745.0, + 1404.0, + 1745.0, + 1404.0, + 1778.0, + 846.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1773.0, + 1404.0, + 1773.0, + 1404.0, + 1809.0, + 843.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1806.0, + 1404.0, + 1806.0, + 1404.0, + 1839.0, + 845.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1834.0, + 932.0, + 1834.0, + 932.0, + 1867.0, + 845.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1834.0, + 1404.0, + 1834.0, + 1404.0, + 1867.0, + 969.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1867.0, + 1404.0, + 1867.0, + 1404.0, + 1900.0, + 844.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1897.0, + 1404.0, + 1897.0, + 1404.0, + 1930.0, + 843.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1928.0, + 1405.0, + 1928.0, + 1405.0, + 1961.0, + 845.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1958.0, + 1405.0, + 1958.0, + 1405.0, + 1991.0, + 844.0, + 1991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1988.0, + 1301.0, + 1988.0, + 1301.0, + 2019.0, + 844.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.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, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 70.0, + 860.0, + 70.0, + 860.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1019.0, + 826.0, + 1019.0, + 826.0, + 1054.0, + 296.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1051.0, + 826.0, + 1051.0, + 826.0, + 1087.0, + 293.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1084.0, + 596.0, + 1084.0, + 596.0, + 1112.0, + 296.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1084.0, + 825.0, + 1084.0, + 825.0, + 1112.0, + 631.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1111.0, + 828.0, + 1111.0, + 828.0, + 1145.0, + 295.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1141.0, + 827.0, + 1141.0, + 827.0, + 1175.0, + 293.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1171.0, + 827.0, + 1171.0, + 827.0, + 1205.0, + 296.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1203.0, + 826.0, + 1203.0, + 826.0, + 1237.0, + 296.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1233.0, + 826.0, + 1233.0, + 826.0, + 1266.0, + 296.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1265.0, + 827.0, + 1265.0, + 827.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 326.0, + 1292.0, + 326.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1292.0, + 828.0, + 1292.0, + 828.0, + 1328.0, + 404.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1324.0, + 539.0, + 1324.0, + 539.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1324.0, + 827.0, + 1324.0, + 827.0, + 1358.0, + 608.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 827.0, + 1356.0, + 827.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1385.0, + 827.0, + 1385.0, + 827.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1415.0, + 826.0, + 1415.0, + 826.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 523.0, + 1445.0, + 523.0, + 1480.0, + 295.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1445.0, + 828.0, + 1445.0, + 828.0, + 1480.0, + 559.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 827.0, + 1478.0, + 827.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1509.0, + 827.0, + 1509.0, + 827.0, + 1541.0, + 294.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1538.0, + 826.0, + 1538.0, + 826.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 826.0, + 1570.0, + 826.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 827.0, + 1599.0, + 827.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1627.0, + 825.0, + 1627.0, + 825.0, + 1664.0, + 295.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1661.0, + 824.0, + 1661.0, + 824.0, + 1691.0, + 296.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 476.0, + 1687.0, + 476.0, + 1724.0, + 294.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1687.0, + 825.0, + 1687.0, + 825.0, + 1724.0, + 512.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 593.0, + 1718.0, + 593.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1785.0, + 825.0, + 1785.0, + 825.0, + 1820.0, + 295.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1816.0, + 827.0, + 1816.0, + 827.0, + 1851.0, + 294.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1846.0, + 826.0, + 1846.0, + 826.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 827.0, + 1875.0, + 827.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1906.0, + 826.0, + 1906.0, + 826.0, + 1943.0, + 294.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1937.0, + 826.0, + 1937.0, + 826.0, + 1973.0, + 294.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 827.0, + 1969.0, + 827.0, + 2002.0, + 295.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2000.0, + 827.0, + 2000.0, + 827.0, + 2034.0, + 296.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 894.0, + 1404.0, + 894.0, + 1404.0, + 927.0, + 295.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 921.0, + 1017.0, + 921.0, + 1017.0, + 961.0, + 293.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 921.0, + 1406.0, + 921.0, + 1406.0, + 961.0, + 1081.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 952.0, + 700.0, + 952.0, + 700.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 952.0, + 1105.0, + 952.0, + 1105.0, + 989.0, + 770.0, + 989.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1304, + 824, + 1304, + 824, + 1821, + 299, + 1821 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 872, + 1405, + 872, + 1405, + 1208, + 297, + 1208 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 745, + 1403, + 745, + 1403, + 838, + 299, + 838 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 845, + 1662, + 1404, + 1662, + 1404, + 1816, + 845, + 1816 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 847, + 1238, + 1397, + 1238, + 1397, + 1639, + 847, + 1639 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 592, + 1406, + 592, + 1406, + 686, + 296, + 686 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1841, + 1403, + 1841, + 1403, + 2021, + 298, + 2021 + ], + "score": 0.93 + }, + { + "category_id": 3, + "poly": [ + 297, + 224, + 1399, + 224, + 1399, + 569, + 297, + 569 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 303, + 1246, + 755, + 1246, + 755, + 1277, + 303, + 1277 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.79 + }, + { + "category_id": 0, + "poly": [ + 302, + 1839, + 823, + 1839, + 823, + 1868, + 302, + 1868 + ], + "score": 0.268 + }, + { + "category_id": 13, + "poly": [ + 1156, + 1785, + 1210, + 1785, + 1210, + 1815, + 1156, + 1815 + ], + "score": 0.89, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 900, + 1117, + 946, + 1117, + 946, + 1147, + 900, + 1147 + ], + "score": 0.89, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 965, + 1284, + 965, + 1284, + 994, + 1250, + 994 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1724, + 1308, + 1724, + 1308, + 1754, + 1252, + 1754 + ], + "score": 0.88, + "latex": "7 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 973, + 1959, + 1028, + 1959, + 1028, + 1989, + 973, + 1989 + ], + "score": 0.88, + "latex": "7 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 582, + 1117, + 617, + 1117, + 617, + 1147, + 582, + 1147 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1900, + 1332, + 1900, + 1332, + 1929, + 1298, + 1929 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1989, + 704, + 1989, + 704, + 2020, + 648, + 2020 + ], + "score": 0.87, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1900, + 981, + 1900, + 981, + 1929, + 947, + 1929 + ], + "score": 0.87, + "latex": "L _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1663.0, + 1407.0, + 1663.0, + 1407.0, + 1696.0, + 846.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1693.0, + 1403.0, + 1693.0, + 1403.0, + 1727.0, + 845.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1723.0, + 1251.0, + 1723.0, + 1251.0, + 1757.0, + 845.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1757.0, + 1309.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1755.0, + 1405.0, + 1755.0, + 1405.0, + 1789.0, + 845.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1786.0, + 1155.0, + 1786.0, + 1155.0, + 1817.0, + 846.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1786.0, + 1220.0, + 1786.0, + 1220.0, + 1817.0, + 1211.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1233.0, + 907.0, + 1233.0, + 907.0, + 1267.0, + 861.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1275.0, + 907.0, + 1275.0, + 907.0, + 1312.0, + 859.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1319.0, + 908.0, + 1319.0, + 908.0, + 1355.0, + 859.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1359.0, + 872.0, + 1359.0, + 872.0, + 1418.0, + 843.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1362.0, + 906.0, + 1362.0, + 906.0, + 1400.0, + 859.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1403.0, + 872.0, + 1403.0, + 872.0, + 1488.0, + 842.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1407.0, + 905.0, + 1407.0, + 905.0, + 1440.0, + 861.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1451.0, + 905.0, + 1451.0, + 905.0, + 1484.0, + 860.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1494.0, + 905.0, + 1494.0, + 905.0, + 1530.0, + 861.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1538.0, + 904.0, + 1538.0, + 904.0, + 1573.0, + 861.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1532.0, + 1371.0, + 1532.0, + 1371.0, + 1563.0, + 1299.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1556.0, + 1361.0, + 1556.0, + 1361.0, + 1590.0, + 1297.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1595.0, + 1026.0, + 1595.0, + 1026.0, + 1625.0, + 968.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1596.0, + 1121.0, + 1596.0, + 1121.0, + 1623.0, + 1063.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1594.0, + 1216.0, + 1594.0, + 1216.0, + 1624.0, + 1158.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1595.0, + 1313.0, + 1595.0, + 1313.0, + 1625.0, + 1254.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1624.0, + 1346.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1614.0, + 1182.0, + 1614.0, + 1182.0, + 1646.0, + 1098.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1581.0, + 909.0, + 1581.0, + 909.0, + 1621.0, + 866.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 626.0, + 1403.0, + 626.0, + 1403.0, + 656.0, + 296.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 655.0, + 1367.0, + 655.0, + 1367.0, + 689.0, + 296.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 242.0, + 564.0, + 242.0, + 564.0, + 274.0, + 514.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 244.0, + 832.0, + 244.0, + 832.0, + 275.0, + 787.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 244.0, + 1115.0, + 244.0, + 1115.0, + 276.0, + 1068.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 242.0, + 1381.0, + 242.0, + 1381.0, + 276.0, + 1336.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 278.0, + 579.0, + 278.0, + 579.0, + 319.0, + 518.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 281.0, + 833.0, + 281.0, + 833.0, + 314.0, + 787.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 281.0, + 1125.0, + 281.0, + 1125.0, + 313.0, + 1068.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 281.0, + 1380.0, + 281.0, + 1380.0, + 314.0, + 1336.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 317.0, + 585.0, + 317.0, + 585.0, + 356.0, + 516.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 319.0, + 833.0, + 319.0, + 833.0, + 354.0, + 787.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 354.0, + 570.0, + 354.0, + 570.0, + 396.0, + 516.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 356.0, + 835.0, + 356.0, + 835.0, + 393.0, + 785.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 413.0, + 439.0, + 413.0, + 439.0, + 438.0, + 353.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 393.0, + 571.0, + 393.0, + 571.0, + 431.0, + 517.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 394.0, + 838.0, + 394.0, + 838.0, + 432.0, + 785.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 413.0, + 986.0, + 413.0, + 986.0, + 438.0, + 906.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 431.0, + 629.0, + 431.0, + 629.0, + 469.0, + 517.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 430.0, + 839.0, + 430.0, + 839.0, + 471.0, + 786.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 469.0, + 587.0, + 469.0, + 587.0, + 505.0, + 514.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 470.0, + 837.0, + 470.0, + 837.0, + 508.0, + 785.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 506.0, + 573.0, + 506.0, + 573.0, + 548.0, + 516.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 510.0, + 834.0, + 510.0, + 834.0, + 543.0, + 787.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1241.0, + 762.0, + 1241.0, + 762.0, + 1282.0, + 295.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.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": [ + 296.0, + 1834.0, + 826.0, + 1834.0, + 826.0, + 1873.0, + 296.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1302.0, + 825.0, + 1302.0, + 825.0, + 1335.0, + 296.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1333.0, + 826.0, + 1333.0, + 826.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1364.0, + 827.0, + 1364.0, + 827.0, + 1398.0, + 296.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1395.0, + 826.0, + 1395.0, + 826.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1426.0, + 827.0, + 1426.0, + 827.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1456.0, + 826.0, + 1456.0, + 826.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1486.0, + 826.0, + 1486.0, + 826.0, + 1518.0, + 296.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1515.0, + 827.0, + 1515.0, + 827.0, + 1548.0, + 295.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1547.0, + 827.0, + 1547.0, + 827.0, + 1579.0, + 296.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1577.0, + 827.0, + 1577.0, + 827.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1608.0, + 827.0, + 1608.0, + 827.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 828.0, + 1639.0, + 828.0, + 1671.0, + 294.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 826.0, + 1669.0, + 826.0, + 1701.0, + 296.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 826.0, + 1698.0, + 826.0, + 1733.0, + 295.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1728.0, + 827.0, + 1728.0, + 827.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1759.0, + 828.0, + 1759.0, + 828.0, + 1794.0, + 295.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1787.0, + 737.0, + 1787.0, + 737.0, + 1826.0, + 294.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 907.0, + 295.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 903.0, + 1403.0, + 903.0, + 1403.0, + 937.0, + 295.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 1405.0, + 933.0, + 1405.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 963.0, + 1249.0, + 963.0, + 1249.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 999.0, + 1285.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 994.0, + 1405.0, + 994.0, + 1405.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1025.0, + 1406.0, + 1025.0, + 1406.0, + 1060.0, + 295.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1055.0, + 1403.0, + 1055.0, + 1403.0, + 1090.0, + 295.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1402.0, + 1086.0, + 1402.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1113.0, + 581.0, + 1113.0, + 581.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1113.0, + 899.0, + 1113.0, + 899.0, + 1155.0, + 618.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1113.0, + 1406.0, + 1113.0, + 1406.0, + 1155.0, + 947.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1147.0, + 1406.0, + 1147.0, + 1406.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1176.0, + 488.0, + 1176.0, + 488.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 1404.0, + 741.0, + 1404.0, + 782.0, + 293.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 777.0, + 1403.0, + 777.0, + 1403.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 806.0, + 1152.0, + 806.0, + 1152.0, + 845.0, + 293.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1838.0, + 827.0, + 1838.0, + 827.0, + 1870.0, + 297.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1902.0, + 293.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1900.0, + 946.0, + 1900.0, + 946.0, + 1931.0, + 294.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1900.0, + 1297.0, + 1900.0, + 1297.0, + 1931.0, + 982.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1900.0, + 1404.0, + 1900.0, + 1404.0, + 1931.0, + 1333.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1929.0, + 1407.0, + 1929.0, + 1407.0, + 1963.0, + 293.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1959.0, + 972.0, + 1959.0, + 972.0, + 1992.0, + 293.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1959.0, + 1405.0, + 1959.0, + 1405.0, + 1992.0, + 1029.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1987.0, + 647.0, + 1987.0, + 647.0, + 2024.0, + 293.0, + 2024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1987.0, + 1405.0, + 1987.0, + 1405.0, + 2024.0, + 705.0, + 2024.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 636, + 1404, + 636, + 1404, + 1002, + 299, + 1002 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1018, + 1404, + 1018, + 1404, + 1323, + 298, + 1323 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 405, + 1404, + 405, + 1404, + 620, + 298, + 620 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1576, + 1402, + 1576, + 1402, + 1761, + 298, + 1761 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1776, + 1402, + 1776, + 1402, + 1959, + 299, + 1959 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1437, + 1401, + 1437, + 1401, + 1560, + 299, + 1560 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1403, + 229, + 1403, + 293, + 296, + 293 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 300, + 336, + 587, + 336, + 587, + 372, + 300, + 372 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1368, + 544, + 1368, + 544, + 1403, + 300, + 1403 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.821 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.107 + }, + { + "category_id": 13, + "poly": [ + 398, + 1736, + 415, + 1736, + 415, + 1757, + 398, + 1757 + ], + "score": 0.68, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 334.0, + 593.0, + 334.0, + 593.0, + 377.0, + 292.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 549.0, + 1364.0, + 549.0, + 1412.0, + 292.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.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": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 637.0, + 1405.0, + 637.0, + 1405.0, + 671.0, + 295.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 1404.0, + 669.0, + 1404.0, + 702.0, + 294.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 698.0, + 1404.0, + 698.0, + 1404.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 729.0, + 1403.0, + 729.0, + 1403.0, + 763.0, + 295.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 760.0, + 1405.0, + 760.0, + 1405.0, + 794.0, + 294.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 828.0, + 292.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 886.0, + 292.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 916.0, + 292.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 1403.0, + 911.0, + 1403.0, + 945.0, + 293.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 978.0, + 293.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 968.0, + 379.0, + 968.0, + 379.0, + 1009.0, + 293.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1404.0, + 1017.0, + 1404.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1402.0, + 1050.0, + 1402.0, + 1082.0, + 294.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1076.0, + 1406.0, + 1076.0, + 1406.0, + 1116.0, + 292.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1406.0, + 1110.0, + 1406.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1176.0, + 294.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1203.0, + 296.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1201.0, + 1404.0, + 1201.0, + 1404.0, + 1236.0, + 293.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1264.0, + 1404.0, + 1264.0, + 1404.0, + 1296.0, + 296.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1292.0, + 497.0, + 1292.0, + 497.0, + 1324.0, + 296.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 403.0, + 1406.0, + 403.0, + 1406.0, + 442.0, + 293.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 437.0, + 1406.0, + 437.0, + 1406.0, + 472.0, + 294.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 467.0, + 1404.0, + 467.0, + 1404.0, + 501.0, + 294.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 499.0, + 1405.0, + 499.0, + 1405.0, + 533.0, + 294.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 526.0, + 1404.0, + 526.0, + 1404.0, + 563.0, + 293.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 559.0, + 1404.0, + 559.0, + 1404.0, + 594.0, + 294.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 588.0, + 820.0, + 588.0, + 820.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1577.0, + 1403.0, + 1577.0, + 1403.0, + 1609.0, + 297.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1607.0, + 1406.0, + 1607.0, + 1406.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1638.0, + 1404.0, + 1638.0, + 1404.0, + 1671.0, + 293.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1704.0, + 293.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1730.0, + 397.0, + 1730.0, + 397.0, + 1765.0, + 294.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1730.0, + 1017.0, + 1730.0, + 1017.0, + 1765.0, + 416.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1812.0, + 294.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 1404.0, + 1806.0, + 1404.0, + 1840.0, + 295.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1837.0, + 1406.0, + 1837.0, + 1406.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1866.0, + 1406.0, + 1866.0, + 1406.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1899.0, + 1404.0, + 1899.0, + 1404.0, + 1931.0, + 295.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1929.0, + 1265.0, + 1929.0, + 1265.0, + 1961.0, + 294.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1439.0, + 1403.0, + 1439.0, + 1403.0, + 1472.0, + 297.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1405.0, + 1466.0, + 1405.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1315.0, + 1531.0, + 1315.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 870.0, + 261.0, + 870.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 297, + 278, + 1401, + 278, + 1401, + 372, + 297, + 372 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 295, + 867, + 1399, + 867, + 1399, + 933, + 295, + 933 + ], + "score": 0.561 + }, + { + "category_id": 1, + "poly": [ + 298, + 1124, + 1399, + 1124, + 1399, + 1220, + 298, + 1220 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 293, + 1684, + 1403, + 1684, + 1403, + 1750, + 293, + 1750 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 294, + 1570, + 1401, + 1570, + 1401, + 1664, + 294, + 1664 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 290, + 785, + 1401, + 785, + 1401, + 850, + 290, + 850 + ], + "score": 0.518 + }, + { + "category_id": 1, + "poly": [ + 301, + 392, + 1399, + 392, + 1399, + 487, + 301, + 487 + ], + "score": 0.514 + }, + { + "category_id": 1, + "poly": [ + 298, + 1238, + 1399, + 1238, + 1399, + 1303, + 298, + 1303 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 296, + 1487, + 1403, + 1487, + 1403, + 1552, + 296, + 1552 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 294, + 1767, + 1401, + 1767, + 1401, + 1832, + 294, + 1832 + ], + "score": 0.495 + }, + { + "category_id": 1, + "poly": [ + 288, + 702, + 1401, + 702, + 1401, + 766, + 288, + 766 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 299, + 1321, + 1401, + 1321, + 1401, + 1387, + 299, + 1387 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 292, + 504, + 1403, + 504, + 1403, + 570, + 292, + 570 + ], + "score": 0.484 + }, + { + "category_id": 1, + "poly": [ + 300, + 587, + 1401, + 587, + 1401, + 683, + 300, + 683 + ], + "score": 0.479 + }, + { + "category_id": 1, + "poly": [ + 296, + 1404, + 1401, + 1404, + 1401, + 1469, + 296, + 1469 + ], + "score": 0.478 + }, + { + "category_id": 1, + "poly": [ + 294, + 1850, + 1401, + 1850, + 1401, + 1916, + 294, + 1916 + ], + "score": 0.461 + }, + { + "category_id": 1, + "poly": [ + 295, + 1933, + 1401, + 1933, + 1401, + 1999, + 295, + 1999 + ], + "score": 0.419 + }, + { + "category_id": 1, + "poly": [ + 295, + 950, + 1401, + 950, + 1401, + 1106, + 295, + 1106 + ], + "score": 0.416 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.101 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.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": [ + 295.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 1403.0, + 278.0, + 1403.0, + 312.0, + 293.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 309.0, + 1400.0, + 309.0, + 1400.0, + 343.0, + 321.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 340.0, + 423.0, + 340.0, + 423.0, + 372.0, + 322.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 866.0, + 1403.0, + 866.0, + 1403.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 900.0, + 1316.0, + 900.0, + 1316.0, + 932.0, + 324.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1122.0, + 1404.0, + 1122.0, + 1404.0, + 1163.0, + 292.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1156.0, + 1405.0, + 1156.0, + 1405.0, + 1190.0, + 324.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1185.0, + 990.0, + 1185.0, + 990.0, + 1221.0, + 322.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1685.0, + 1403.0, + 1685.0, + 1403.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1713.0, + 1259.0, + 1713.0, + 1259.0, + 1749.0, + 325.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1572.0, + 1403.0, + 1572.0, + 1403.0, + 1606.0, + 297.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1600.0, + 1401.0, + 1600.0, + 1401.0, + 1638.0, + 321.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1633.0, + 638.0, + 1633.0, + 638.0, + 1664.0, + 323.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 1404.0, + 785.0, + 1404.0, + 821.0, + 294.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 815.0, + 1012.0, + 815.0, + 1012.0, + 850.0, + 322.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 427.0, + 297.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 425.0, + 1404.0, + 425.0, + 1404.0, + 457.0, + 322.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 455.0, + 854.0, + 455.0, + 854.0, + 489.0, + 323.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1236.0, + 1401.0, + 1236.0, + 1401.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1269.0, + 956.0, + 1269.0, + 956.0, + 1304.0, + 323.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1486.0, + 1403.0, + 1486.0, + 1403.0, + 1525.0, + 293.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1520.0, + 687.0, + 1520.0, + 687.0, + 1552.0, + 321.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1761.0, + 1405.0, + 1761.0, + 1405.0, + 1810.0, + 292.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1797.0, + 807.0, + 1797.0, + 807.0, + 1833.0, + 322.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 698.0, + 1404.0, + 698.0, + 1404.0, + 742.0, + 292.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 734.0, + 894.0, + 734.0, + 894.0, + 766.0, + 325.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1324.0, + 1403.0, + 1324.0, + 1403.0, + 1357.0, + 297.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1353.0, + 1319.0, + 1353.0, + 1319.0, + 1388.0, + 320.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 501.0, + 1405.0, + 501.0, + 1405.0, + 544.0, + 295.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 537.0, + 758.0, + 537.0, + 758.0, + 569.0, + 323.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 588.0, + 1405.0, + 588.0, + 1405.0, + 623.0, + 296.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 618.0, + 1402.0, + 618.0, + 1402.0, + 657.0, + 320.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 652.0, + 772.0, + 652.0, + 772.0, + 683.0, + 326.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 1405.0, + 1403.0, + 1405.0, + 1442.0, + 295.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1438.0, + 1067.0, + 1438.0, + 1067.0, + 1469.0, + 323.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1887.0, + 296.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1882.0, + 1042.0, + 1882.0, + 1042.0, + 1917.0, + 322.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1932.0, + 1404.0, + 1932.0, + 1404.0, + 1967.0, + 294.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1966.0, + 989.0, + 1966.0, + 989.0, + 1998.0, + 322.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1403.0, + 947.0, + 1403.0, + 991.0, + 293.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 983.0, + 1403.0, + 983.0, + 1403.0, + 1016.0, + 323.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1011.0, + 1406.0, + 1011.0, + 1406.0, + 1049.0, + 320.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1041.0, + 1405.0, + 1041.0, + 1405.0, + 1079.0, + 322.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1073.0, + 1098.0, + 1073.0, + 1098.0, + 1107.0, + 324.0, + 1107.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": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1404, + 229, + 1404, + 354, + 300, + 354 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 297, + 1280, + 1402, + 1280, + 1402, + 1374, + 297, + 1374 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 296, + 1559, + 1401, + 1559, + 1401, + 1625, + 296, + 1625 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 295, + 1476, + 1403, + 1476, + 1403, + 1543, + 295, + 1543 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 296, + 1393, + 1400, + 1393, + 1400, + 1460, + 296, + 1460 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 292, + 1901, + 1403, + 1901, + 1403, + 1965, + 292, + 1965 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 296, + 600, + 1404, + 600, + 1404, + 725, + 296, + 725 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 295, + 857, + 1404, + 857, + 1404, + 983, + 295, + 983 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 297, + 1000, + 1401, + 1000, + 1401, + 1095, + 297, + 1095 + ], + "score": 0.746 + }, + { + "category_id": 1, + "poly": [ + 295, + 373, + 1401, + 373, + 1401, + 436, + 295, + 436 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 291, + 1197, + 1401, + 1197, + 1401, + 1262, + 291, + 1262 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 297, + 456, + 1405, + 456, + 1405, + 580, + 297, + 580 + ], + "score": 0.724 + }, + { + "category_id": 1, + "poly": [ + 292, + 1115, + 1401, + 1115, + 1401, + 1179, + 292, + 1179 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 296, + 1642, + 1404, + 1642, + 1404, + 1768, + 296, + 1768 + ], + "score": 0.649 + }, + { + "category_id": 1, + "poly": [ + 301, + 744, + 1403, + 744, + 1403, + 839, + 301, + 839 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 297, + 1787, + 1402, + 1787, + 1402, + 1882, + 297, + 1882 + ], + "score": 0.322 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.092 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 295.0, + 323.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 293.0, + 1405.0, + 293.0, + 1405.0, + 325.0, + 321.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 320.0, + 1237.0, + 320.0, + 1237.0, + 357.0, + 320.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 1404.0, + 1281.0, + 1404.0, + 1315.0, + 295.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1311.0, + 1401.0, + 1311.0, + 1401.0, + 1345.0, + 321.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1343.0, + 424.0, + 1343.0, + 424.0, + 1376.0, + 324.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1592.0, + 1147.0, + 1592.0, + 1147.0, + 1626.0, + 323.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1508.0, + 1276.0, + 1508.0, + 1276.0, + 1543.0, + 322.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1394.0, + 1404.0, + 1394.0, + 1404.0, + 1430.0, + 296.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1427.0, + 1246.0, + 1427.0, + 1246.0, + 1460.0, + 322.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 1405.0, + 1897.0, + 1405.0, + 1941.0, + 294.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1932.0, + 861.0, + 1932.0, + 861.0, + 1966.0, + 321.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 637.0, + 295.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 633.0, + 1402.0, + 633.0, + 1402.0, + 666.0, + 323.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 661.0, + 1404.0, + 661.0, + 1404.0, + 699.0, + 320.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 694.0, + 837.0, + 694.0, + 837.0, + 727.0, + 325.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 856.0, + 1406.0, + 856.0, + 1406.0, + 896.0, + 293.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 887.0, + 1405.0, + 887.0, + 1405.0, + 926.0, + 321.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 919.0, + 1406.0, + 919.0, + 1406.0, + 955.0, + 322.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 948.0, + 1319.0, + 948.0, + 1319.0, + 986.0, + 321.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 998.0, + 1403.0, + 998.0, + 1403.0, + 1038.0, + 293.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1032.0, + 1398.0, + 1032.0, + 1398.0, + 1066.0, + 322.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1062.0, + 424.0, + 1062.0, + 424.0, + 1095.0, + 324.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 370.0, + 1406.0, + 370.0, + 1406.0, + 411.0, + 294.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 403.0, + 582.0, + 403.0, + 582.0, + 435.0, + 323.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1404.0, + 1197.0, + 1404.0, + 1233.0, + 294.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1228.0, + 991.0, + 1228.0, + 991.0, + 1263.0, + 322.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 454.0, + 1406.0, + 454.0, + 1406.0, + 492.0, + 292.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 489.0, + 1402.0, + 489.0, + 1402.0, + 522.0, + 324.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 518.0, + 1403.0, + 518.0, + 1403.0, + 554.0, + 323.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 550.0, + 856.0, + 550.0, + 856.0, + 582.0, + 325.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1115.0, + 1404.0, + 1115.0, + 1404.0, + 1151.0, + 296.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1146.0, + 1275.0, + 1146.0, + 1275.0, + 1180.0, + 321.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1405.0, + 1641.0, + 1405.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1709.0, + 324.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1704.0, + 1402.0, + 1704.0, + 1402.0, + 1742.0, + 320.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1738.0, + 637.0, + 1738.0, + 637.0, + 1770.0, + 323.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 742.0, + 1403.0, + 742.0, + 1403.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 774.0, + 1404.0, + 774.0, + 1404.0, + 809.0, + 322.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 806.0, + 916.0, + 806.0, + 916.0, + 840.0, + 325.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1786.0, + 1406.0, + 1786.0, + 1406.0, + 1824.0, + 296.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1819.0, + 1404.0, + 1819.0, + 1404.0, + 1853.0, + 322.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1849.0, + 607.0, + 1849.0, + 607.0, + 1884.0, + 325.0, + 1884.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 295, + 1404, + 295, + 1404, + 389, + 299, + 389 + ], + "score": 0.963 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 781, + 226, + 781, + 261, + 299, + 261 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.851 + }, + { + "category_id": 3, + "poly": [ + 354, + 404, + 1348, + 404, + 1348, + 1968, + 354, + 1968 + ], + "score": 0.625 + }, + { + "category_id": 5, + "poly": [ + 354, + 404, + 1348, + 404, + 1348, + 1968, + 354, + 1968 + ], + "score": 0.317, + "html": "
origin_60.BMP B origin_54.BMPDog Breed Dog Like Mammal Dog Lakeland Terrierafter_60.BMP □ ter_59.BMIRifle Snow Winter65%
93% 91% 90%Grass Snout Terrier63% 60%
85%
Wire Hair Fox Terrier 84%
Terrier 83% Snout 62%
Carnivoran 62%
Comnanion Don 60%
Camera Accessory 87%Weapon Gun94% 94%
Product Camera Lens Gun Product Chicken82% 67%
Firearm
Hardware Optical Instrument 66%76% Air Gun 65%
UYT 61%Trigger
after_54.BMP 61%63% 59%
58%Optical Instrument Airsoft Gun 58%
51%
Weapon 53%
98%77% 69%
92% 91% 89%
动 origin_59.BMP81%
Feather
Fowl 79%
Poultry 74%
Bird 70%
Phasianidae 58%Sky78%
Lighthouse 98%Sea73%
Tower 96%Computer Wallpaper56%
Landmark 89% Beacon 81%
78%
Sky
Promontory 77%
Coast 59%
Sea 58% Inlet 56%Fish
Marine Mammal 95%Ecosystem94% 91%
Fauna 94%Fish86%
Mammal 93% Wildlife 82%Shark75%
Mouth69%
Terrestrial Animal origin_25.BMP80% after_25.BMPCartilaginous Fish67%
Organism77%Organism
Snout74%67%
Mouth71%Marine Biology63%
Whales Dolnhins And Pornoises6.9%law
" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 221.0, + 787.0, + 221.0, + 787.0, + 267.0, + 294.0, + 267.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": [ + 550.0, + 434.0, + 627.0, + 434.0, + 627.0, + 463.0, + 550.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 435.0, + 829.0, + 435.0, + 829.0, + 461.0, + 795.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 439.0, + 1092.0, + 439.0, + 1092.0, + 461.0, + 1048.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 439.0, + 1321.0, + 439.0, + 1321.0, + 460.0, + 1292.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 468.0, + 675.0, + 468.0, + 675.0, + 496.0, + 548.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 470.0, + 829.0, + 470.0, + 829.0, + 494.0, + 795.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 472.0, + 1094.0, + 472.0, + 1094.0, + 496.0, + 1048.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 474.0, + 1321.0, + 474.0, + 1321.0, + 494.0, + 1292.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 505.0, + 829.0, + 505.0, + 829.0, + 529.0, + 795.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 507.0, + 1097.0, + 507.0, + 1097.0, + 531.0, + 1049.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 507.0, + 1324.0, + 507.0, + 1324.0, + 531.0, + 1290.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 535.0, + 664.0, + 535.0, + 664.0, + 563.0, + 546.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 538.0, + 830.0, + 538.0, + 830.0, + 564.0, + 795.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 571.0, + 689.0, + 571.0, + 689.0, + 598.0, + 550.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 572.0, + 830.0, + 572.0, + 830.0, + 598.0, + 793.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 604.0, + 605.0, + 604.0, + 605.0, + 635.0, + 550.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 604.0, + 832.0, + 604.0, + 832.0, + 635.0, + 791.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 638.0, + 601.0, + 638.0, + 601.0, + 668.0, + 548.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 640.0, + 830.0, + 640.0, + 830.0, + 666.0, + 795.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 675.0, + 630.0, + 675.0, + 630.0, + 702.0, + 550.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 675.0, + 830.0, + 675.0, + 830.0, + 701.0, + 793.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 709.0, + 660.0, + 709.0, + 660.0, + 732.0, + 552.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 709.0, + 829.0, + 709.0, + 829.0, + 734.0, + 795.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 744.0, + 680.0, + 744.0, + 680.0, + 772.0, + 550.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 746.0, + 832.0, + 746.0, + 832.0, + 772.0, + 795.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 747.0, + 1109.0, + 747.0, + 1109.0, + 772.0, + 1046.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 746.0, + 1326.0, + 746.0, + 1326.0, + 773.0, + 1290.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 777.0, + 613.0, + 777.0, + 613.0, + 806.0, + 550.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 780.0, + 830.0, + 780.0, + 830.0, + 805.0, + 795.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 780.0, + 1085.0, + 780.0, + 1085.0, + 806.0, + 1046.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 774.0, + 1329.0, + 774.0, + 1329.0, + 811.0, + 1288.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 808.0, + 494.0, + 808.0, + 494.0, + 820.0, + 472.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 812.0, + 625.0, + 812.0, + 625.0, + 841.0, + 550.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 813.0, + 830.0, + 813.0, + 830.0, + 839.0, + 795.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 815.0, + 1106.0, + 815.0, + 1106.0, + 839.0, + 1048.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 808.0, + 1329.0, + 808.0, + 1329.0, + 846.0, + 1288.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 841.0, + 384.0, + 841.0, + 384.0, + 877.0, + 366.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 845.0, + 680.0, + 845.0, + 680.0, + 877.0, + 550.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 848.0, + 830.0, + 848.0, + 830.0, + 874.0, + 795.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 843.0, + 882.0, + 843.0, + 882.0, + 881.0, + 848.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 846.0, + 1106.0, + 846.0, + 1106.0, + 876.0, + 1044.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 846.0, + 1328.0, + 846.0, + 1328.0, + 877.0, + 1287.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 881.0, + 648.0, + 881.0, + 648.0, + 909.0, + 550.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 883.0, + 830.0, + 883.0, + 830.0, + 909.0, + 795.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 881.0, + 1104.0, + 881.0, + 1104.0, + 912.0, + 1046.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 883.0, + 1326.0, + 883.0, + 1326.0, + 909.0, + 1289.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 898.0, + 477.0, + 898.0, + 477.0, + 921.0, + 403.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 898.0, + 969.0, + 898.0, + 969.0, + 921.0, + 899.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 917.0, + 589.0, + 917.0, + 589.0, + 943.0, + 550.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 917.0, + 830.0, + 917.0, + 830.0, + 943.0, + 795.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 916.0, + 1172.0, + 916.0, + 1172.0, + 943.0, + 1046.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 917.0, + 1324.0, + 917.0, + 1324.0, + 943.0, + 1289.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 947.0, + 615.0, + 947.0, + 615.0, + 981.0, + 548.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 950.0, + 830.0, + 950.0, + 830.0, + 978.0, + 795.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 950.0, + 1130.0, + 950.0, + 1130.0, + 978.0, + 1044.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 952.0, + 1326.0, + 952.0, + 1326.0, + 978.0, + 1290.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 983.0, + 613.0, + 983.0, + 613.0, + 1013.0, + 550.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 985.0, + 830.0, + 985.0, + 830.0, + 1013.0, + 795.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 981.0, + 1087.0, + 981.0, + 1087.0, + 1014.0, + 1044.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 987.0, + 1324.0, + 987.0, + 1324.0, + 1013.0, + 1289.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1053.0, + 613.0, + 1053.0, + 613.0, + 1082.0, + 552.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1054.0, + 830.0, + 1054.0, + 830.0, + 1080.0, + 796.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1053.0, + 1095.0, + 1053.0, + 1095.0, + 1082.0, + 1044.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1054.0, + 1323.0, + 1054.0, + 1323.0, + 1080.0, + 1290.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1089.0, + 596.0, + 1089.0, + 596.0, + 1115.0, + 554.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1089.0, + 830.0, + 1089.0, + 830.0, + 1117.0, + 796.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1087.0, + 1099.0, + 1087.0, + 1099.0, + 1117.0, + 1044.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1089.0, + 1324.0, + 1089.0, + 1324.0, + 1115.0, + 1289.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1122.0, + 636.0, + 1122.0, + 636.0, + 1150.0, + 552.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1124.0, + 832.0, + 1124.0, + 832.0, + 1150.0, + 796.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1157.0, + 613.0, + 1157.0, + 613.0, + 1186.0, + 552.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1158.0, + 830.0, + 1158.0, + 830.0, + 1184.0, + 796.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1189.0, + 613.0, + 1189.0, + 613.0, + 1219.0, + 552.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1191.0, + 830.0, + 1191.0, + 830.0, + 1219.0, + 796.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1210.0, + 473.0, + 1210.0, + 473.0, + 1228.0, + 410.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1210.0, + 943.0, + 1210.0, + 943.0, + 1228.0, + 906.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1224.0, + 594.0, + 1224.0, + 594.0, + 1253.0, + 547.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1226.0, + 832.0, + 1226.0, + 832.0, + 1254.0, + 796.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1255.0, + 611.0, + 1255.0, + 611.0, + 1291.0, + 550.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1261.0, + 830.0, + 1261.0, + 830.0, + 1287.0, + 796.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1290.0, + 593.0, + 1290.0, + 593.0, + 1323.0, + 548.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1293.0, + 832.0, + 1293.0, + 832.0, + 1321.0, + 796.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1328.0, + 637.0, + 1328.0, + 637.0, + 1351.0, + 554.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1330.0, + 827.0, + 1330.0, + 827.0, + 1351.0, + 798.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1363.0, + 634.0, + 1363.0, + 634.0, + 1392.0, + 550.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1365.0, + 830.0, + 1365.0, + 830.0, + 1391.0, + 795.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1365.0, + 1078.0, + 1365.0, + 1078.0, + 1392.0, + 1046.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1368.0, + 1321.0, + 1368.0, + 1321.0, + 1389.0, + 1292.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1382.0, + 453.0, + 1382.0, + 453.0, + 1406.0, + 432.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1393.0, + 604.0, + 1393.0, + 604.0, + 1429.0, + 550.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1393.0, + 835.0, + 1393.0, + 835.0, + 1430.0, + 794.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1397.0, + 1082.0, + 1397.0, + 1082.0, + 1425.0, + 1046.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1399.0, + 1326.0, + 1399.0, + 1326.0, + 1425.0, + 1289.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1430.0, + 627.0, + 1430.0, + 627.0, + 1460.0, + 550.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1432.0, + 830.0, + 1432.0, + 830.0, + 1460.0, + 795.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1432.0, + 1184.0, + 1432.0, + 1184.0, + 1460.0, + 1044.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1434.0, + 1324.0, + 1434.0, + 1324.0, + 1460.0, + 1289.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1465.0, + 612.0, + 1465.0, + 612.0, + 1495.0, + 550.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1465.0, + 834.0, + 1465.0, + 834.0, + 1496.0, + 793.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1501.0, + 586.0, + 1501.0, + 586.0, + 1529.0, + 550.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1500.0, + 834.0, + 1500.0, + 834.0, + 1531.0, + 793.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1534.0, + 637.0, + 1534.0, + 637.0, + 1564.0, + 550.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1534.0, + 834.0, + 1534.0, + 834.0, + 1566.0, + 793.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1567.0, + 603.0, + 1567.0, + 603.0, + 1597.0, + 548.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1569.0, + 832.0, + 1569.0, + 832.0, + 1597.0, + 796.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1604.0, + 588.0, + 1604.0, + 588.0, + 1630.0, + 550.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1605.0, + 830.0, + 1605.0, + 830.0, + 1630.0, + 796.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1637.0, + 591.0, + 1637.0, + 591.0, + 1663.0, + 550.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1638.0, + 830.0, + 1638.0, + 830.0, + 1663.0, + 796.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1673.0, + 665.0, + 1673.0, + 665.0, + 1701.0, + 550.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1668.0, + 835.0, + 1668.0, + 835.0, + 1706.0, + 792.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1673.0, + 1085.0, + 1673.0, + 1085.0, + 1699.0, + 1046.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1671.0, + 1328.0, + 1671.0, + 1328.0, + 1703.0, + 1287.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1706.0, + 603.0, + 1706.0, + 603.0, + 1735.0, + 548.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1708.0, + 830.0, + 1708.0, + 830.0, + 1734.0, + 795.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1708.0, + 1126.0, + 1708.0, + 1126.0, + 1735.0, + 1046.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1706.0, + 1328.0, + 1706.0, + 1328.0, + 1737.0, + 1287.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1741.0, + 620.0, + 1741.0, + 620.0, + 1770.0, + 550.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1742.0, + 830.0, + 1742.0, + 830.0, + 1768.0, + 793.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1739.0, + 1087.0, + 1739.0, + 1087.0, + 1770.0, + 1044.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1742.0, + 1326.0, + 1742.0, + 1326.0, + 1768.0, + 1289.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1774.0, + 610.0, + 1774.0, + 610.0, + 1801.0, + 548.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1777.0, + 830.0, + 1777.0, + 830.0, + 1803.0, + 793.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1774.0, + 1095.0, + 1774.0, + 1095.0, + 1805.0, + 1044.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1777.0, + 1326.0, + 1777.0, + 1326.0, + 1803.0, + 1290.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1810.0, + 672.0, + 1810.0, + 672.0, + 1838.0, + 552.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1812.0, + 830.0, + 1812.0, + 830.0, + 1838.0, + 793.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1808.0, + 1101.0, + 1808.0, + 1101.0, + 1839.0, + 1044.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1812.0, + 1326.0, + 1812.0, + 1326.0, + 1838.0, + 1289.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1827.0, + 967.0, + 1827.0, + 967.0, + 1850.0, + 901.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1845.0, + 624.0, + 1845.0, + 624.0, + 1874.0, + 550.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1845.0, + 830.0, + 1845.0, + 830.0, + 1872.0, + 795.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1845.0, + 1171.0, + 1845.0, + 1171.0, + 1872.0, + 1046.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1846.0, + 1326.0, + 1846.0, + 1326.0, + 1872.0, + 1289.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1878.0, + 601.0, + 1878.0, + 601.0, + 1907.0, + 548.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1879.0, + 830.0, + 1879.0, + 830.0, + 1905.0, + 796.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1878.0, + 1119.0, + 1878.0, + 1119.0, + 1907.0, + 1046.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1879.0, + 1326.0, + 1879.0, + 1326.0, + 1905.0, + 1290.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1912.0, + 605.0, + 1912.0, + 605.0, + 1942.0, + 550.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1914.0, + 830.0, + 1914.0, + 830.0, + 1940.0, + 795.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1908.0, + 1151.0, + 1908.0, + 1151.0, + 1942.0, + 1045.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1914.0, + 1324.0, + 1914.0, + 1324.0, + 1940.0, + 1290.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1947.0, + 749.0, + 1947.0, + 749.0, + 1971.0, + 550.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1950.0, + 825.0, + 1950.0, + 825.0, + 1969.0, + 796.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1950.0, + 1082.0, + 1950.0, + 1082.0, + 1969.0, + 1051.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1950.0, + 1321.0, + 1950.0, + 1321.0, + 1969.0, + 1295.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 503.0, + 585.0, + 503.0, + 585.0, + 529.0, + 551.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1519.0, + 472.0, + 1519.0, + 472.0, + 1536.0, + 410.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1825.5, + 474.0, + 1825.5, + 474.0, + 1846.5, + 411.0, + 1846.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 331.0, + 293.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 325.0, + 1403.0, + 325.0, + 1403.0, + 361.0, + 294.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 358.0, + 662.0, + 358.0, + 662.0, + 392.0, + 294.0, + 392.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 352, + 317, + 1347, + 317, + 1347, + 1866, + 352, + 1866 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.851 + }, + { + "category_id": 4, + "poly": [ + 475, + 1895, + 1221, + 1895, + 1221, + 1929, + 475, + 1929 + ], + "score": 0.597 + }, + { + "category_id": 4, + "poly": [ + 477, + 1895, + 1221, + 1895, + 1221, + 1929, + 477, + 1929 + ], + "score": 0.383 + }, + { + "category_id": 15, + "poly": [ + 550.0, + 337.0, + 610.0, + 337.0, + 610.0, + 367.0, + 550.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 341.0, + 831.0, + 341.0, + 831.0, + 365.0, + 795.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 343.0, + 1104.0, + 343.0, + 1104.0, + 367.0, + 1046.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 343.0, + 1327.0, + 343.0, + 1327.0, + 368.0, + 1289.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 372.0, + 603.0, + 372.0, + 603.0, + 403.0, + 548.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 375.0, + 831.0, + 375.0, + 831.0, + 401.0, + 795.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 406.0, + 605.0, + 406.0, + 605.0, + 437.0, + 550.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 408.0, + 831.0, + 408.0, + 831.0, + 435.0, + 795.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 439.0, + 654.0, + 439.0, + 654.0, + 471.0, + 548.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 442.0, + 831.0, + 442.0, + 831.0, + 470.0, + 795.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 473.0, + 598.0, + 473.0, + 598.0, + 506.0, + 548.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 475.0, + 834.0, + 475.0, + 834.0, + 506.0, + 793.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 506.0, + 613.0, + 506.0, + 613.0, + 542.0, + 547.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 509.0, + 836.0, + 509.0, + 836.0, + 540.0, + 793.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 542.0, + 593.0, + 542.0, + 593.0, + 574.0, + 548.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 544.0, + 836.0, + 544.0, + 836.0, + 574.0, + 793.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 578.0, + 595.0, + 578.0, + 595.0, + 609.0, + 548.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 578.0, + 836.0, + 578.0, + 836.0, + 609.0, + 793.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 614.0, + 670.0, + 614.0, + 670.0, + 636.0, + 550.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 614.0, + 831.0, + 614.0, + 831.0, + 638.0, + 795.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 647.0, + 637.0, + 647.0, + 637.0, + 681.0, + 548.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 652.0, + 831.0, + 652.0, + 831.0, + 678.0, + 795.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 648.0, + 1104.0, + 648.0, + 1104.0, + 679.0, + 1045.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 652.0, + 1327.0, + 652.0, + 1327.0, + 678.0, + 1289.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 681.0, + 613.0, + 681.0, + 613.0, + 715.0, + 548.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 686.0, + 832.0, + 686.0, + 832.0, + 712.0, + 795.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 684.0, + 1130.0, + 684.0, + 1130.0, + 714.0, + 1045.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 686.0, + 1327.0, + 686.0, + 1327.0, + 712.0, + 1289.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 715.0, + 682.0, + 715.0, + 682.0, + 748.0, + 550.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 720.0, + 831.0, + 720.0, + 831.0, + 746.0, + 795.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 710.0, + 882.0, + 710.0, + 882.0, + 734.0, + 848.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 717.0, + 1169.0, + 717.0, + 1169.0, + 750.0, + 1043.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 720.0, + 1327.0, + 720.0, + 1327.0, + 746.0, + 1291.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 750.0, + 620.0, + 750.0, + 620.0, + 784.0, + 548.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 755.0, + 831.0, + 755.0, + 831.0, + 781.0, + 795.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 750.0, + 1115.0, + 750.0, + 1115.0, + 786.0, + 1043.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 751.0, + 1329.0, + 751.0, + 1329.0, + 782.0, + 1287.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 786.0, + 610.0, + 786.0, + 610.0, + 817.0, + 550.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 786.0, + 836.0, + 786.0, + 836.0, + 817.0, + 793.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 786.0, + 1139.0, + 786.0, + 1139.0, + 815.0, + 1045.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 786.0, + 1329.0, + 786.0, + 1329.0, + 817.0, + 1287.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 805.0, + 472.0, + 805.0, + 472.0, + 825.0, + 406.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 805.0, + 965.0, + 805.0, + 965.0, + 823.0, + 902.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 820.0, + 646.0, + 820.0, + 646.0, + 849.0, + 550.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 820.0, + 836.0, + 820.0, + 836.0, + 851.0, + 793.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 820.0, + 1104.0, + 820.0, + 1104.0, + 851.0, + 1045.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 820.0, + 1329.0, + 820.0, + 1329.0, + 851.0, + 1287.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 853.0, + 677.0, + 853.0, + 677.0, + 887.0, + 548.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 854.0, + 836.0, + 854.0, + 836.0, + 885.0, + 793.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 854.0, + 1116.0, + 854.0, + 1116.0, + 884.0, + 1045.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 854.0, + 1329.0, + 854.0, + 1329.0, + 885.0, + 1287.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 887.0, + 654.0, + 887.0, + 654.0, + 920.0, + 548.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 887.0, + 836.0, + 887.0, + 836.0, + 920.0, + 793.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 885.0, + 1147.0, + 885.0, + 1147.0, + 918.0, + 1043.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 889.0, + 1329.0, + 889.0, + 1329.0, + 920.0, + 1287.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 921.0, + 620.0, + 921.0, + 620.0, + 951.0, + 548.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 923.0, + 831.0, + 923.0, + 831.0, + 949.0, + 795.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 923.0, + 1323.0, + 923.0, + 1323.0, + 947.0, + 1289.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 956.0, + 589.0, + 956.0, + 589.0, + 988.0, + 548.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 958.0, + 836.0, + 958.0, + 836.0, + 988.0, + 791.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 958.0, + 1010.0, + 958.0, + 1010.0, + 970.0, + 997.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 958.0, + 1092.0, + 958.0, + 1092.0, + 988.0, + 1045.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 961.0, + 1327.0, + 961.0, + 1327.0, + 987.0, + 1289.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 992.0, + 607.0, + 992.0, + 607.0, + 1023.0, + 550.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 990.0, + 836.0, + 990.0, + 836.0, + 1023.0, + 793.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 994.0, + 1128.0, + 994.0, + 1128.0, + 1023.0, + 1045.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 995.0, + 1327.0, + 995.0, + 1327.0, + 1021.0, + 1289.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1026.0, + 637.0, + 1026.0, + 637.0, + 1055.0, + 548.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1025.0, + 836.0, + 1025.0, + 836.0, + 1057.0, + 793.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1053.0, + 643.0, + 1053.0, + 643.0, + 1094.0, + 548.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1059.0, + 836.0, + 1059.0, + 836.0, + 1091.0, + 793.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1091.0, + 637.0, + 1091.0, + 637.0, + 1126.0, + 548.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1093.0, + 834.0, + 1093.0, + 834.0, + 1126.0, + 791.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1114.0, + 966.0, + 1114.0, + 966.0, + 1136.0, + 903.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1129.0, + 634.0, + 1129.0, + 634.0, + 1158.0, + 550.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1128.0, + 836.0, + 1128.0, + 836.0, + 1160.0, + 793.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1162.0, + 598.0, + 1162.0, + 598.0, + 1195.0, + 548.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1162.0, + 834.0, + 1162.0, + 834.0, + 1193.0, + 793.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1196.0, + 634.0, + 1196.0, + 634.0, + 1225.0, + 548.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1196.0, + 836.0, + 1196.0, + 836.0, + 1229.0, + 793.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1227.0, + 612.0, + 1227.0, + 612.0, + 1262.0, + 547.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1232.0, + 832.0, + 1232.0, + 832.0, + 1258.0, + 795.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1265.0, + 676.0, + 1265.0, + 676.0, + 1296.0, + 545.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1267.0, + 834.0, + 1267.0, + 834.0, + 1298.0, + 793.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1270.0, + 1082.0, + 1270.0, + 1082.0, + 1296.0, + 1046.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1267.0, + 1329.0, + 1267.0, + 1329.0, + 1298.0, + 1287.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1301.0, + 591.0, + 1301.0, + 591.0, + 1335.0, + 548.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1303.0, + 831.0, + 1303.0, + 831.0, + 1330.0, + 795.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1297.0, + 1117.0, + 1297.0, + 1117.0, + 1333.0, + 1044.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1301.0, + 1330.0, + 1301.0, + 1330.0, + 1332.0, + 1287.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1334.0, + 631.0, + 1334.0, + 631.0, + 1368.0, + 547.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1339.0, + 831.0, + 1339.0, + 831.0, + 1365.0, + 795.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1337.0, + 1164.0, + 1337.0, + 1164.0, + 1365.0, + 1045.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1335.0, + 1329.0, + 1335.0, + 1329.0, + 1366.0, + 1287.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1382.0, + 528.0, + 1382.0, + 528.0, + 1420.0, + 350.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1370.0, + 670.0, + 1370.0, + 670.0, + 1402.0, + 548.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1370.0, + 834.0, + 1370.0, + 834.0, + 1401.0, + 793.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1387.0, + 923.0, + 1387.0, + 923.0, + 1416.0, + 846.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1396.0, + 1014.0, + 1396.0, + 1014.0, + 1408.0, + 985.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1370.0, + 1098.0, + 1370.0, + 1098.0, + 1401.0, + 1045.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1370.0, + 1329.0, + 1370.0, + 1329.0, + 1401.0, + 1287.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1402.0, + 620.0, + 1402.0, + 620.0, + 1437.0, + 547.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1404.0, + 834.0, + 1404.0, + 834.0, + 1435.0, + 793.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1406.0, + 1234.0, + 1406.0, + 1234.0, + 1433.0, + 1046.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1408.0, + 1327.0, + 1408.0, + 1327.0, + 1433.0, + 1289.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1423.0, + 473.0, + 1423.0, + 473.0, + 1445.0, + 405.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1425.0, + 964.0, + 1425.0, + 964.0, + 1442.0, + 904.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1437.0, + 632.0, + 1437.0, + 632.0, + 1471.0, + 547.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1438.0, + 836.0, + 1438.0, + 836.0, + 1469.0, + 793.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1437.0, + 1127.0, + 1437.0, + 1127.0, + 1471.0, + 1043.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1442.0, + 1327.0, + 1442.0, + 1327.0, + 1468.0, + 1289.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1471.0, + 603.0, + 1471.0, + 603.0, + 1507.0, + 547.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1473.0, + 836.0, + 1473.0, + 836.0, + 1504.0, + 793.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1475.0, + 1079.0, + 1475.0, + 1079.0, + 1502.0, + 1045.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1476.0, + 1327.0, + 1476.0, + 1327.0, + 1502.0, + 1289.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1503.0, + 606.0, + 1503.0, + 606.0, + 1544.0, + 547.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1507.0, + 834.0, + 1507.0, + 834.0, + 1538.0, + 793.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1505.0, + 1168.0, + 1505.0, + 1168.0, + 1538.0, + 1045.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1511.0, + 1327.0, + 1511.0, + 1327.0, + 1536.0, + 1289.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1542.0, + 649.0, + 1542.0, + 649.0, + 1569.0, + 550.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1543.0, + 829.0, + 1543.0, + 829.0, + 1569.0, + 795.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1537.0, + 1107.0, + 1537.0, + 1107.0, + 1571.0, + 1043.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1547.0, + 1320.0, + 1547.0, + 1320.0, + 1566.0, + 1293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1574.0, + 610.0, + 1574.0, + 610.0, + 1610.0, + 548.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1579.0, + 829.0, + 1579.0, + 829.0, + 1605.0, + 795.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1576.0, + 1084.0, + 1576.0, + 1084.0, + 1609.0, + 1043.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1579.0, + 1327.0, + 1579.0, + 1327.0, + 1605.0, + 1289.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1610.0, + 653.0, + 1610.0, + 653.0, + 1643.0, + 548.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1614.0, + 829.0, + 1614.0, + 829.0, + 1639.0, + 795.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1612.0, + 1096.0, + 1612.0, + 1096.0, + 1641.0, + 1045.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1614.0, + 1327.0, + 1614.0, + 1327.0, + 1639.0, + 1291.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1646.0, + 605.0, + 1646.0, + 605.0, + 1676.0, + 550.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1648.0, + 829.0, + 1648.0, + 829.0, + 1674.0, + 795.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1681.0, + 673.0, + 1681.0, + 673.0, + 1708.0, + 552.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1682.0, + 831.0, + 1682.0, + 831.0, + 1708.0, + 795.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1713.0, + 605.0, + 1713.0, + 605.0, + 1744.0, + 550.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1717.0, + 831.0, + 1717.0, + 831.0, + 1743.0, + 795.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1734.0, + 471.0, + 1734.0, + 471.0, + 1751.0, + 434.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1734.0, + 964.0, + 1734.0, + 964.0, + 1751.0, + 906.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1748.0, + 605.0, + 1748.0, + 605.0, + 1779.0, + 550.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1751.0, + 832.0, + 1751.0, + 832.0, + 1777.0, + 795.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1784.0, + 631.0, + 1784.0, + 631.0, + 1811.0, + 552.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1785.0, + 829.0, + 1785.0, + 829.0, + 1811.0, + 795.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.25, + 922.5, + 1123.25, + 922.5, + 1123.25, + 951.5, + 1044.25, + 951.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.25, + 1110.5, + 477.25, + 1110.5, + 477.25, + 1134.5, + 402.25, + 1134.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 858.0, + 70.0, + 858.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1891.0, + 1224.0, + 1891.0, + 1224.0, + 1934.0, + 474.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1891.0, + 1224.0, + 1891.0, + 1224.0, + 1934.0, + 475.0, + 1934.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/ryxepo0cFX/ryxepo0cFX.md b/parse/train/ryxepo0cFX/ryxepo0cFX.md new file mode 100644 index 0000000000000000000000000000000000000000..5a01967b3baeadfcef3f81991032b97536bc35eb --- /dev/null +++ b/parse/train/ryxepo0cFX/ryxepo0cFX.md @@ -0,0 +1,394 @@ +# ANTISYMMETRICRNN: A DYNAMICAL SYSTEM VIEWON RECURRENT NEURAL NETWORKS + +Bo Chang∗ University of British Columbia Vancouver, BC, Canada bchang@stat.ubc.ca + +Minmin Chen +Google Brain +Mountain View, CA, USA minminc@google.com + +Eldad Haber University of British Columbia Vancouver, BC, Canada haber@math.ubc.ca + +Ed H. Chi +Google Brain +Mountain View, CA, USA edchi@google.com + +# ABSTRACT + +Recurrent neural networks have gained widespread use in modeling sequential data. Learning long-term dependencies using these models remains difficult though, due to exploding or vanishing gradients. In this paper, we draw connections between recurrent networks and ordinary differential equations. A special form of recurrent networks called the AntisymmetricRNN is proposed under this theoretical framework, which is able to capture long-term dependencies thanks to the stability property of its underlying differential equation. Existing approaches to improving RNN trainability often incur significant computation overhead. In comparison, AntisymmetricRNN achieves the same goal by design. We showcase the advantage of this new architecture through extensive simulations and experiments. AntisymmetricRNN exhibits much more predictable dynamics. It outperforms regular LSTM models on tasks requiring long-term memory and matches the performance on tasks where short-term dependencies dominate despite being much simpler. + +# 1 INTRODUCTION + +Recurrent neural networks (RNNs) (Rumelhart et al., 1986; Elman, 1990) have found widespread use across a variety of domains from language modeling (Mikolov et al., 2010; Kiros et al., 2015; Jozefowicz et al., 2016) and machine translation (Bahdanau et al., 2014) to speech recognition (Graves et al., 2013) and recommendation systems (Hidasi et al., 2015; Wu et al., 2017). Modeling complex temporal dependencies in sequential data using RNNs, especially the long-term dependencies, remains an open challenge. The main difficulty arises as the error signal back-propagated through time (BPTT) suffers from exponential growth or decay, a dilemma commonly referred to as exploding or vanishing gradient (Pascanu et al., 2012; Bengio et al., 1994). + +Vanilla RNNs as originally proposed are particularly prone to these issues and are rarely used in practice. Gated variants of RNNs, such as long short-term memory (LSTM) networks (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) that feature various forms of “gating” are proposed to alleviate these issues. The gates allow information to flow from inputs at any previous time steps to the end of the sequence more easily, partially addressing the vanishing gradient problem (Collins et al., 2016). In practice, these models must be paired with techniques such as normalization layers (Ioffe & Szegedy, 2015; Ba et al., 2016) and gradient clipping (Pascanu et al., 2013) to achieve good performance. + +Identity and orthogonal initialization is another proposed solution to the exploding or vanishing gradient problem of deep neural networks (Le et al., 2015; Mishkin & Matas, 2015; Saxe et al., 2013; Chen et al., 2018a). Recently, Arjovsky et al. (2016); Wisdom et al. (2016); Hyland & Ratsch ¨ (2017); Xie et al. (2017); Zhang et al. (2018a) advocate going beyond initialization and forcing the weight matrices to be orthogonal throughout the entire learning process. However, some of these approaches come with significant computational overhead and reportedly hinder representation power of these models (Vorontsov et al., 2017). Moreover, orthogonal weight matrices alone do not prevent exploding and vanishing gradients, due to the nonlinear nature of deep neural networks as shown in (Pennington et al., 2017). + +Here we offer a new perspective on the trainability of RNNs from the dynamical system viewpoint. While exploding gradient is a manifestation of the instability of the underlying dynamical system, vanishing gradient results from a lossy system, properties that have been widely studied in the dynamical system literature (Haber & Ruthotto, 2017; Laurent & von Brecht, 2017). The main contributions of the work are: + +• We draw connections between RNNs and the ordinary differential equation theory and design new recurrent architectures by discretizing ODEs. +• The stability of the ODE solutions and the numerical methods for solving ODEs lead us to design a special form of RNNs, which we name AntisymmetricRNN, that can capture longterm dependencies in the inputs. The construction of the model is much simpler compared to the existing methods for improving RNN trainability. +We conduct extensive simulations and experiments to demonstrate the benefits of this new RNN architecture. AntisymmetricRNN exhibits well-behaved dynamics and outperforms the regular LSTM model on tasks requiring long-term memory, and matches its performance on tasks where short-term dependencies dominate with much fewer parameters. + +# 2 RELATED WORK + +Trainability of RNNs. Capturing long-term dependencies using RNNs has been a long-standing research topic with various approaches proposed. The first group of approaches mitigates the exploding or vanishing gradient issues by introducing some forms of gating. Long short-term memory networks (LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) are the most prominent models along this line of work. Parallel efforts include designing special neural architectures, such as hierarchical RNNs (El Hihi & Bengio, 1996), recursive neural networks (Socher et al., 2011), attention networks (Bahdanau et al., 2014), dilated convolutions (Yu & Koltun, 2015), recurrent batch normalization (Cooijmans et al., 2017), residual RNNs (Yue et al., 2018), and Fourier recurrent units (Zhang et al., 2018b). These, however, are fundamentally different networks with different tradeoffs. + +Another direction is to constrain the weight matrices of an RNN so that the back-propagated error signal is well conditioned, in particular, the input-output Jacobian having unitary singular values. Le et al. (2015); Mikolov et al. (2014); Mishkin & Matas (2015) propose the use of identity or orthogonal matrix to initialize the recurrent weight matrix. Followup works further constrain the weight matrix throughout the entire learning process either through re-parametrization (Arjovsky et al., 2016), geodesic gradient descent on the Stiefel manifold (Wisdom et al., 2016; Vorontsov et al., 2017), or constraining the singular values (Jose et al., 2017; Kanai et al., 2017; Zhang et al., 2018a). It is worth noting that, orthogonal weights by themselves do not guarantee unitary Jacobians. Nonlinear activations still cause the gradients to explode or vanish. Contractive maps such as sigmoid and hyperbolic tangent lead to vanishing gradients. Chen et al. (2018a) offer an initialization scheme taking into account the nonlinearity. However, the theory developed relies heavily on the random matrix assumptions, which only hold at the initialization point of training. Although it has been shown to predict trainability beyond initialization. + +Dynamical systems view of recurrent networks. Connections between dynamical systems and RNNs have not been well explored. Laurent & von Brecht (2017) study the behavior of dynamical systems induced by recurrent networks, and show that LSTMs and GRUs exhibit chaotic dynamics in the absence of input data. They propose a simplified gated RNN named the chaos free network (CFN), that has non-chaotic dynamics and achieves comparable performance to LSTMs and GRUs on language modeling. Tallec & Ollivier (2018) formulate RNNs as a time-discretized version of ODE and show that time invariance leads to gate-like mechanisms in RNNs. With this formulation, the authors propose an initialization scheme by setting the initial gate bias according to the range of time dependencies to capture. + +Dynamical systems view of residual networks. Another line of work that is closely related to ours is the dynamical systems view on residual networks (ResNets) (He et al., 2016). Haber & Ruthotto (2017); Chang et al. (2018a;b); Lu et al. (2018) propose to interpret ResNets as ordinary differential equations (ODEs), under which learning the network parameters is equivalent to solve a parameter estimation problem involving the ODE. Chen et al. (2018b) parameterize the continuous dynamics of hidden units using an ODE specified by a neural network. Stable and reversible architectures are developed (Haber & Ruthotto, 2017; Chang et al., 2018a) from this viewpoint, which form the basis of our proposed recurrent networks. + +# 3 ANTISYMMETRICRNNS + +# 3.1 ORDINARY DIFFERENTIAL EQUATIONS + +We first give a brief overview of the ordinary differential equations (ODEs), a special kind of dynamical systems that involves a single variable, time $t$ in this case. Consider the first-order ODE + +$$ +\begin{array} { r } { \pmb { h } ^ { \prime } ( t ) = f ( \pmb { h } ( t ) ) , } \end{array} +$$ + +for time $t \geq 0$ , where $\ b { h } ( t ) \in \mathbb { R } ^ { n }$ and $f : \mathbb { R } ^ { n } \mathbb { R } ^ { n }$ . Together with a given initial condition $\pmb { h } ( 0 )$ , the problem of solving for the function $h ( t )$ is called the initial value problem. For most ODEs, it is impossible to find an analytic solution. Instead, numerical methods relying on discretization are commonly used to approximate the solution. The forward Euler method is probably the best known and simplest numerical method for approximation. One way to derive the forward Euler method is to approximate the derivative on the left-hand side of Equation 1 by a finite difference, and evaluate the right-hand side at $\boldsymbol { h } _ { t - 1 }$ : + +$$ +\frac { h _ { t } - h _ { t - 1 } } { \epsilon } = f ( h _ { t - 1 } ) . +$$ + +Note that for the approximation to be valid, $\epsilon > 0$ should be small by the definition of the derivative. One can easily prove that the forward Euler method converges linearly w.r.t. $\epsilon$ , assuming $f ( h )$ is Lipschitz continuous on $^ { h }$ and that the eigenvalues of the Jacobian of $f$ have negative real parts. Rearranging it, we have the forward Euler method for a given initial value + +$$ +\begin{array} { r } { h _ { t } = h _ { t - 1 } + \epsilon f ( h _ { t - 1 } ) , \quad h _ { 0 } = h ( 0 ) . } \end{array} +$$ + +Geometrically, each forward Euler step takes a small step along the tangential direction to the exact trajectory starting at $h _ { t - 1 }$ . As a result, $\epsilon$ is usually referred to as the step size. + +As an example, consider the ODE + +$$ +\pmb { h } ^ { \prime } ( t ) = \operatorname { t a n h } \left( \pmb { W } \pmb { h } ( t ) \right) . +$$ + +The forward Euler method approximates the solution to the ODE iteratively as + +$$ +h _ { t } = h _ { t - 1 } + \epsilon \operatorname { t a n h } ( W h _ { t - 1 } ) , +$$ + +which can be regarded as a recurrent network without input data. Here $h _ { t }$ is the hidden state at the $t$ -th step, $W$ is a model parameter, and $\epsilon$ is a hyperparameter. This provides a general framework of designing recurrent network architectures by discretizing ODEs. As a result, we can design ODEs that possess desirable properties by exploiting the theoretical successes of dynamical systems, and the resulting recurrent networks will inherit these properties. Stability is one of the important properties to consider, which we will discuss in the next section. It is worth mentioning that the “skip connection” in this architecture resembles the residual RNN (Yue et al., 2018) and the Fourier RNN (Zhang et al., 2018b), which are proposed to mitigate the vanishing and exploding gradient issues. + +# 3.2 STABILITY OF ORDINARY DIFFERENTIAL EQUATIONS: ANTISYMMETRICRNNS + +In numerical analysis, stability theory addresses the stability of solutions of ODEs under small perturbations of initial conditions. In this section, we are going to establish the connections between the stability of an ODE and the trainability of the RNNs by discretizing the ODE, and design a new RNN architecture that is stable and capable of capturing long-term dependencies. + +An ODE solution is stable if the long-term behavior of the system does not depend significantly on the initial conditions. A formal definition is given as follows. + +Definition 1. (Stability) $A$ solution $h ( t )$ of the ODE in Equation $I$ with initial condition $\pmb { h } ( 0 )$ is stable if for any $\epsilon > 0$ , there exists a $\delta > 0$ such that any other solution $\tilde { h } ( t )$ of the ODE with initial condition $\tilde { \pmb { h } } ( 0 )$ satisfying $| h ( 0 ) - \tilde { h } ( 0 ) | \leq \delta$ also satisfies $| h ( t ) - \tilde { h } ( t ) | \leq \epsilon ,$ , for all $t \geq 0$ . + +In plain language, given a small perturbation of size $\delta$ of the initial state, the effect of the perturbation on the subsequent states is no bigger than $\epsilon$ . The eigenvalues of the Jacobian matrix play a central role in stability analysis. Let $\bar { \ b { J } } ( \bar { t } ) \in \mathbb { R } ^ { n \times n }$ be the Jacobian matrix of $f$ , and $\lambda _ { i } ( \cdot )$ denotes the $i$ -th eigenvalue. + +Proposition 1. The solution of an ODE is stable $i f$ + +$$ +\operatorname* { m a x } _ { i = 1 , 2 , \ldots , n } R e ( \lambda _ { i } ( \pmb { J } ( t ) ) ) \leq 0 , \quad \forall t \geq 0 , +$$ + +where $R e ( \cdot )$ denotes the real part of a complex number. + +A more precise proposition that involves the kinematic eigenvalues of $\mathbf { } J ( t )$ is given in Ascher et al. (1994). Stability alone, however, does not suffice to capture long-term dependencies. As argued in Haber & Ruthotto (2017), $R e ( \lambda _ { i } ( J ( t ) ) ) \ll 0$ results in a lossy system; the energy or signal in the initial state is dissipated over time. Using such an ODE as the underlying dynamical system of a recurrent network will lead to catastrophic forgetting of the past inputs during the forward propagation. Ideally, + +$$ +R e ( \lambda _ { i } ( \pmb { J } ( t ) ) ) \approx 0 , \quad \forall i = 1 , 2 , \ldots , n , +$$ + +a condition we referred to as the critical criterion. Under this condition, the system preserves the long-term dependencies of the inputs while being stable. + +Stability and Trainability. Here we connect the stability of the ODE to the trainability of the RNN produced by discretization. Inherently, the stability analysis studies the sensitivity of a solution, i.e., how much a solution of the ODE would change w.r.t. changes in the initial condition. Differentiating Equation 1 with respect to the initial state $\bar { \pmb h } ( 0 )$ on both sides, we have the following sensitivity analysis (with chain rules): + +$$ +\frac { \mathrm { d } } { \mathrm { d } t } \left( \frac { \partial \pmb { h } ( t ) } { \partial \pmb { h } ( 0 ) } \right) = \pmb { J } ( t ) \frac { \partial \pmb { h } ( t ) } { \partial \pmb { h } ( 0 ) } . +$$ + +For notational simplicity, let us define $\pmb { A } ( t ) = \partial \pmb { h } ( t ) / \partial \pmb { h } ( 0 )$ , then we have + +$$ +\frac { \mathrm { d } \pmb { A } ( t ) } { \mathrm { d } t } = \pmb { J } ( t ) \pmb { A } ( t ) , \quad \pmb { A } ( 0 ) = \pmb { I } . +$$ + +Note that this is a linear ODE with solution ${ \pmb A } ( t ) = e ^ { { \pmb J } \cdot t } = P e ^ { { \pmb \Lambda } ( J ) t } { \pmb P } ^ { - 1 }$ , assuming the Jacobian $\textbf { { J } }$ does not vary or vary slowly over time (We will later show this is a valid assumption). Here $\pmb { \Lambda } ( J )$ denotes the eigenvalues of $\textbf { { J } }$ , and the columns of $_ { r }$ are the corresponding eigenvectors. See Appendix A for a more detailed derivation. In the language of RNNs, $A ( t )$ is the Jacobian of a hidden state $h _ { t }$ with respect to the initial hidden state $h _ { 0 }$ . When the critical criterion is met, i.e., $R e ( \pmb { \Lambda } ( \pmb { J } ) ) \approx 0$ , the magnitude of $A ( t )$ is approximately constant in time, thus no exploding or vanishing gradient problems. + +With the connection established, we next design ODEs that satisfy the critical criterion. An antisymmetric matrix is a square matrix whose transpose equals its negative; i.e., a matrix $M \in \mathbb { R } ^ { n \times n }$ is antisymmetric if $M ^ { T } = - M$ . An interesting property of an antisymmetric matrix $M$ is that, the eigenvalues of $M$ are all imaginary: + +$$ +R e ( \lambda _ { i } ( M ) ) = 0 , \quad \forall i = 1 , 2 , \ldots , n , +$$ + +making antisymmetric matrices a suitable building block of a stable recurrent architecture. + +Consider the following ODE + +$$ +\begin{array} { r } { \pmb { h } ^ { \prime } ( t ) = \operatorname { t a n h } \left( ( \pmb { W } _ { h } - \pmb { W } _ { h } ^ { T } ) \pmb { h } ( t ) + \pmb { V } _ { h } \pmb { x } ( t ) + \pmb { b } _ { h } \right) , } \end{array} +$$ + +where $\ b { h } ( t ) \in \mathbb { R } ^ { n }$ , $\pmb { x } ( t ) \in \mathbb { R } ^ { m }$ , $\boldsymbol { W _ { h } } \in \mathbb { R } ^ { n \times n }$ , $V _ { h } \in \mathbb { R } ^ { n \times m }$ and $b _ { h } \in \mathbb { R } ^ { n }$ . Note that $W _ { h } - W _ { h } ^ { T }$ is an antisymmetric matrix. The Jacobian matrix of the right hand side is + +$$ +\begin{array} { r } { \boldsymbol J ( t ) = \mathrm { d i a g } \left[ \operatorname { t a n h } ^ { \prime } \left( ( \boldsymbol W _ { h } - \boldsymbol W _ { h } ^ { T } ) \boldsymbol h ( t ) + \boldsymbol V _ { h } \boldsymbol x ( t ) + \boldsymbol b \right) \right] ( \boldsymbol W _ { h } - \boldsymbol W _ { h } ^ { T } ) , } \end{array} +$$ + +whose eigenvalues are all imaginary, i.e., $R e ( \lambda _ { i } ( \pmb { J } ( t ) ) ) = 0 , \forall i = 1 , 2 , \ldots , n$ . In other words, it satisfies the critical criterion in Equation 5. See Appendix B for a proof. The entries of the diagonal matrix in Equation 9 are the derivatives of the activation function, which are bounded in $[ 0 , { \bar { 1 } } ]$ for sigmoid and hyperbolic tangent. In other words, the Jacobian matrix $\mathbf { } J ( t )$ changes smoothly over time. Furthermore, since the input and bias term only affect the bounded diagonal matrix, their effect on the stability of the ODE is insignificant compared with the antisymmetric matrix. + +A naive forward Euler discretization of the ODE in Equation 8 leads to the following recurrent network we refer to as the AntisymmetricRNN. + +$$ +\begin{array} { r } { \boldsymbol { h } _ { t } = \boldsymbol { h } _ { t - 1 } + \epsilon \operatorname { t a n h } \left( ( W _ { h } - W _ { h } ^ { T } ) h _ { t - 1 } + V _ { h } \boldsymbol { x } _ { t } + b _ { h } \right) , } \end{array} +$$ + +where $\ b { h _ { t } } ~ \in ~ \mathbb { R } ^ { n }$ is the hidden state at time $t$ ; $\pmb { x } _ { t } \in \mathbb { R } ^ { m }$ is the input at time $t$ ; $\boldsymbol { W } _ { h } ~ \in ~ \mathbb { R } ^ { n \times n }$ , $V _ { h } \in \mathbb { R } ^ { n \times m }$ and $b _ { h } \in \mathbb { R } ^ { n }$ are the parameters of the network; $\epsilon > 0$ is a hyperparameter that represents the step size. + +Note that the antisymmetric matrix $W _ { h } \mathrm { ~ - ~ } W _ { h } ^ { T }$ only has $n ( n - 1 ) / 2$ degrees of freedom. When implementing the model, $W _ { h }$ can be parameterized as a strictly upper triangular matrix, i.e., an upper triangular matrix of which the diagonal entries are all zero. This makes the proposed model more parameter efficient than an unstructured RNN model of the same size of hidden states. + +# 3.3 STABILITY OF THE FORWARD EULER METHOD: DIFFUSION + +Given a stable ODE, its forward Euler discretization can still be unstable, as illustrated in Section 4. The stability condition of the forward Euler method has been well studied and summarized in the following proposition. + +Proposition 2. (Stability of the forward Euler method) The forward propagation in Equation 10 is stable $i f$ + +$$ +\operatorname* { m a x } _ { i = 1 , 2 , \ldots , n } | 1 + \epsilon \lambda _ { i } ( J _ { t } ) | \leq 1 , +$$ + +where $| \cdot |$ denote the absolute value or modulus of a complex number and $\scriptstyle { J _ { t } }$ is the Jacobian matrix evaluated at $\boldsymbol { h } _ { t }$ . + +See Ascher & Petzold (1998) for a proof. The ODE as defined in Equation 8 is however incompatible with the stability condition of the forward Euler method. Since $\lambda _ { i } ( J _ { t } )$ , the eigenvalues of the Jacobian matrix, are all imaginary, $\left| 1 + \epsilon \lambda _ { i } ( J _ { t } ) \right|$ is always greater than 1, which makes the AntisymmetricRNN defined in Equation 10 unstable when solved using forward Euler. + +One easy way to fix it is to add diffusion to the system by subtracting a small number $\gamma > 0$ from the diagonal elements of the transition matrix. The model thus becomes + +$$ +\begin{array} { r } { h _ { t } = h _ { t - 1 } + \epsilon \operatorname { t a n h } \big ( ( W _ { h } - W _ { h } ^ { T } - \gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \big ) , } \end{array} +$$ + +where $\pmb { I }$ is the identity matrix of size $n$ and $\gamma > 0$ is a hyperparameter that controls the strength of diffusion. By doing so, the eigenvalues of the Jacobian have slightly negative real parts. This modification improves the stability of the numerical method as demonstrated in Section 4. + +# 3.4 GATING MECHANISM + +Gating is commonly employed in RNNs. Each gate is often modeled as a single layer network taking the previous hidden state $h _ { t - 1 }$ and data $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } _ { t } }$ as inputs, followed by a sigmoid activation. As an example, LSTM cells make use of three gates, a forget gate, an input gate, and an output gate. A systematic ablation study suggests that some of the gates are crucial to the performance of LSTM (Jozefowicz et al., 2015). + +Gating can be incorporated into AntisymmetricRNN as well. However, it should be done carefully so that the critical condition in Equation 5 still holds. We propose the following modification to + +AntisymmetricRNN, which adds an input gate ${ \boldsymbol { z } } _ { t }$ to control the flow of information into the hidden states: + +$$ +\begin{array} { r l } & { z _ { t } = \sigma \left( ( W _ { h } - W _ { h } ^ { T } - \gamma I ) h _ { t - 1 } + V _ { z } x _ { t } + b _ { z } \right) , } \\ & { h _ { t } = h _ { t - 1 } + \epsilon z _ { t } \circ \operatorname { t a n h } \left( ( W _ { h } - W _ { h } ^ { T } - \gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \right) , } \end{array} +$$ + +where $\sigma$ denotes the sigmoid function and $\circ$ denotes the Hadamard product. + +The effect of ${ \boldsymbol { z } } _ { t }$ resembles the input gate in LSTM and the update gate in GRU. By sharing the antisymmetric weight matrix, the number of model parameters only increases slightly, instead of being doubled. More importantly, the Jacobian matrix of this gated model has a similar form as that in Equation 9, that is, a diagonal matrix multiplied by an antisymmetric matrix (ignoring diffusion). As a result, the real parts of the eigenvalues of the Jacobian matrix are still close to zero, and the critical criterion remains satisfied. + +# 4 SIMULATION + +![](images/5a858e81e3967a8c614f2927716aa5f9ff6bf81f6c10c6a13a134af61b8531b4.jpg) +Figure 1: Visualization of the dynamics of RNNs and RNNs with feedback using different weight matrices. + +Adopting the visualization technique used by Laurent & von Brecht (2017) and Haber & Ruthotto (2017), we study the behavior of two-dimensional vanilla RNNs (left) and RNNs with feedback (right) in the absence of input data and bias: + +$$ +\operatorname { \mathrm { = \ t a n h } } ( W h _ { t - 1 } ) , \qquad { \mathrm { f e e d b a c k } } ; h _ { t } = h _ { t - 1 } + \epsilon \operatorname { t a n h } ( W h _ { t - 1 } ) . +$$ + +Here $\boldsymbol { h } _ { t } \in \mathbb { R } ^ { 2 }$ and $1 \leq t \leq T$ . We arbitrarily choose three initial states: $( 0 , 0 . 5 ) , ( - 0 . 5 , - 0 . 5 )$ and $( 0 . 5 , - 0 . 7 5 )$ , and apply the corresponding RNN recurrence. Figure 1 plots the progression of the states $h _ { t }$ of vanilla RNNs (first row) and RNNs with feedback (second row) parameterized by different transition matrices $W$ . In each figure, more translucent points represent earlier time steps. The number of total time steps $T = 5 0$ . + +Figure 1(a) corresponds to a random weight matrix, where the entries are independent and standard Gaussian. The three initial points (shown in stars) converge to two fixed points on the boundary. Since the weight matrix is unstructured, the behavior is unpredictable as expected. More examples with different weight matrices are shown in Appendix D. Figure 1(b) shows the behavior of the identity weight matrix. Since $\operatorname { t a n h } ( { \cdot } )$ is a contractive mapping, the origin is the unique fixed point. Figure 1(c) and (d) correspond to orthogonal weight matrices that represent reflection and rotation transforms respectively. A two-dimensional orthogonal matrix is either a reflection or a rotation transform; the determinant of the matrix is 1 or $- 1$ respectively. Even though the weight matrix is orthogonal, the states all converge to the origin because of the derivative of the activation function $0 \leq \mathrm { t a n h } ^ { \prime } ( W h _ { t - 1 } ) \leq 1$ . + +In the case of RNNs with feedback, the trajectory of the hidden states is predictable based on the eigenvalues of the weight matrix $W$ .We consider the following four weight matrices that correspond to Figure 1(e)-(f) respectively: + +$$ +W _ { + } = \left( \begin{array} { c c } { { 2 } } & { { - 2 } } \\ { { 0 } } & { { 2 } } \end{array} \right) , W _ { - } = \left( \begin{array} { c c } { { - 2 } } & { { 2 } } \\ { { 0 } } & { { - 2 } } \end{array} \right) , W _ { 0 } = \left( \begin{array} { c c } { { 0 } } & { { - 2 } } \\ { { 2 } } & { { 0 } } \end{array} \right) , W _ { \mathrm { d i f f } } = \left( \begin{array} { c c } { { - 0 . 1 5 } } & { { - 2 } } \\ { { 2 } } & { { - 0 . 1 5 } } \end{array} \right) . +$$ + +We also overlay the vector field that represents the underlying ODE. The step size is set to $\epsilon = 0 . 1$ + +For Figure 1(e) and (f), the eigenvalues are $\lambda _ { 1 } ( W _ { + } ) = \lambda _ { 2 } ( W _ { + } ) = 2$ and $\lambda _ { 1 } ( { \cal W } _ { - } ) = \lambda _ { 2 } ( { \cal W } _ { - } ) =$ $- 2$ . As a result, the hidden states are moving away from the origin and towards the origin respectively. Figure $1 ( \mathrm { g } )$ corresponds to the antisymmetric weight matrix $W _ { 0 }$ , whose eigenvalues are purely imaginary: $\lambda _ { 1 } ( W _ { 0 } ) = 2 i$ , $\lambda _ { 2 } ( \mathbf { W } _ { 0 } ) = - 2 i$ . In this case, the vector field is circular; a state moves around the origin without exponentially increasing or decreasing its norm. However, on closer inspection, the trajectories are actually outward spirals. This is because, at each time step, the state moves along the tangential direction by a small step, which increases the distance from the origin and leads to numerical instability. It is the behavior characterized by Proposition 2. This issue can be mitigated by subtracting a small diffusion term $\gamma$ from the diagonal elements of the weight matrix. We choose $\gamma = 0 . 1 5$ and the weight matrix $W _ { \mathrm { d i f f } }$ has eigenvalues of $\lambda _ { 1 } ( W _ { \mathrm { d i f f } } ) = - 0 . 1 5 + 2 i$ , $\lambda _ { 2 } ( W _ { \mathrm { d i f f } } ) = - 0 . 1 5 - 2 i$ . Figure 1(h) shows the effect of the diffusion terms. The vector field is slightly tilting toward the origin and the trajectory maintains a constant distance from the origin. + +These simulations show that the hidden states of an AntisymmetricRNN (Figure $1 ( \mathrm { g } )$ and (h)) have predictable dynamics. It achieves the desirable behavior, without the complication of maintaining an orthogonal or unitary matrix as in Figure 1(d), which still suffers from vanishing gradients due to the contraction of the activation function. + +# 5 EXPERIMENTS + +The performance of the proposed antisymmetric networks is evaluated on four image classification tasks with long-range dependencies. The classification is done by feeding pixels of the images as a sequence to RNNs and sending the last hidden state $h _ { T }$ of the RNNs into a fully-connected layer and a softmax function. We use the cross-entropy loss and SGD with momentum and Adagrad (Duchi et al., 2011) as optimizers. More experimental details can be found in Appendix C. In this section, AntisymmetricRNN denotes the model with diffusion in Equation 12, and AntisymmetricRNN w/ gating represents the model in Equation 13. + +# 5.1 PIXEL-BY-PIXEL MNIST + +In the first task, we learn to classify the MNIST digits by pixels (LeCun et al., 1998). This task was proposed by Le et al. (2015) and used as a benchmark for learning long term dependencies. MNIST images are grayscale with $2 8 \times 2 8$ pixels. The 784 pixels are presented sequentially to the recurrent net, one pixel at a time in scanline order (starting at the top left corner of the image and ending at the bottom right corner). In other words, the input dimension $m = 1$ and number of time steps $T = 7 8 4$ . The pixel-by-pixel MNIST task is to predict the digit of the MNIST image after seeing all 784 pixels. As a result, the network has to be able to learn the long-range dependencies in order to correctly classify the digit. To make the task even harder, the MNIST pixels are shuffled using a fixed random permutation. It creates non-local long-range dependencies among pixels in an image. This task is referred to as the permuted pixel-by-pixel MNIST. + +Table 1: Evaluation accuracy on pixel-by-pixel MNIST and permuted MNIST. + +
methodMNISTpMNIST#units# params
LSTM (Arjovsky et al., 2016)197.3%92.6%12868k
FC uRNN(Wisdom et al., 2016)92.8%92.1%11616k
FC uRNN (Wisdom et al., 2016)96.9%94.1%512270k
Soft orthogonal (Vorontsov et al., 2017)94.1%91.4%12818k
KRU (Jose et al., 2017)96.4%94.5%51211k
AntisymmetricRNN98.0%95.8%12810k
AntisymmetricRNN w/ gating98.8%93.1%12810k
+ +Table 1 summarizes the performance of our methods and the existing methods. On both tasks, the proposed AntisymmetricRNNs outperform the regular LSTM model using only $1 / 7$ of parameters. Imposing orthogonal weights (Arjovsky et al., 2016) produces worse results, which corroborates with the existing study showing that such constraints restrict the capacity of the learned model. Softening the orthogonal weights constraints (Wisdom et al., 2016; Vorontsov et al., 2017; Jose et al., 2017) leads to slightly improved performance. AntisymmetricRNNs outperform these methods by a large margin, without the computational overhead to enforce orthogonality. + +# 5.2 PIXEL-BY-PIXEL CIFAR-10 + +To test our methods on a larger dataset, we conduct experiments on pixel-by-pixel CIFAR-10. The CIFAR-10 dataset contains $3 2 \times 3 2$ colour images in 10 classes (Krizhevsky & Hinton, 2009). Similar to pixel-by-pixel MNIST, we feed the three channels of a pixel into the model at each time step. The input dimension $m = 3$ and number of time steps $T = 1 0 2 4$ . + +The results are shown in Table 2. The AntisymmetricRNN performance is on par with the LSTM, and AntisymmetricRNN with gating is slightly better than LSTM, both using only about half of the parameters of the LSTM model. Further investigation shows that the task is mostly dominated by short term dependencies. LSTM can achieve about $4 8 . 3 \%$ classification accuracy by only seeing the last 8 rows of CIFAR-10 images 2. + +Table 2: Evaluation accuracy on pixel-by-pixel CIFAR-10 and noise padded CIFAR-10. + +
methodpixel-by-pixelnoise padded#units# params
LSTM59.7%11.6%12869k
Ablation model54.6%46.2%19642k
AntisymmetricRNN58.7%48.3%25636k
AntisymmetricRNN w/ gating62.2%54.7%25637k
+ +# 5.3 NOISE PADDED CIFAR-10 + +To introduce more long-range dependencies to the pixel-by-pixel CIFAR-10 task, we define a more challenging task call the noise padded CIFAR-10, inspired by the noise padded experiments in Chen et al. (2018a). Instead of feeding in one pixel at one time, we input each row of a CIFAR-10 image at every time step. After the first 32 time steps, we input independent standard Gaussian noise for the remaining time steps. Since a CIFAR-10 image is of size 32 with three RGB channels, the input dimension is $m = 9 6$ . The total number of time steps is set to $T = 1 0 0 0$ . In other words, only the first 32 time steps of input contain salient information, all remaining 968 time steps are merely random noise. For a model to correctly classify an input image, it has to remember the information from a long time ago. This task is conceptually more difficult than the pixel-by-pixel CIFAR-10, although the total amount of signal in the input sequence is the same. The results are shown in Table 2. LSTM fails to train at all on this task while our proposed methods perform reasonably well with fewer parameters. + +![](images/dc62088bb56c80add338f8f3c68221e98d375809570dee8a3113a566b93497bc.jpg) +Figure 2: Mean and standard deviation of eigenvalues of the end-to-end Jacobian matrix in AntisymmetricRNNs with different diffusion constants and LSTMs, trained on the noise padded CIFAR-10. + +To verify that AntisymmetricRNNs indeed mitigate the exploding/vanishing gradient issues, we conduct an additional set of experiments varying the length of noise padding so that the total time steps $T \in \{ 1 0 0 , 2 0 0 , 4 0 0 , 8 0 0 \}$ . LSTMs and AntisymmetricRNNs with different diffusion constants $\gamma \in \{ 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 , 5 , 1 0 \}$ are trained on these tasks. Figure 2 visualizes the mean and standard deviation of the eigenvalues of the end-to-end Jacobian matrices for these networks. Unitary eigenvalues, i.e., mean close to 1 and standard deviation close to 0, indicate non-exploding and non-vanishing gradients. As shown in the figure, the eigenvalues for LSTMs quickly approaches zero as time steps increase, indicating vanishing gradients during back-propagation. This explains why LSTMs fail to train at all on this task. AntisymmetricRNNs with a broad range of diffusion constants $\gamma$ , on the other hand, have eigenvalues centered around 1. It is worth noting though as the diffusion constant increases to large values, AntisymmetricRNNs run into vanishing gradients as well. The diffusion constant $\gamma$ plays an important role in striking a balance between the stability of discretization and capturing long-term dependencies. + +# 5.4 ABLATION STUDY + +For the CIFAR-10 experiments, we have also conducted an ablation study to further demonstrate the effect of antisymmetric weight matrix. The ablation model in Table 2 refers to the model that replaces the antisymmetric weight matrices in Equation 13 with unstructured weight matrices. As shown in Table 2, without the antisymmetric parametrization, the performance on both pixel-bypixel and noise padded CIFAR-10 is worse. + +It is worth mentioning that the antisymmetric formulation is a sufficient condition of stability, not necessary. There are possibly other conditions that lead to stability as well as suggested in Chen et al. (2018a), which could explain the modest degradation in the ablation results. + +# 6 CONCLUSION + +In this paper, we present a new perspective on the trainability of RNNs from the dynamical system viewpoint. We draw connections between RNNs and the ordinary differential equation theory and design new recurrent architectures by discretizing ODEs. This new view opens up possibilities to exploit the computational and theoretical success from dynamical systems to understand and improve the trainability of RNNs. We also propose the AntisymmetricRNN, which is a discretization of ODEs that satisfy the critical criterion. Besides its appealing theoretical properties, our models have demonstrated competitive performance over strong recurrent baselines on a comprehensive set of benchmark tasks. + +By establishing a link between recurrent networks and ordinary differential equations, we anticipate that this work will inspire future research in both communities. An important item of future work is to investigate other stable ODEs and numerical methods that lead to novel and well-conditioned recurrent architectures. + +# REFERENCES + +Martin Arjovsky, Amar Shah, and Yoshua Bengio. Unitary evolution recurrent neural networks. In ICML, pp. 1120–1128, 2016. + +Uri M Ascher and Linda R Petzold. Computer methods for ordinary differential equations and differential-algebraic equations, volume 61. Siam, 1998. + +Uri M Ascher, Robert MM Mattheij, and Robert D Russell. Numerical solution of boundary value problems for ordinary differential equations, volume 13. Siam, 1994. + +Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. + +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014. + +Yoshua Bengio, Patrice Simard, and Paolo Frasconi. Learning long-term dependencies with gradient descent is difficult. IEEE transactions on neural networks, 5(2):157–166, 1994. + +Bo Chang, Lili Meng, Eldad Haber, Lars Ruthotto, David Begert, and Elliot Holtham. Reversible architectures for arbitrarily deep residual neural networks. In AAAI, 2018a. + +Bo Chang, Lili Meng, Eldad Haber, Frederick Tung, and David Begert. Multi-level residual networks from dynamical systems view. In ICLR, 2018b. + +Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field theory of RNNs: Gating enables signal propagation in recurrent neural networks. In ICML, pp. 873–882, 2018a. + +Tian Qi Chen, Yulia Rubanova, Jesse Bettencourt, and David Duvenaud. Neural ordinary differential equations. arXiv preprint arXiv:1806.07366, 2018b. + +Kyunghyun Cho, Bart van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder–decoder for statistical machine translation. In EMNLP, pp. 1724–1734, 2014. + +Jasmine Collins, Jascha Sohl-Dickstein, and David Sussillo. Capacity and trainability in recurrent neural networks. ICLR, 2016. + +Tim Cooijmans, Nicolas Ballas, Cesar Laurent, C¸ a ´ glar G ˘ ulc¸ehre, and Aaron Courville. Recurrent ¨ batch normalization. In ICLR, 2017. + +John Duchi, Elad Hazan, and Yoram Singer. Adaptive subgradient methods for online learning and stochastic optimization. Journal of Machine Learning Research, 12(Jul):2121–2159, 2011. + +Salah El Hihi and Yoshua Bengio. Hierarchical recurrent neural networks for long-term dependencies. In NIPS, pp. 493–499, 1996. + +Jeffrey L Elman. Finding structure in time. Cognitive science, 14(2):179–211, 1990. + +Alex Graves, Abdel-rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recurrent neural networks. In ICASSP, pp. 6645–6649. IEEE, 2013. + +Eldad Haber and Lars Ruthotto. Stable architectures for deep neural networks. Inverse Problems, 34(1):014004, 2017. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, pp. 770–778, 2016. + +Balazs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk. Session-based rec-´ ommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939, 2015. + +Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. + +Stephanie L Hyland and Gunnar Ratsch. Learning unitary operators with help from u (n). In ¨ AAAI, pp. 2050–2058, 2017. +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In ICML, pp. 448–456, 2015. +Cijo Jose, Moustpaha Cisse, and Francois Fleuret. Kronecker recurrent units. arXiv preprint arXiv:1705.10142, 2017. +Rafal Jozefowicz, Wojciech Zaremba, and Ilya Sutskever. An empirical exploration of recurrent network architectures. In ICML, pp. 2342–2350, 2015. +Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the limits of language modeling. arXiv preprint arXiv:1602.02410, 2016. +Sekitoshi Kanai, Yasuhiro Fujiwara, and Sotetsu Iwamura. Preventing gradient explosions in gated recurrent units. In NIPS, pp. 435–444, 2017. +Ryan Kiros, Yukun Zhu, Ruslan R Salakhutdinov, Richard Zemel, Raquel Urtasun, Antonio Torralba, and Sanja Fidler. Skip-thought vectors. In NIPS, pp. 3294–3302, 2015. +Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. +Thomas Laurent and James von Brecht. A recurrent neural network without chaos. In ICLR, 2017. +Quoc V Le, Navdeep Jaitly, and Geoffrey E Hinton. A simple way to initialize recurrent networks of rectified linear units. arXiv preprint arXiv:1504.00941, 2015. +Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. +Yiping Lu, Aoxiao Zhong, Quanzheng Li, and Bin Dong. Beyond finite layer neural networks: Bridging deep architectures and numerical differential equations. In ICML, pp. 3276–3285, 2018. +Tomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent \` neural network based language model. In Interspeech, volume 2, pp. 3, 2010. +Tomas Mikolov, Armand Joulin, Sumit Chopra, Michael Mathieu, and Marc’Aurelio Ranzato. Learning longer memory in recurrent neural networks. arXiv preprint arXiv:1412.7753, 2014. +Dmytro Mishkin and Jiri Matas. All you need is a good init. arXiv preprint arXiv:1511.06422, 2015. +Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. Understanding the exploding gradient problem. CoRR, abs/1211.5063, 2012. +Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural networks. In ICML, pp. 1310–1318, 2013. +Jeffrey Pennington, Sam Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning through dynamical isometry: theory and practice. NIPS, 2017. +David E Rumelhart, Geoffrey E Hinton, and Ronald J Williams. Learning representations by backpropagating errors. nature, 323(6088):533, 1986. +Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013. +Richard Socher, Cliff C Lin, Chris Manning, and Andrew Y Ng. Parsing natural scenes and natural language with recursive neural networks. In ICML, pp. 129–136, 2011. +Corentin Tallec and Yann Ollivier. Can recurrent neural networks warp time? In ICLR, 2018. +Eugene Vorontsov, Chiheb Trabelsi, Samuel Kadoury, and Chris Pal. On orthogonality and learning recurrent networks with long term dependencies. In ICML, pp. 3570–3578, 2017. +Scott Wisdom, Thomas Powers, John Hershey, Jonathan Le Roux, and Les Atlas. Full-capacity unitary recurrent neural networks. In NIPS, pp. 4880–4888, 2016. +Chao-Yuan Wu, Amr Ahmed, Alex Beutel, Alexander J Smola, and How Jing. Recurrent recommender networks. In WSDM, pp. 495–503. ACM, 2017. +Di Xie, Jiang Xiong, and Shiliang Pu. All you need is beyond a good init: Exploring better solution for training extremely deep convolutional neural networks with orthonormality and modulation. arXiv preprint arXiv:1703.01827, 2017. +Fisher Yu and Vladlen Koltun. Multi-scale context aggregation by dilated convolutions. arXiv preprint arXiv:1511.07122, 2015. +Boxuan Yue, Junwei Fu, and Jun Liang. Residual recurrent neural networks for learning sequential representations. Information, 9(3):56, 2018. +Jiong Zhang, Qi Lei, and Inderjit Dhillon. Stabilizing gradients for deep neural networks via efficient SVD parameterization. In ICML, pp. 5806–5814, 2018a. +Jiong Zhang, Yibo Lin, Zhao Song, and Inderjit Dhillon. Learning long term dependencies via Fourier recurrent units. In ICML, pp. 5815–5823, 2018b. + +# A AN OVERVIEW OF STABILITY THEORY + +In this section, we provide a brief overview of the stability theory by examples. Most of the materials are adapted from Ascher & Petzold (1998). + +Consider the simple scalar ODE, often referred to as the test equation: $y ^ { \prime } ( t ) = \lambda y ( t )$ , where $\lambda \in \mathbb { C }$ is a constant. We allow $\lambda$ to be complex because it later represents an eigenvalue of a system’s matrix. The solution to this initial value problem is $y ( t ) \stackrel { \bullet } { = } e ^ { \lambda t } y ( 0 )$ . If $y ( t )$ and $\tilde { y } ( t )$ are two solutions of the test equation, then their difference at any time $t$ is + +$$ +| y ( t ) - \tilde { y } ( t ) | = | e ^ { \lambda t } ( y ( 0 ) - \tilde { y } ( 0 ) ) | = e ^ { R e ( \lambda ) t } | y ( 0 ) - \tilde { y } ( 0 ) | . +$$ + +If $R e ( \lambda ) > 0$ , then a small perturbation of the initial states would cause an exponentially exploding difference. If $R e ( \lambda ) ~ < ~ 0$ , the system is stable, but the perturbation decays exponentially. The perturbation is preserved in the system only if $R e ( \lambda ) = 0$ . + +We now consider the extension of the test equation to a matrix ODE $\mathbf { \boldsymbol { y } } ^ { \prime } ( t ) = \mathbf { \boldsymbol { A } } \mathbf { \boldsymbol { y } } ( t )$ . The solution is $\pmb { y } ( t ) = e ^ { \pmb { A } t } \pmb { y } ( 0 )$ . To simplify the analysis, we assume $\pmb { A }$ is diagonalizable, i.e., $\pmb { P } ^ { - 1 } \pmb { A } \pmb { P } = \pmb { \Lambda }$ , where $\pmb { \Lambda }$ is a diagonal matrix of the eigenvalues of $\pmb { A }$ and the columns of $_ { r }$ are the corresponding eigenvectors. If we define ${ \pmb w } ( t ) = { \pmb P } ^ { - 1 } { \pmb y } ( t )$ , then ${ \pmb w } ^ { \prime } ( t ) = { \pmb \Lambda } { \pmb w } ( t )$ . The system for ${ \mathbf { } } w ( t )$ is decoupled: for each component $w _ { i } ( t )$ of ${ \mathbf { } } w ( t )$ , we have a test equation $w _ { i } ^ { \prime } ( t ) \stackrel { \cdot } { = } \lambda _ { i } w _ { i } ( t )$ . Therefore, the stability for ${ \pmb w } ( t )$ , hence also for ${ \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf { } } { \mathbf } { } \mathbf { } { \mathbf { } } { \mathbf } { } \mathbf { } { \mathbf { } \mathbf { } } { \mathbf { } \mathbf { } } { \mathbf { } \mathbf { } } { \mathbf } { \mathbf { } } { \mathbf } { \mathbf { } } { \mathbf } { \mathbf } { \mathbf { } } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { \mathbf \mathbf { } \mathbf { } \mathbf { } \mathbf } { \mathbf \mathbf { } \mathbf } { \mathbf \mathbf { } \mathbf } { \mathbf \mathbf { } \mathbf } { \mathbf \mathbf { } \mathbf } \mathbf { \mathbf } \mathbf { \mathbf } \mathbf { \mathbf } \mathbf { \mathbf } \mathbf { \mathbf } \mathbf { \mathbf } \mathbf \mathbf { } \mathbf \mathbf { \mathbf } \mathbf \mathbf { } \mathbf \mathbf \mathbf { \mathbf } \mathbf \mathbf { \mathbf } \mathbf \mathbf { \mathbf \mathbf } \mathbf \mathbf { \mathbf } \mathbf \mathbf \mathbf $ , is determined by the eigenvalues $\lambda _ { i }$ . + +# B PROOF OF A PROPOSITION + +In this section, we provide a proof of a proposition which implies that the AntisymmetricRNN and AntisymmetricRNN with gating satisfy the critical criterion, i.e., the eigenvalues of the Jacobian matrix are imaginary. The proof is adapted from Chang et al. (2018a). + +Proposition 3. If $W \in \mathbb { R } ^ { n \times n }$ is an antisymmetric matrix and $\ b { D } \in \mathbb { R } ^ { n \times n }$ is an invertible diagonal matrix, then the eigenvalues of $\pmb { D W }$ are imaginary. + +$$ +R e ( \lambda _ { i } ( D W ) ) = 0 , \quad \forall i = 1 , 2 , \ldots , n . +$$ + +Proof. Let $\lambda$ and $\textbf { { v } }$ be a pair of eigenvalue and eigenvector of $\pmb { D W }$ , then + +$$ +\begin{array} { c } { { D W v = \lambda v , } } \\ { { W v = \lambda D ^ { - 1 } v , } } \\ { { v ^ { * } W v = \lambda ( v ^ { * } D ^ { - 1 } v ) , } } \end{array} +$$ + +On one hand, ${ \pmb v } ^ { * } { \pmb D } ^ { - 1 } { \pmb v }$ is real. On the other hand, + +$$ +( v ^ { * } W v ) ^ { * } = v ^ { * } W ^ { * } v = - v ^ { * } W v , +$$ + +where $^ *$ represents conjugate transpose. It implies that ${ \boldsymbol { v } } ^ { * } { \boldsymbol { W } } { \boldsymbol { v } }$ is imaginary. Therefore, $\lambda$ has to be imaginary. As a result, all eigenvalues of $\pmb { D W }$ are imaginary. □ + +# C EXPERIMENTAL DETAILS + +Let $m$ be the input dimension and $n$ be the number of hidden units. The input to hidden matrices are initialized to $\bar { \mathcal { N } } ( 0 , 1 / m )$ . The hidden to hidden matrices are initialized to $\bar { \mathcal { N } } ( 0 , \sigma _ { w } ^ { 2 } / n )$ , where $\sigma _ { w }$ is chosen from $\sigma _ { w } \in \{ 0 , 1 , 2 , 4 , 8 , 1 6 \}$ . The bias terms are initialized to zero, except the forget gate bias of LSTM is initialized to 1, as suggested by Jozefowicz et al. (2015). For AntisymmetricRNNs, the step size $\epsilon \in \{ 0 . 0 1 , 0 . 1 , 1 \}$ and diffusion $\gamma \in \lbrace 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 . 0 \rbrace$ . We use SGD with momentum and Adagrad (Duchi et al., 2011) as optimizers, with batch size of 128 and learning rate chosen from $\{ 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 , 0 . 7 5 , 1 \}$ . On MNIST and pixel-by-pixel CIFAR-10, all the models are trained for 50,000 iterations. On noise padded CIFAR-10, models are trained for 10,000 iterations. We use the standard train/test split of MNIST and CIFAR-10. The performance measure is the classification accuracy evaluated on the test set. + +# D ADDITIONAL VISUALIZATIONS + +In this section, we present additional visualizations that are related to the simulation study in Section 4. Figure 3 and 4 show the dynamics of vanilla RNNs and AntisymmetricRNNs with standard Gaussian random weights using different seeds. These visualizations further illustrate the random behavior of a vanilla RNN and the predictable dynamics of an AntisymmetricRNN. + +Figure 5 shows the dynamics of AntisymmetricRNNs with independent standard Gaussian input. +This shows that the dynamics become noisier compared to Figure 1, but the trend remains the same. + +![](images/af56ab1a9ad6434e2c42f09f694c286b94dde568787aced6f5c97395e47c7d3b.jpg) +Figure 3: Visualization of the dynamics of vanilla RNNs with standard Gaussian random weights, using seeds from 1 to 16. + +![](images/9d3db63ba5e4d101e28325552839dc4269331c8b18c379d043cdb087dc6176d3.jpg) +Figure 4: Visualization of the dynamics of RNN with feedback with standard Gaussian random weights, using seeds from 1 to 16, diffusion strength $\gamma = 0 . 1$ . + +![](images/8ce9b81ff6e57ebb11af09e775f759cb7b8d30d4c27b2a12b1b87256b00b8379.jpg) +Figure 5: Visualization of the dynamics of RNN with feedback with independent standard Gaussian input. \ No newline at end of file diff --git a/parse/train/ryxepo0cFX/ryxepo0cFX_content_list.json b/parse/train/ryxepo0cFX/ryxepo0cFX_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..fa93710cc5043dc23580007a83fee33a93757a68 --- /dev/null +++ b/parse/train/ryxepo0cFX/ryxepo0cFX_content_list.json @@ -0,0 +1,1835 @@ +[ + { + "type": "text", + "text": "ANTISYMMETRICRNN: A DYNAMICAL SYSTEM VIEWON RECURRENT NEURAL NETWORKS", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Bo Chang∗ University of British Columbia Vancouver, BC, Canada bchang@stat.ubc.ca ", + "bbox": [ + 184, + 170, + 388, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Minmin Chen \nGoogle Brain \nMountain View, CA, USA minminc@google.com ", + "bbox": [ + 408, + 170, + 586, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Eldad Haber University of British Columbia Vancouver, BC, Canada haber@math.ubc.ca ", + "bbox": [ + 607, + 170, + 813, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ed H. Chi \nGoogle Brain \nMountain View, CA, USA edchi@google.com ", + "bbox": [ + 183, + 247, + 357, + 304 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 340, + 544, + 354 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recurrent neural networks have gained widespread use in modeling sequential data. Learning long-term dependencies using these models remains difficult though, due to exploding or vanishing gradients. In this paper, we draw connections between recurrent networks and ordinary differential equations. A special form of recurrent networks called the AntisymmetricRNN is proposed under this theoretical framework, which is able to capture long-term dependencies thanks to the stability property of its underlying differential equation. Existing approaches to improving RNN trainability often incur significant computation overhead. In comparison, AntisymmetricRNN achieves the same goal by design. We showcase the advantage of this new architecture through extensive simulations and experiments. AntisymmetricRNN exhibits much more predictable dynamics. It outperforms regular LSTM models on tasks requiring long-term memory and matches the performance on tasks where short-term dependencies dominate despite being much simpler. ", + "bbox": [ + 233, + 371, + 764, + 565 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 592, + 336, + 607 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recurrent neural networks (RNNs) (Rumelhart et al., 1986; Elman, 1990) have found widespread use across a variety of domains from language modeling (Mikolov et al., 2010; Kiros et al., 2015; Jozefowicz et al., 2016) and machine translation (Bahdanau et al., 2014) to speech recognition (Graves et al., 2013) and recommendation systems (Hidasi et al., 2015; Wu et al., 2017). Modeling complex temporal dependencies in sequential data using RNNs, especially the long-term dependencies, remains an open challenge. The main difficulty arises as the error signal back-propagated through time (BPTT) suffers from exponential growth or decay, a dilemma commonly referred to as exploding or vanishing gradient (Pascanu et al., 2012; Bengio et al., 1994). ", + "bbox": [ + 174, + 622, + 825, + 734 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vanilla RNNs as originally proposed are particularly prone to these issues and are rarely used in practice. Gated variants of RNNs, such as long short-term memory (LSTM) networks (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) that feature various forms of “gating” are proposed to alleviate these issues. The gates allow information to flow from inputs at any previous time steps to the end of the sequence more easily, partially addressing the vanishing gradient problem (Collins et al., 2016). In practice, these models must be paired with techniques such as normalization layers (Ioffe & Szegedy, 2015; Ba et al., 2016) and gradient clipping (Pascanu et al., 2013) to achieve good performance. ", + "bbox": [ + 174, + 741, + 825, + 853 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Identity and orthogonal initialization is another proposed solution to the exploding or vanishing gradient problem of deep neural networks (Le et al., 2015; Mishkin & Matas, 2015; Saxe et al., 2013; Chen et al., 2018a). Recently, Arjovsky et al. (2016); Wisdom et al. (2016); Hyland & Ratsch ¨ (2017); Xie et al. (2017); Zhang et al. (2018a) advocate going beyond initialization and forcing the weight matrices to be orthogonal throughout the entire learning process. However, some of these approaches come with significant computational overhead and reportedly hinder representation power of these models (Vorontsov et al., 2017). Moreover, orthogonal weight matrices alone do not prevent exploding and vanishing gradients, due to the nonlinear nature of deep neural networks as shown in (Pennington et al., 2017). ", + "bbox": [ + 176, + 859, + 825, + 902 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here we offer a new perspective on the trainability of RNNs from the dynamical system viewpoint. While exploding gradient is a manifestation of the instability of the underlying dynamical system, vanishing gradient results from a lossy system, properties that have been widely studied in the dynamical system literature (Haber & Ruthotto, 2017; Laurent & von Brecht, 2017). The main contributions of the work are: ", + "bbox": [ + 174, + 194, + 825, + 263 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We draw connections between RNNs and the ordinary differential equation theory and design new recurrent architectures by discretizing ODEs. \n• The stability of the ODE solutions and the numerical methods for solving ODEs lead us to design a special form of RNNs, which we name AntisymmetricRNN, that can capture longterm dependencies in the inputs. The construction of the model is much simpler compared to the existing methods for improving RNN trainability. \nWe conduct extensive simulations and experiments to demonstrate the benefits of this new RNN architecture. AntisymmetricRNN exhibits well-behaved dynamics and outperforms the regular LSTM model on tasks requiring long-term memory, and matches its performance on tasks where short-term dependencies dominate with much fewer parameters. ", + "bbox": [ + 215, + 277, + 825, + 434 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 458, + 341, + 474 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Trainability of RNNs. Capturing long-term dependencies using RNNs has been a long-standing research topic with various approaches proposed. The first group of approaches mitigates the exploding or vanishing gradient issues by introducing some forms of gating. Long short-term memory networks (LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) are the most prominent models along this line of work. Parallel efforts include designing special neural architectures, such as hierarchical RNNs (El Hihi & Bengio, 1996), recursive neural networks (Socher et al., 2011), attention networks (Bahdanau et al., 2014), dilated convolutions (Yu & Koltun, 2015), recurrent batch normalization (Cooijmans et al., 2017), residual RNNs (Yue et al., 2018), and Fourier recurrent units (Zhang et al., 2018b). These, however, are fundamentally different networks with different tradeoffs. ", + "bbox": [ + 174, + 492, + 825, + 631 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Another direction is to constrain the weight matrices of an RNN so that the back-propagated error signal is well conditioned, in particular, the input-output Jacobian having unitary singular values. Le et al. (2015); Mikolov et al. (2014); Mishkin & Matas (2015) propose the use of identity or orthogonal matrix to initialize the recurrent weight matrix. Followup works further constrain the weight matrix throughout the entire learning process either through re-parametrization (Arjovsky et al., 2016), geodesic gradient descent on the Stiefel manifold (Wisdom et al., 2016; Vorontsov et al., 2017), or constraining the singular values (Jose et al., 2017; Kanai et al., 2017; Zhang et al., 2018a). It is worth noting that, orthogonal weights by themselves do not guarantee unitary Jacobians. Nonlinear activations still cause the gradients to explode or vanish. Contractive maps such as sigmoid and hyperbolic tangent lead to vanishing gradients. Chen et al. (2018a) offer an initialization scheme taking into account the nonlinearity. However, the theory developed relies heavily on the random matrix assumptions, which only hold at the initialization point of training. Although it has been shown to predict trainability beyond initialization. ", + "bbox": [ + 173, + 638, + 825, + 819 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Dynamical systems view of recurrent networks. Connections between dynamical systems and RNNs have not been well explored. Laurent & von Brecht (2017) study the behavior of dynamical systems induced by recurrent networks, and show that LSTMs and GRUs exhibit chaotic dynamics in the absence of input data. They propose a simplified gated RNN named the chaos free network (CFN), that has non-chaotic dynamics and achieves comparable performance to LSTMs and GRUs on language modeling. Tallec & Ollivier (2018) formulate RNNs as a time-discretized version of ODE and show that time invariance leads to gate-like mechanisms in RNNs. With this formulation, the authors propose an initialization scheme by setting the initial gate bias according to the range of time dependencies to capture. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dynamical systems view of residual networks. Another line of work that is closely related to ours is the dynamical systems view on residual networks (ResNets) (He et al., 2016). Haber & Ruthotto (2017); Chang et al. (2018a;b); Lu et al. (2018) propose to interpret ResNets as ordinary differential equations (ODEs), under which learning the network parameters is equivalent to solve a parameter estimation problem involving the ODE. Chen et al. (2018b) parameterize the continuous dynamics of hidden units using an ODE specified by a neural network. Stable and reversible architectures are developed (Haber & Ruthotto, 2017; Chang et al., 2018a) from this viewpoint, which form the basis of our proposed recurrent networks. ", + "bbox": [ + 173, + 138, + 825, + 251 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 ANTISYMMETRICRNNS ", + "text_level": 1, + "bbox": [ + 176, + 270, + 406, + 286 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 ORDINARY DIFFERENTIAL EQUATIONS ", + "text_level": 1, + "bbox": [ + 176, + 303, + 478, + 316 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We first give a brief overview of the ordinary differential equations (ODEs), a special kind of dynamical systems that involves a single variable, time $t$ in this case. Consider the first-order ODE ", + "bbox": [ + 171, + 328, + 823, + 356 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/5742694d952e856159a2de8421271c83f851a9a8772bc05c06b05240f5af52b3.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = f ( \\pmb { h } ( t ) ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 441, + 362, + 555, + 381 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "for time $t \\geq 0$ , where $\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }$ and $f : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }$ . Together with a given initial condition $\\pmb { h } ( 0 )$ , the problem of solving for the function $h ( t )$ is called the initial value problem. For most ODEs, it is impossible to find an analytic solution. Instead, numerical methods relying on discretization are commonly used to approximate the solution. The forward Euler method is probably the best known and simplest numerical method for approximation. One way to derive the forward Euler method is to approximate the derivative on the left-hand side of Equation 1 by a finite difference, and evaluate the right-hand side at $\\boldsymbol { h } _ { t - 1 }$ : ", + "bbox": [ + 173, + 386, + 825, + 484 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f0fdb1b0a2a08ca6e592930225314e463a18515aa44c42f113822ea0cb4c5b4c.jpg", + "text": "$$\n\\frac { h _ { t } - h _ { t - 1 } } { \\epsilon } = f ( h _ { t - 1 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 419, + 482, + 578, + 512 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Note that for the approximation to be valid, $\\epsilon > 0$ should be small by the definition of the derivative. One can easily prove that the forward Euler method converges linearly w.r.t. $\\epsilon$ , assuming $f ( h )$ is Lipschitz continuous on $^ { h }$ and that the eigenvalues of the Jacobian of $f$ have negative real parts. Rearranging it, we have the forward Euler method for a given initial value ", + "bbox": [ + 174, + 515, + 823, + 570 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/798f6407aa298245b0d9fb13b31fb3560c455d3ff39ee18236ae087c04b1a403.jpg", + "text": "$$\n\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon f ( h _ { t - 1 } ) , \\quad h _ { 0 } = h ( 0 ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 369, + 578, + 627, + 595 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Geometrically, each forward Euler step takes a small step along the tangential direction to the exact trajectory starting at $h _ { t - 1 }$ . As a result, $\\epsilon$ is usually referred to as the step size. ", + "bbox": [ + 171, + 602, + 823, + 631 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As an example, consider the ODE ", + "bbox": [ + 176, + 637, + 398, + 651 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/23a35eff562cb7af8c99a6509bdb5738d1b2428dbbdaab08d01502157862a453.jpg", + "text": "$$\n\\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( \\pmb { W } \\pmb { h } ( t ) \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 415, + 657, + 581, + 676 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The forward Euler method approximates the solution to the ODE iteratively as ", + "bbox": [ + 174, + 681, + 687, + 696 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d3daf9001d3b689a0ff618f259513d930bdee5ef0f732e64f5310de5699c9053.jpg", + "text": "$$\nh _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 393, + 703, + 601, + 720 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "which can be regarded as a recurrent network without input data. Here $h _ { t }$ is the hidden state at the $t$ -th step, $W$ is a model parameter, and $\\epsilon$ is a hyperparameter. This provides a general framework of designing recurrent network architectures by discretizing ODEs. As a result, we can design ODEs that possess desirable properties by exploiting the theoretical successes of dynamical systems, and the resulting recurrent networks will inherit these properties. Stability is one of the important properties to consider, which we will discuss in the next section. It is worth mentioning that the “skip connection” in this architecture resembles the residual RNN (Yue et al., 2018) and the Fourier RNN (Zhang et al., 2018b), which are proposed to mitigate the vanishing and exploding gradient issues. ", + "bbox": [ + 173, + 727, + 825, + 853 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 STABILITY OF ORDINARY DIFFERENTIAL EQUATIONS: ANTISYMMETRICRNNS ", + "text_level": 1, + "bbox": [ + 173, + 871, + 754, + 883 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In numerical analysis, stability theory addresses the stability of solutions of ODEs under small perturbations of initial conditions. In this section, we are going to establish the connections between the stability of an ODE and the trainability of the RNNs by discretizing the ODE, and design a new RNN architecture that is stable and capable of capturing long-term dependencies. ", + "bbox": [ + 173, + 895, + 820, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "An ODE solution is stable if the long-term behavior of the system does not depend significantly on the initial conditions. A formal definition is given as follows. ", + "bbox": [ + 171, + 138, + 823, + 167 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 1. (Stability) $A$ solution $h ( t )$ of the ODE in Equation $I$ with initial condition $\\pmb { h } ( 0 )$ is stable if for any $\\epsilon > 0$ , there exists a $\\delta > 0$ such that any other solution $\\tilde { h } ( t )$ of the ODE with initial condition $\\tilde { \\pmb { h } } ( 0 )$ satisfying $| h ( 0 ) - \\tilde { h } ( 0 ) | \\leq \\delta$ also satisfies $| h ( t ) - \\tilde { h } ( t ) | \\leq \\epsilon ,$ , for all $t \\geq 0$ . ", + "bbox": [ + 174, + 170, + 825, + 219 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In plain language, given a small perturbation of size $\\delta$ of the initial state, the effect of the perturbation on the subsequent states is no bigger than $\\epsilon$ . The eigenvalues of the Jacobian matrix play a central role in stability analysis. Let $\\bar { \\ b { J } } ( \\bar { t } ) \\in \\mathbb { R } ^ { n \\times n }$ be the Jacobian matrix of $f$ , and $\\lambda _ { i } ( \\cdot )$ denotes the $i$ -th eigenvalue. ", + "bbox": [ + 173, + 229, + 825, + 286 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Proposition 1. The solution of an ODE is stable $i f$ ", + "bbox": [ + 174, + 290, + 511, + 305 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b5d46c04f0ef8569020b1161f80cf51423c0ba76c2b5dc8bd27a233bce382e75.jpg", + "text": "$$\n\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\leq 0 , \\quad \\forall t \\geq 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 369, + 311, + 629, + 335 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $R e ( \\cdot )$ denotes the real part of a complex number. ", + "bbox": [ + 173, + 343, + 539, + 358 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A more precise proposition that involves the kinematic eigenvalues of $\\mathbf { } J ( t )$ is given in Ascher et al. (1994). Stability alone, however, does not suffice to capture long-term dependencies. As argued in Haber & Ruthotto (2017), $R e ( \\lambda _ { i } ( J ( t ) ) ) \\ll 0$ results in a lossy system; the energy or signal in the initial state is dissipated over time. Using such an ODE as the underlying dynamical system of a recurrent network will lead to catastrophic forgetting of the past inputs during the forward propagation. Ideally, ", + "bbox": [ + 173, + 369, + 825, + 453 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/23079462bd3d14421bc944a15c3580c0c3cd95c19dc43c82a330bc4367bf7217.jpg", + "text": "$$\nR e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\approx 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,\n$$", + "text_format": "latex", + "bbox": [ + 369, + 452, + 627, + 469 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "a condition we referred to as the critical criterion. Under this condition, the system preserves the long-term dependencies of the inputs while being stable. ", + "bbox": [ + 174, + 472, + 825, + 501 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Stability and Trainability. Here we connect the stability of the ODE to the trainability of the RNN produced by discretization. Inherently, the stability analysis studies the sensitivity of a solution, i.e., how much a solution of the ODE would change w.r.t. changes in the initial condition. Differentiating Equation 1 with respect to the initial state $\\bar { \\pmb h } ( 0 )$ on both sides, we have the following sensitivity analysis (with chain rules): ", + "bbox": [ + 173, + 506, + 825, + 577 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9359a5636fe77b24f823cef4abfbcda724c42d122400cea94b79963377647663.jpg", + "text": "$$\n\\frac { \\mathrm { d } } { \\mathrm { d } t } \\left( \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } \\right) = \\pmb { J } ( t ) \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } .\n$$", + "text_format": "latex", + "bbox": [ + 400, + 574, + 598, + 609 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For notational simplicity, let us define $\\pmb { A } ( t ) = \\partial \\pmb { h } ( t ) / \\partial \\pmb { h } ( 0 )$ , then we have ", + "bbox": [ + 174, + 611, + 665, + 627 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a3f4fc9edf63942fcf0ab874379f65a51becc603701f3865aeda530a1ea33865.jpg", + "text": "$$\n\\frac { \\mathrm { d } \\pmb { A } ( t ) } { \\mathrm { d } t } = \\pmb { J } ( t ) \\pmb { A } ( t ) , \\quad \\pmb { A } ( 0 ) = \\pmb { I } .\n$$", + "text_format": "latex", + "bbox": [ + 383, + 633, + 614, + 665 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Note that this is a linear ODE with solution ${ \\pmb A } ( t ) = e ^ { { \\pmb J } \\cdot t } = P e ^ { { \\pmb \\Lambda } ( J ) t } { \\pmb P } ^ { - 1 }$ , assuming the Jacobian $\\textbf { { J } }$ does not vary or vary slowly over time (We will later show this is a valid assumption). Here $\\pmb { \\Lambda } ( J )$ denotes the eigenvalues of $\\textbf { { J } }$ , and the columns of $_ { r }$ are the corresponding eigenvectors. See Appendix A for a more detailed derivation. In the language of RNNs, $A ( t )$ is the Jacobian of a hidden state $h _ { t }$ with respect to the initial hidden state $h _ { 0 }$ . When the critical criterion is met, i.e., $R e ( \\pmb { \\Lambda } ( \\pmb { J } ) ) \\approx 0$ , the magnitude of $A ( t )$ is approximately constant in time, thus no exploding or vanishing gradient problems. ", + "bbox": [ + 173, + 670, + 825, + 771 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "With the connection established, we next design ODEs that satisfy the critical criterion. An antisymmetric matrix is a square matrix whose transpose equals its negative; i.e., a matrix $M \\in \\mathbb { R } ^ { n \\times n }$ is antisymmetric if $M ^ { T } = - M$ . An interesting property of an antisymmetric matrix $M$ is that, the eigenvalues of $M$ are all imaginary: ", + "bbox": [ + 173, + 776, + 825, + 833 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/c4a8f792239bcdd89e1251694f971a7ea7e1adea4951b3e3f24d369b7438505a.jpg", + "text": "$$\nR e ( \\lambda _ { i } ( M ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,\n$$", + "text_format": "latex", + "bbox": [ + 375, + 840, + 620, + 857 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "making antisymmetric matrices a suitable building block of a stable recurrent architecture. ", + "bbox": [ + 169, + 863, + 763, + 878 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Consider the following ODE ", + "bbox": [ + 174, + 885, + 364, + 900 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/732c12b765129851934f3b1c42f27ab9c819c2a88ce46572f30f7d3e7b09edd9.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( ( \\pmb { W } _ { h } - \\pmb { W } _ { h } ^ { T } ) \\pmb { h } ( t ) + \\pmb { V } _ { h } \\pmb { x } ( t ) + \\pmb { b } _ { h } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 326, + 906, + 668, + 926 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }$ , $\\pmb { x } ( t ) \\in \\mathbb { R } ^ { m }$ , $\\boldsymbol { W _ { h } } \\in \\mathbb { R } ^ { n \\times n }$ , $V _ { h } \\in \\mathbb { R } ^ { n \\times m }$ and $b _ { h } \\in \\mathbb { R } ^ { n }$ . Note that $W _ { h } - W _ { h } ^ { T }$ is an antisymmetric matrix. The Jacobian matrix of the right hand side is ", + "bbox": [ + 171, + 102, + 825, + 132 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f54a9fa88fade55b7c1d1e6b6e67bc8ca00f52cf9f3f99119e471ac2218e5af1.jpg", + "text": "$$\n\\begin{array} { r } { \\boldsymbol J ( t ) = \\mathrm { d i a g } \\left[ \\operatorname { t a n h } ^ { \\prime } \\left( ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) \\boldsymbol h ( t ) + \\boldsymbol V _ { h } \\boldsymbol x ( t ) + \\boldsymbol b \\right) \\right] ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 138, + 733, + 160 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "whose eigenvalues are all imaginary, i.e., $R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) = 0 , \\forall i = 1 , 2 , \\ldots , n$ . In other words, it satisfies the critical criterion in Equation 5. See Appendix B for a proof. The entries of the diagonal matrix in Equation 9 are the derivatives of the activation function, which are bounded in $[ 0 , { \\bar { 1 } } ]$ for sigmoid and hyperbolic tangent. In other words, the Jacobian matrix $\\mathbf { } J ( t )$ changes smoothly over time. Furthermore, since the input and bias term only affect the bounded diagonal matrix, their effect on the stability of the ODE is insignificant compared with the antisymmetric matrix. ", + "bbox": [ + 173, + 165, + 825, + 250 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A naive forward Euler discretization of the ODE in Equation 8 leads to the following recurrent network we refer to as the AntisymmetricRNN. ", + "bbox": [ + 173, + 256, + 821, + 285 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/0e411078fd36ff1cb4f02352e466345c960a22c84d5a3d80beb5f1a61a6ddb23.jpg", + "text": "$$\n\\begin{array} { r } { \\boldsymbol { h } _ { t } = \\boldsymbol { h } _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } ) h _ { t - 1 } + V _ { h } \\boldsymbol { x } _ { t } + b _ { h } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 308, + 290, + 687, + 310 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\ b { h _ { t } } ~ \\in ~ \\mathbb { R } ^ { n }$ is the hidden state at time $t$ ; $\\pmb { x } _ { t } \\in \\mathbb { R } ^ { m }$ is the input at time $t$ ; $\\boldsymbol { W } _ { h } ~ \\in ~ \\mathbb { R } ^ { n \\times n }$ , $V _ { h } \\in \\mathbb { R } ^ { n \\times m }$ and $b _ { h } \\in \\mathbb { R } ^ { n }$ are the parameters of the network; $\\epsilon > 0$ is a hyperparameter that represents the step size. ", + "bbox": [ + 173, + 318, + 825, + 361 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Note that the antisymmetric matrix $W _ { h } \\mathrm { ~ - ~ } W _ { h } ^ { T }$ only has $n ( n - 1 ) / 2$ degrees of freedom. When implementing the model, $W _ { h }$ can be parameterized as a strictly upper triangular matrix, i.e., an upper triangular matrix of which the diagonal entries are all zero. This makes the proposed model more parameter efficient than an unstructured RNN model of the same size of hidden states. ", + "bbox": [ + 173, + 366, + 825, + 424 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 STABILITY OF THE FORWARD EULER METHOD: DIFFUSION ", + "text_level": 1, + "bbox": [ + 174, + 440, + 622, + 455 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Given a stable ODE, its forward Euler discretization can still be unstable, as illustrated in Section 4. The stability condition of the forward Euler method has been well studied and summarized in the following proposition. ", + "bbox": [ + 178, + 465, + 823, + 510 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 2. (Stability of the forward Euler method) The forward propagation in Equation 10 is stable $i f$ ", + "bbox": [ + 173, + 512, + 823, + 541 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/344e3afe1337e227bb93f3db82f29705ba1824b461deb93e9b7f4e274b591ff7.jpg", + "text": "$$\n\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } | 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) | \\leq 1 ,\n$$", + "text_format": "latex", + "bbox": [ + 405, + 540, + 593, + 564 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $| \\cdot |$ denote the absolute value or modulus of a complex number and $\\scriptstyle { J _ { t } }$ is the Jacobian matrix evaluated at $\\boldsymbol { h } _ { t }$ . ", + "bbox": [ + 174, + 568, + 825, + 597 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "See Ascher & Petzold (1998) for a proof. The ODE as defined in Equation 8 is however incompatible with the stability condition of the forward Euler method. Since $\\lambda _ { i } ( J _ { t } )$ , the eigenvalues of the Jacobian matrix, are all imaginary, $\\left| 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) \\right|$ is always greater than 1, which makes the AntisymmetricRNN defined in Equation 10 unstable when solved using forward Euler. ", + "bbox": [ + 173, + 608, + 825, + 665 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "One easy way to fix it is to add diffusion to the system by subtracting a small number $\\gamma > 0$ from the diagonal elements of the transition matrix. The model thus becomes ", + "bbox": [ + 173, + 671, + 825, + 700 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/a5313a878df8745f764bd4f52396b5632c2c06f8479a241f2abd36d5dc710c3c.jpg", + "text": "$$\n\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\big ( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 289, + 707, + 705, + 727 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\pmb { I }$ is the identity matrix of size $n$ and $\\gamma > 0$ is a hyperparameter that controls the strength of diffusion. By doing so, the eigenvalues of the Jacobian have slightly negative real parts. This modification improves the stability of the numerical method as demonstrated in Section 4. ", + "bbox": [ + 174, + 733, + 825, + 776 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.4 GATING MECHANISM ", + "text_level": 1, + "bbox": [ + 174, + 792, + 362, + 806 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Gating is commonly employed in RNNs. Each gate is often modeled as a single layer network taking the previous hidden state $h _ { t - 1 }$ and data $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { t } }$ as inputs, followed by a sigmoid activation. As an example, LSTM cells make use of three gates, a forget gate, an input gate, and an output gate. A systematic ablation study suggests that some of the gates are crucial to the performance of LSTM (Jozefowicz et al., 2015). ", + "bbox": [ + 173, + 818, + 825, + 888 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Gating can be incorporated into AntisymmetricRNN as well. However, it should be done carefully so that the critical condition in Equation 5 still holds. We propose the following modification to ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "AntisymmetricRNN, which adds an input gate ${ \\boldsymbol { z } } _ { t }$ to control the flow of information into the hidden states: ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/e76782633e00b1dd1f79627791ca64e966afbbece6e2cb8f4c1757959da92986.jpg", + "text": "$$\n\\begin{array} { r l } & { z _ { t } = \\sigma \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { z } x _ { t } + b _ { z } \\right) , } \\\\ & { h _ { t } = h _ { t - 1 } + \\epsilon z _ { t } \\circ \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 137, + 720, + 180 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\sigma$ denotes the sigmoid function and $\\circ$ denotes the Hadamard product. ", + "bbox": [ + 176, + 184, + 669, + 199 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The effect of ${ \\boldsymbol { z } } _ { t }$ resembles the input gate in LSTM and the update gate in GRU. By sharing the antisymmetric weight matrix, the number of model parameters only increases slightly, instead of being doubled. More importantly, the Jacobian matrix of this gated model has a similar form as that in Equation 9, that is, a diagonal matrix multiplied by an antisymmetric matrix (ignoring diffusion). As a result, the real parts of the eigenvalues of the Jacobian matrix are still close to zero, and the critical criterion remains satisfied. ", + "bbox": [ + 173, + 205, + 826, + 290 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 SIMULATION ", + "text_level": 1, + "bbox": [ + 174, + 310, + 313, + 327 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/5a858e81e3967a8c614f2927716aa5f9ff6bf81f6c10c6a13a134af61b8531b4.jpg", + "image_caption": [ + "Figure 1: Visualization of the dynamics of RNNs and RNNs with feedback using different weight matrices. " + ], + "image_footnote": [], + "bbox": [ + 173, + 352, + 825, + 659 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Adopting the visualization technique used by Laurent & von Brecht (2017) and Haber & Ruthotto (2017), we study the behavior of two-dimensional vanilla RNNs (left) and RNNs with feedback (right) in the absence of input data and bias: ", + "bbox": [ + 173, + 717, + 825, + 758 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/0a18591616ff8ee12b08f2744cf0823424fcf2940a96668d0a8bc648af63fb84.jpg", + "text": "$$\n\\operatorname { \\mathrm { = \\ t a n h } } ( W h _ { t - 1 } ) , \\qquad { \\mathrm { f e e d b a c k } } ; h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 328, + 767, + 750, + 784 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Here $\\boldsymbol { h } _ { t } \\in \\mathbb { R } ^ { 2 }$ and $1 \\leq t \\leq T$ . We arbitrarily choose three initial states: $( 0 , 0 . 5 ) , ( - 0 . 5 , - 0 . 5 )$ and $( 0 . 5 , - 0 . 7 5 )$ , and apply the corresponding RNN recurrence. Figure 1 plots the progression of the states $h _ { t }$ of vanilla RNNs (first row) and RNNs with feedback (second row) parameterized by different transition matrices $W$ . In each figure, more translucent points represent earlier time steps. The number of total time steps $T = 5 0$ . ", + "bbox": [ + 173, + 790, + 825, + 861 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figure 1(a) corresponds to a random weight matrix, where the entries are independent and standard Gaussian. The three initial points (shown in stars) converge to two fixed points on the boundary. Since the weight matrix is unstructured, the behavior is unpredictable as expected. More examples with different weight matrices are shown in Appendix D. Figure 1(b) shows the behavior of the identity weight matrix. Since $\\operatorname { t a n h } ( { \\cdot } )$ is a contractive mapping, the origin is the unique fixed point. Figure 1(c) and (d) correspond to orthogonal weight matrices that represent reflection and rotation transforms respectively. A two-dimensional orthogonal matrix is either a reflection or a rotation transform; the determinant of the matrix is 1 or $- 1$ respectively. Even though the weight matrix is orthogonal, the states all converge to the origin because of the derivative of the activation function $0 \\leq \\mathrm { t a n h } ^ { \\prime } ( W h _ { t - 1 } ) \\leq 1$ . ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In the case of RNNs with feedback, the trajectory of the hidden states is predictable based on the eigenvalues of the weight matrix $W$ .We consider the following four weight matrices that correspond to Figure 1(e)-(f) respectively: ", + "bbox": [ + 174, + 194, + 825, + 236 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/47d468695314b0b59286f3662419944c639838b2642a550c2d7bfd1358abdcdd.jpg", + "text": "$$\nW _ { + } = \\left( \\begin{array} { c c } { { 2 } } & { { - 2 } } \\\\ { { 0 } } & { { 2 } } \\end{array} \\right) , W _ { - } = \\left( \\begin{array} { c c } { { - 2 } } & { { 2 } } \\\\ { { 0 } } & { { - 2 } } \\end{array} \\right) , W _ { 0 } = \\left( \\begin{array} { c c } { { 0 } } & { { - 2 } } \\\\ { { 2 } } & { { 0 } } \\end{array} \\right) , W _ { \\mathrm { d i f f } } = \\left( \\begin{array} { c c } { { - 0 . 1 5 } } & { { - 2 } } \\\\ { { 2 } } & { { - 0 . 1 5 } } \\end{array} \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 200, + 241, + 795, + 276 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also overlay the vector field that represents the underlying ODE. The step size is set to $\\epsilon = 0 . 1$ ", + "bbox": [ + 174, + 280, + 820, + 295 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For Figure 1(e) and (f), the eigenvalues are $\\lambda _ { 1 } ( W _ { + } ) = \\lambda _ { 2 } ( W _ { + } ) = 2$ and $\\lambda _ { 1 } ( { \\cal W } _ { - } ) = \\lambda _ { 2 } ( { \\cal W } _ { - } ) =$ $- 2$ . As a result, the hidden states are moving away from the origin and towards the origin respectively. Figure $1 ( \\mathrm { g } )$ corresponds to the antisymmetric weight matrix $W _ { 0 }$ , whose eigenvalues are purely imaginary: $\\lambda _ { 1 } ( W _ { 0 } ) = 2 i$ , $\\lambda _ { 2 } ( \\mathbf { W } _ { 0 } ) = - 2 i$ . In this case, the vector field is circular; a state moves around the origin without exponentially increasing or decreasing its norm. However, on closer inspection, the trajectories are actually outward spirals. This is because, at each time step, the state moves along the tangential direction by a small step, which increases the distance from the origin and leads to numerical instability. It is the behavior characterized by Proposition 2. This issue can be mitigated by subtracting a small diffusion term $\\gamma$ from the diagonal elements of the weight matrix. We choose $\\gamma = 0 . 1 5$ and the weight matrix $W _ { \\mathrm { d i f f } }$ has eigenvalues of $\\lambda _ { 1 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 + 2 i$ , $\\lambda _ { 2 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 - 2 i$ . Figure 1(h) shows the effect of the diffusion terms. The vector field is slightly tilting toward the origin and the trajectory maintains a constant distance from the origin. ", + "bbox": [ + 173, + 300, + 825, + 482 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "These simulations show that the hidden states of an AntisymmetricRNN (Figure $1 ( \\mathrm { g } )$ and (h)) have predictable dynamics. It achieves the desirable behavior, without the complication of maintaining an orthogonal or unitary matrix as in Figure 1(d), which still suffers from vanishing gradients due to the contraction of the activation function. ", + "bbox": [ + 174, + 489, + 825, + 545 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 565, + 326, + 580 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The performance of the proposed antisymmetric networks is evaluated on four image classification tasks with long-range dependencies. The classification is done by feeding pixels of the images as a sequence to RNNs and sending the last hidden state $h _ { T }$ of the RNNs into a fully-connected layer and a softmax function. We use the cross-entropy loss and SGD with momentum and Adagrad (Duchi et al., 2011) as optimizers. More experimental details can be found in Appendix C. In this section, AntisymmetricRNN denotes the model with diffusion in Equation 12, and AntisymmetricRNN w/ gating represents the model in Equation 13. ", + "bbox": [ + 174, + 595, + 825, + 694 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 PIXEL-BY-PIXEL MNIST ", + "text_level": 1, + "bbox": [ + 176, + 710, + 387, + 724 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In the first task, we learn to classify the MNIST digits by pixels (LeCun et al., 1998). This task was proposed by Le et al. (2015) and used as a benchmark for learning long term dependencies. MNIST images are grayscale with $2 8 \\times 2 8$ pixels. The 784 pixels are presented sequentially to the recurrent net, one pixel at a time in scanline order (starting at the top left corner of the image and ending at the bottom right corner). In other words, the input dimension $m = 1$ and number of time steps $T = 7 8 4$ . The pixel-by-pixel MNIST task is to predict the digit of the MNIST image after seeing all 784 pixels. As a result, the network has to be able to learn the long-range dependencies in order to correctly classify the digit. To make the task even harder, the MNIST pixels are shuffled using a fixed random permutation. It creates non-local long-range dependencies among pixels in an image. This task is referred to as the permuted pixel-by-pixel MNIST. ", + "bbox": [ + 173, + 736, + 825, + 876 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/12e0f91c5ad63a2caa5b177da5c0b6b8400f5132a170e4cfdf15382088711a33.jpg", + "table_caption": [ + "Table 1: Evaluation accuracy on pixel-by-pixel MNIST and permuted MNIST. " + ], + "table_footnote": [], + "table_body": "
methodMNISTpMNIST#units# params
LSTM (Arjovsky et al., 2016)197.3%92.6%12868k
FC uRNN(Wisdom et al., 2016)92.8%92.1%11616k
FC uRNN (Wisdom et al., 2016)96.9%94.1%512270k
Soft orthogonal (Vorontsov et al., 2017)94.1%91.4%12818k
KRU (Jose et al., 2017)96.4%94.5%51211k
AntisymmetricRNN98.0%95.8%12810k
AntisymmetricRNN w/ gating98.8%93.1%12810k
", + "bbox": [ + 222, + 101, + 777, + 229 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 1 summarizes the performance of our methods and the existing methods. On both tasks, the proposed AntisymmetricRNNs outperform the regular LSTM model using only $1 / 7$ of parameters. Imposing orthogonal weights (Arjovsky et al., 2016) produces worse results, which corroborates with the existing study showing that such constraints restrict the capacity of the learned model. Softening the orthogonal weights constraints (Wisdom et al., 2016; Vorontsov et al., 2017; Jose et al., 2017) leads to slightly improved performance. AntisymmetricRNNs outperform these methods by a large margin, without the computational overhead to enforce orthogonality. ", + "bbox": [ + 173, + 281, + 825, + 378 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 PIXEL-BY-PIXEL CIFAR-10 ", + "text_level": 1, + "bbox": [ + 176, + 396, + 408, + 410 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To test our methods on a larger dataset, we conduct experiments on pixel-by-pixel CIFAR-10. The CIFAR-10 dataset contains $3 2 \\times 3 2$ colour images in 10 classes (Krizhevsky & Hinton, 2009). Similar to pixel-by-pixel MNIST, we feed the three channels of a pixel into the model at each time step. The input dimension $m = 3$ and number of time steps $T = 1 0 2 4$ . ", + "bbox": [ + 174, + 422, + 825, + 478 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The results are shown in Table 2. The AntisymmetricRNN performance is on par with the LSTM, and AntisymmetricRNN with gating is slightly better than LSTM, both using only about half of the parameters of the LSTM model. Further investigation shows that the task is mostly dominated by short term dependencies. LSTM can achieve about $4 8 . 3 \\%$ classification accuracy by only seeing the last 8 rows of CIFAR-10 images 2. ", + "bbox": [ + 174, + 484, + 823, + 555 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/d380c059993ae679686020c20815fd5f9815005e9d338d8404eecf0de766dc5e.jpg", + "table_caption": [ + "Table 2: Evaluation accuracy on pixel-by-pixel CIFAR-10 and noise padded CIFAR-10. " + ], + "table_footnote": [], + "table_body": "
methodpixel-by-pixelnoise padded#units# params
LSTM59.7%11.6%12869k
Ablation model54.6%46.2%19642k
AntisymmetricRNN58.7%48.3%25636k
AntisymmetricRNN w/ gating62.2%54.7%25637k
", + "bbox": [ + 214, + 569, + 785, + 655 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 NOISE PADDED CIFAR-10 ", + "text_level": 1, + "bbox": [ + 174, + 705, + 398, + 719 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To introduce more long-range dependencies to the pixel-by-pixel CIFAR-10 task, we define a more challenging task call the noise padded CIFAR-10, inspired by the noise padded experiments in Chen et al. (2018a). Instead of feeding in one pixel at one time, we input each row of a CIFAR-10 image at every time step. After the first 32 time steps, we input independent standard Gaussian noise for the remaining time steps. Since a CIFAR-10 image is of size 32 with three RGB channels, the input dimension is $m = 9 6$ . The total number of time steps is set to $T = 1 0 0 0$ . In other words, only the first 32 time steps of input contain salient information, all remaining 968 time steps are merely random noise. For a model to correctly classify an input image, it has to remember the information from a long time ago. This task is conceptually more difficult than the pixel-by-pixel CIFAR-10, although the total amount of signal in the input sequence is the same. The results are shown in Table 2. LSTM fails to train at all on this task while our proposed methods perform reasonably well with fewer parameters. ", + "bbox": [ + 174, + 732, + 825, + 898 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/dc62088bb56c80add338f8f3c68221e98d375809570dee8a3113a566b93497bc.jpg", + "image_caption": [ + "Figure 2: Mean and standard deviation of eigenvalues of the end-to-end Jacobian matrix in AntisymmetricRNNs with different diffusion constants and LSTMs, trained on the noise padded CIFAR-10. " + ], + "image_footnote": [], + "bbox": [ + 307, + 104, + 683, + 276 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To verify that AntisymmetricRNNs indeed mitigate the exploding/vanishing gradient issues, we conduct an additional set of experiments varying the length of noise padding so that the total time steps $T \\in \\{ 1 0 0 , 2 0 0 , 4 0 0 , 8 0 0 \\}$ . LSTMs and AntisymmetricRNNs with different diffusion constants $\\gamma \\in \\{ 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 , 5 , 1 0 \\}$ are trained on these tasks. Figure 2 visualizes the mean and standard deviation of the eigenvalues of the end-to-end Jacobian matrices for these networks. Unitary eigenvalues, i.e., mean close to 1 and standard deviation close to 0, indicate non-exploding and non-vanishing gradients. As shown in the figure, the eigenvalues for LSTMs quickly approaches zero as time steps increase, indicating vanishing gradients during back-propagation. This explains why LSTMs fail to train at all on this task. AntisymmetricRNNs with a broad range of diffusion constants $\\gamma$ , on the other hand, have eigenvalues centered around 1. It is worth noting though as the diffusion constant increases to large values, AntisymmetricRNNs run into vanishing gradients as well. The diffusion constant $\\gamma$ plays an important role in striking a balance between the stability of discretization and capturing long-term dependencies. ", + "bbox": [ + 174, + 349, + 825, + 530 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.4 ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 176, + 550, + 338, + 563 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For the CIFAR-10 experiments, we have also conducted an ablation study to further demonstrate the effect of antisymmetric weight matrix. The ablation model in Table 2 refers to the model that replaces the antisymmetric weight matrices in Equation 13 with unstructured weight matrices. As shown in Table 2, without the antisymmetric parametrization, the performance on both pixel-bypixel and noise padded CIFAR-10 is worse. ", + "bbox": [ + 174, + 577, + 825, + 645 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "It is worth mentioning that the antisymmetric formulation is a sufficient condition of stability, not necessary. There are possibly other conditions that lead to stability as well as suggested in Chen et al. (2018a), which could explain the modest degradation in the ablation results. ", + "bbox": [ + 174, + 654, + 823, + 695 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 717, + 318, + 733 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we present a new perspective on the trainability of RNNs from the dynamical system viewpoint. We draw connections between RNNs and the ordinary differential equation theory and design new recurrent architectures by discretizing ODEs. This new view opens up possibilities to exploit the computational and theoretical success from dynamical systems to understand and improve the trainability of RNNs. We also propose the AntisymmetricRNN, which is a discretization of ODEs that satisfy the critical criterion. Besides its appealing theoretical properties, our models have demonstrated competitive performance over strong recurrent baselines on a comprehensive set of benchmark tasks. ", + "bbox": [ + 174, + 750, + 825, + 861 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "By establishing a link between recurrent networks and ordinary differential equations, we anticipate that this work will inspire future research in both communities. An important item of future work is to investigate other stable ODEs and numerical methods that lead to novel and well-conditioned recurrent architectures. ", + "bbox": [ + 174, + 867, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 287, + 118 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Martin Arjovsky, Amar Shah, and Yoshua Bengio. Unitary evolution recurrent neural networks. In ICML, pp. 1120–1128, 2016. ", + "bbox": [ + 174, + 126, + 823, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Uri M Ascher and Linda R Petzold. Computer methods for ordinary differential equations and differential-algebraic equations, volume 61. Siam, 1998. ", + "bbox": [ + 173, + 162, + 823, + 193 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Uri M Ascher, Robert MM Mattheij, and Robert D Russell. Numerical solution of boundary value problems for ordinary differential equations, volume 13. Siam, 1994. ", + "bbox": [ + 173, + 200, + 825, + 231 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. ", + "bbox": [ + 173, + 238, + 825, + 268 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014. ", + "bbox": [ + 173, + 276, + 823, + 306 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yoshua Bengio, Patrice Simard, and Paolo Frasconi. Learning long-term dependencies with gradient descent is difficult. IEEE transactions on neural networks, 5(2):157–166, 1994. ", + "bbox": [ + 173, + 314, + 823, + 344 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bo Chang, Lili Meng, Eldad Haber, Lars Ruthotto, David Begert, and Elliot Holtham. Reversible architectures for arbitrarily deep residual neural networks. In AAAI, 2018a. ", + "bbox": [ + 173, + 352, + 821, + 382 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bo Chang, Lili Meng, Eldad Haber, Frederick Tung, and David Begert. Multi-level residual networks from dynamical systems view. In ICLR, 2018b. ", + "bbox": [ + 173, + 390, + 823, + 420 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field theory of RNNs: Gating enables signal propagation in recurrent neural networks. In ICML, pp. 873–882, 2018a. ", + "bbox": [ + 173, + 428, + 823, + 470 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tian Qi Chen, Yulia Rubanova, Jesse Bettencourt, and David Duvenaud. Neural ordinary differential equations. arXiv preprint arXiv:1806.07366, 2018b. ", + "bbox": [ + 171, + 479, + 823, + 508 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kyunghyun Cho, Bart van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder–decoder for statistical machine translation. In EMNLP, pp. 1724–1734, 2014. ", + "bbox": [ + 174, + 517, + 823, + 560 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jasmine Collins, Jascha Sohl-Dickstein, and David Sussillo. Capacity and trainability in recurrent neural networks. ICLR, 2016. ", + "bbox": [ + 173, + 568, + 823, + 598 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tim Cooijmans, Nicolas Ballas, Cesar Laurent, C¸ a ´ glar G ˘ ulc¸ehre, and Aaron Courville. Recurrent ¨ batch normalization. In ICLR, 2017. ", + "bbox": [ + 174, + 606, + 821, + 636 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John Duchi, Elad Hazan, and Yoram Singer. Adaptive subgradient methods for online learning and stochastic optimization. Journal of Machine Learning Research, 12(Jul):2121–2159, 2011. ", + "bbox": [ + 173, + 643, + 821, + 674 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Salah El Hihi and Yoshua Bengio. Hierarchical recurrent neural networks for long-term dependencies. In NIPS, pp. 493–499, 1996. ", + "bbox": [ + 173, + 681, + 820, + 712 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeffrey L Elman. Finding structure in time. Cognitive science, 14(2):179–211, 1990. ", + "bbox": [ + 174, + 719, + 730, + 736 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves, Abdel-rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recurrent neural networks. In ICASSP, pp. 6645–6649. IEEE, 2013. ", + "bbox": [ + 173, + 743, + 818, + 773 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Eldad Haber and Lars Ruthotto. Stable architectures for deep neural networks. Inverse Problems, 34(1):014004, 2017. ", + "bbox": [ + 173, + 781, + 821, + 810 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, pp. 770–778, 2016. ", + "bbox": [ + 174, + 819, + 820, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Balazs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk. Session-based rec-´ ommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939, 2015. ", + "bbox": [ + 174, + 857, + 820, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. ", + "bbox": [ + 174, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Stephanie L Hyland and Gunnar Ratsch. Learning unitary operators with help from u (n). In ¨ AAAI, pp. 2050–2058, 2017. \nSergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In ICML, pp. 448–456, 2015. \nCijo Jose, Moustpaha Cisse, and Francois Fleuret. Kronecker recurrent units. arXiv preprint arXiv:1705.10142, 2017. \nRafal Jozefowicz, Wojciech Zaremba, and Ilya Sutskever. An empirical exploration of recurrent network architectures. In ICML, pp. 2342–2350, 2015. \nRafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the limits of language modeling. arXiv preprint arXiv:1602.02410, 2016. \nSekitoshi Kanai, Yasuhiro Fujiwara, and Sotetsu Iwamura. Preventing gradient explosions in gated recurrent units. In NIPS, pp. 435–444, 2017. \nRyan Kiros, Yukun Zhu, Ruslan R Salakhutdinov, Richard Zemel, Raquel Urtasun, Antonio Torralba, and Sanja Fidler. Skip-thought vectors. In NIPS, pp. 3294–3302, 2015. \nAlex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. \nThomas Laurent and James von Brecht. A recurrent neural network without chaos. In ICLR, 2017. \nQuoc V Le, Navdeep Jaitly, and Geoffrey E Hinton. A simple way to initialize recurrent networks of rectified linear units. arXiv preprint arXiv:1504.00941, 2015. \nYann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. \nYiping Lu, Aoxiao Zhong, Quanzheng Li, and Bin Dong. Beyond finite layer neural networks: Bridging deep architectures and numerical differential equations. In ICML, pp. 3276–3285, 2018. \nTomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent \\` neural network based language model. In Interspeech, volume 2, pp. 3, 2010. \nTomas Mikolov, Armand Joulin, Sumit Chopra, Michael Mathieu, and Marc’Aurelio Ranzato. Learning longer memory in recurrent neural networks. arXiv preprint arXiv:1412.7753, 2014. \nDmytro Mishkin and Jiri Matas. All you need is a good init. arXiv preprint arXiv:1511.06422, 2015. \nRazvan Pascanu, Tomas Mikolov, and Yoshua Bengio. Understanding the exploding gradient problem. CoRR, abs/1211.5063, 2012. \nRazvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural networks. In ICML, pp. 1310–1318, 2013. \nJeffrey Pennington, Sam Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning through dynamical isometry: theory and practice. NIPS, 2017. \nDavid E Rumelhart, Geoffrey E Hinton, and Ronald J Williams. Learning representations by backpropagating errors. nature, 323(6088):533, 1986. \nAndrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013. \nRichard Socher, Cliff C Lin, Chris Manning, and Andrew Y Ng. Parsing natural scenes and natural language with recursive neural networks. In ICML, pp. 129–136, 2011. \nCorentin Tallec and Yann Ollivier. Can recurrent neural networks warp time? In ICLR, 2018. \nEugene Vorontsov, Chiheb Trabelsi, Samuel Kadoury, and Chris Pal. On orthogonality and learning recurrent networks with long term dependencies. In ICML, pp. 3570–3578, 2017. \nScott Wisdom, Thomas Powers, John Hershey, Jonathan Le Roux, and Les Atlas. Full-capacity unitary recurrent neural networks. In NIPS, pp. 4880–4888, 2016. \nChao-Yuan Wu, Amr Ahmed, Alex Beutel, Alexander J Smola, and How Jing. Recurrent recommender networks. In WSDM, pp. 495–503. ACM, 2017. \nDi Xie, Jiang Xiong, and Shiliang Pu. All you need is beyond a good init: Exploring better solution for training extremely deep convolutional neural networks with orthonormality and modulation. arXiv preprint arXiv:1703.01827, 2017. \nFisher Yu and Vladlen Koltun. Multi-scale context aggregation by dilated convolutions. arXiv preprint arXiv:1511.07122, 2015. \nBoxuan Yue, Junwei Fu, and Jun Liang. Residual recurrent neural networks for learning sequential representations. Information, 9(3):56, 2018. \nJiong Zhang, Qi Lei, and Inderjit Dhillon. Stabilizing gradients for deep neural networks via efficient SVD parameterization. In ICML, pp. 5806–5814, 2018a. \nJiong Zhang, Yibo Lin, Zhao Song, and Inderjit Dhillon. Learning long term dependencies via Fourier recurrent units. In ICML, pp. 5815–5823, 2018b. ", + "bbox": [ + 171, + 54, + 828, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 102, + 828, + 371 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A AN OVERVIEW OF STABILITY THEORY ", + "text_level": 1, + "bbox": [ + 174, + 396, + 524, + 411 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In this section, we provide a brief overview of the stability theory by examples. Most of the materials are adapted from Ascher & Petzold (1998). ", + "bbox": [ + 174, + 425, + 823, + 455 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Consider the simple scalar ODE, often referred to as the test equation: $y ^ { \\prime } ( t ) = \\lambda y ( t )$ , where $\\lambda \\in \\mathbb { C }$ is a constant. We allow $\\lambda$ to be complex because it later represents an eigenvalue of a system’s matrix. The solution to this initial value problem is $y ( t ) \\stackrel { \\bullet } { = } e ^ { \\lambda t } y ( 0 )$ . If $y ( t )$ and $\\tilde { y } ( t )$ are two solutions of the test equation, then their difference at any time $t$ is ", + "bbox": [ + 173, + 462, + 825, + 517 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/ea067c6dbcabf4a4ed41fcfe08e9725db146a776e5d853833f68fa6789ea306d.jpg", + "text": "$$\n| y ( t ) - \\tilde { y } ( t ) | = | e ^ { \\lambda t } ( y ( 0 ) - \\tilde { y } ( 0 ) ) | = e ^ { R e ( \\lambda ) t } | y ( 0 ) - \\tilde { y } ( 0 ) | .\n$$", + "text_format": "latex", + "bbox": [ + 302, + 523, + 696, + 542 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "If $R e ( \\lambda ) > 0$ , then a small perturbation of the initial states would cause an exponentially exploding difference. If $R e ( \\lambda ) ~ < ~ 0$ , the system is stable, but the perturbation decays exponentially. The perturbation is preserved in the system only if $R e ( \\lambda ) = 0$ . ", + "bbox": [ + 174, + 547, + 825, + 590 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We now consider the extension of the test equation to a matrix ODE $\\mathbf { \\boldsymbol { y } } ^ { \\prime } ( t ) = \\mathbf { \\boldsymbol { A } } \\mathbf { \\boldsymbol { y } } ( t )$ . The solution is $\\pmb { y } ( t ) = e ^ { \\pmb { A } t } \\pmb { y } ( 0 )$ . To simplify the analysis, we assume $\\pmb { A }$ is diagonalizable, i.e., $\\pmb { P } ^ { - 1 } \\pmb { A } \\pmb { P } = \\pmb { \\Lambda }$ , where $\\pmb { \\Lambda }$ is a diagonal matrix of the eigenvalues of $\\pmb { A }$ and the columns of $_ { r }$ are the corresponding eigenvectors. If we define ${ \\pmb w } ( t ) = { \\pmb P } ^ { - 1 } { \\pmb y } ( t )$ , then ${ \\pmb w } ^ { \\prime } ( t ) = { \\pmb \\Lambda } { \\pmb w } ( t )$ . The system for ${ \\mathbf { } } w ( t )$ is decoupled: for each component $w _ { i } ( t )$ of ${ \\mathbf { } } w ( t )$ , we have a test equation $w _ { i } ^ { \\prime } ( t ) \\stackrel { \\cdot } { = } \\lambda _ { i } w _ { i } ( t )$ . Therefore, the stability for ${ \\pmb w } ( t )$ , hence also for ${ \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf } { \\mathbf { } } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf \\mathbf $ , is determined by the eigenvalues $\\lambda _ { i }$ . ", + "bbox": [ + 173, + 597, + 825, + 683 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B PROOF OF A PROPOSITION ", + "text_level": 1, + "bbox": [ + 176, + 702, + 426, + 717 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In this section, we provide a proof of a proposition which implies that the AntisymmetricRNN and AntisymmetricRNN with gating satisfy the critical criterion, i.e., the eigenvalues of the Jacobian matrix are imaginary. The proof is adapted from Chang et al. (2018a). ", + "bbox": [ + 174, + 732, + 826, + 775 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proposition 3. If $W \\in \\mathbb { R } ^ { n \\times n }$ is an antisymmetric matrix and $\\ b { D } \\in \\mathbb { R } ^ { n \\times n }$ is an invertible diagonal matrix, then the eigenvalues of $\\pmb { D W }$ are imaginary. ", + "bbox": [ + 171, + 777, + 823, + 808 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/16e2a387b65363446063c83771c787fdf44195192b37bf05423347a42921db55.jpg", + "text": "$$\nR e ( \\lambda _ { i } ( D W ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n .\n$$", + "text_format": "latex", + "bbox": [ + 367, + 813, + 630, + 830 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof. Let $\\lambda$ and $\\textbf { { v } }$ be a pair of eigenvalue and eigenvector of $\\pmb { D W }$ , then ", + "bbox": [ + 173, + 843, + 655, + 858 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/94f306dff1290b5fb3463a0e647ea3cd39f3e79f2a851cc5f3e573707bbf83f1.jpg", + "text": "$$\n\\begin{array} { c } { { D W v = \\lambda v , } } \\\\ { { W v = \\lambda D ^ { - 1 } v , } } \\\\ { { v ^ { * } W v = \\lambda ( v ^ { * } D ^ { - 1 } v ) , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 418, + 863, + 578, + 922 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "On one hand, ${ \\pmb v } ^ { * } { \\pmb D } ^ { - 1 } { \\pmb v }$ is real. On the other hand, ", + "bbox": [ + 176, + 103, + 501, + 118 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/18ef60292eb7a3b8e94668abeb68d24533215703aa70ad3747d422df0b39624e.jpg", + "text": "$$\n( v ^ { * } W v ) ^ { * } = v ^ { * } W ^ { * } v = - v ^ { * } W v ,\n$$", + "text_format": "latex", + "bbox": [ + 380, + 125, + 614, + 142 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $^ *$ represents conjugate transpose. It implies that ${ \\boldsymbol { v } } ^ { * } { \\boldsymbol { W } } { \\boldsymbol { v } }$ is imaginary. Therefore, $\\lambda$ has to be imaginary. As a result, all eigenvalues of $\\pmb { D W }$ are imaginary. □ ", + "bbox": [ + 173, + 148, + 826, + 178 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C EXPERIMENTAL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 198, + 416, + 213 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Let $m$ be the input dimension and $n$ be the number of hidden units. The input to hidden matrices are initialized to $\\bar { \\mathcal { N } } ( 0 , 1 / m )$ . The hidden to hidden matrices are initialized to $\\bar { \\mathcal { N } } ( 0 , \\sigma _ { w } ^ { 2 } / n )$ , where $\\sigma _ { w }$ is chosen from $\\sigma _ { w } \\in \\{ 0 , 1 , 2 , 4 , 8 , 1 6 \\}$ . The bias terms are initialized to zero, except the forget gate bias of LSTM is initialized to 1, as suggested by Jozefowicz et al. (2015). For AntisymmetricRNNs, the step size $\\epsilon \\in \\{ 0 . 0 1 , 0 . 1 , 1 \\}$ and diffusion $\\gamma \\in \\lbrace 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 . 0 \\rbrace$ . We use SGD with momentum and Adagrad (Duchi et al., 2011) as optimizers, with batch size of 128 and learning rate chosen from $\\{ 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 , 0 . 7 5 , 1 \\}$ . On MNIST and pixel-by-pixel CIFAR-10, all the models are trained for 50,000 iterations. On noise padded CIFAR-10, models are trained for 10,000 iterations. We use the standard train/test split of MNIST and CIFAR-10. The performance measure is the classification accuracy evaluated on the test set. ", + "bbox": [ + 173, + 228, + 825, + 368 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "D ADDITIONAL VISUALIZATIONS ", + "text_level": 1, + "bbox": [ + 176, + 388, + 464, + 405 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this section, we present additional visualizations that are related to the simulation study in Section 4. Figure 3 and 4 show the dynamics of vanilla RNNs and AntisymmetricRNNs with standard Gaussian random weights using different seeds. These visualizations further illustrate the random behavior of a vanilla RNN and the predictable dynamics of an AntisymmetricRNN. ", + "bbox": [ + 174, + 420, + 825, + 476 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Figure 5 shows the dynamics of AntisymmetricRNNs with independent standard Gaussian input. \nThis shows that the dynamics become noisier compared to Figure 1, but the trend remains the same. ", + "bbox": [ + 173, + 482, + 821, + 512 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/af56ab1a9ad6434e2c42f09f694c286b94dde568787aced6f5c97395e47c7d3b.jpg", + "image_caption": [ + "Figure 3: Visualization of the dynamics of vanilla RNNs with standard Gaussian random weights, using seeds from 1 to 16. " + ], + "image_footnote": [], + "bbox": [ + 209, + 275, + 785, + 710 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/9d3db63ba5e4d101e28325552839dc4269331c8b18c379d043cdb087dc6176d3.jpg", + "image_caption": [ + "Figure 4: Visualization of the dynamics of RNN with feedback with standard Gaussian random weights, using seeds from 1 to 16, diffusion strength $\\gamma = 0 . 1$ . " + ], + "image_footnote": [], + "bbox": [ + 209, + 138, + 785, + 571 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/8ce9b81ff6e57ebb11af09e775f759cb7b8d30d4c27b2a12b1b87256b00b8379.jpg", + "image_caption": [ + "Figure 5: Visualization of the dynamics of RNN with feedback with independent standard Gaussian input. " + ], + "image_footnote": [], + "bbox": [ + 176, + 691, + 821, + 847 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/ryxepo0cFX/ryxepo0cFX_middle.json b/parse/train/ryxepo0cFX/ryxepo0cFX_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..95f4b0fca8a8de217d306ba76c73c7eae295f692 --- /dev/null +++ b/parse/train/ryxepo0cFX/ryxepo0cFX_middle.json @@ -0,0 +1,39223 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ANTISYMMETRICRNN: A DYNAMICAL SYSTEM VIEW", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 385, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 385, + 118 + ], + "score": 1.0, + "content": "ON RECURRENT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 238, + 179 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 162, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 162, + 149 + ], + "score": 1.0, + "content": "Bo Chang∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 239, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 239, + 158 + ], + "score": 1.0, + "content": "University of British Columbia", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 157, + 210, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 210, + 168 + ], + "score": 1.0, + "content": "Vancouver, BC, Canada", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 168, + 222, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 222, + 180 + ], + "score": 1.0, + "content": "bchang@stat.ubc.ca", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 250, + 135, + 359, + 180 + ], + "lines": [ + { + "bbox": [ + 249, + 134, + 313, + 147 + ], + "spans": [ + { + "bbox": [ + 249, + 134, + 313, + 147 + ], + "score": 1.0, + "content": "Minmin Chen", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 250, + 146, + 308, + 158 + ], + "spans": [ + { + "bbox": [ + 250, + 146, + 308, + 158 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 250, + 157, + 358, + 168 + ], + "spans": [ + { + "bbox": [ + 250, + 157, + 358, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA, USA", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 250, + 168, + 361, + 181 + ], + "spans": [ + { + "bbox": [ + 250, + 168, + 361, + 181 + ], + "score": 1.0, + "content": "minminc@google.com", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 372, + 135, + 498, + 179 + ], + "lines": [ + { + "bbox": [ + 372, + 134, + 431, + 146 + ], + "spans": [ + { + "bbox": [ + 372, + 134, + 431, + 146 + ], + "score": 1.0, + "content": "Eldad Haber", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 372, + 146, + 499, + 158 + ], + "spans": [ + { + "bbox": [ + 372, + 146, + 499, + 158 + ], + "score": 1.0, + "content": "University of British Columbia", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 372, + 158, + 470, + 168 + ], + "spans": [ + { + "bbox": [ + 372, + 158, + 470, + 168 + ], + "score": 1.0, + "content": "Vancouver, BC, Canada", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 372, + 168, + 477, + 180 + ], + "spans": [ + { + "bbox": [ + 372, + 168, + 477, + 180 + ], + "score": 1.0, + "content": "haber@math.ubc.ca", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 112, + 196, + 219, + 241 + ], + "lines": [ + { + "bbox": [ + 111, + 195, + 159, + 207 + ], + "spans": [ + { + "bbox": [ + 111, + 195, + 159, + 207 + ], + "score": 1.0, + "content": "Ed H. Chi", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 111, + 207, + 169, + 219 + ], + "spans": [ + { + "bbox": [ + 111, + 207, + 169, + 219 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 111, + 218, + 220, + 230 + ], + "spans": [ + { + "bbox": [ + 111, + 218, + 220, + 230 + ], + "score": 1.0, + "content": "Mountain View, CA, USA", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 111, + 229, + 212, + 242 + ], + "spans": [ + { + "bbox": [ + 111, + 229, + 212, + 242 + ], + "score": 1.0, + "content": "edchi@google.com", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 278, + 270, + 333, + 281 + ], + "lines": [ + { + "bbox": [ + 276, + 269, + 335, + 282 + ], + "spans": [ + { + "bbox": [ + 276, + 269, + 335, + 282 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 143, + 294, + 468, + 448 + ], + "lines": [ + { + "bbox": [ + 141, + 294, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 469, + 307 + ], + "score": 1.0, + "content": "Recurrent neural networks have gained widespread use in modeling sequential", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "score": 1.0, + "content": "data. Learning long-term dependencies using these models remains difficult", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 317, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 469, + 328 + ], + "score": 1.0, + "content": "though, due to exploding or vanishing gradients. In this paper, we draw connec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 327, + 469, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 339 + ], + "score": 1.0, + "content": "tions between recurrent networks and ordinary differential equations. A special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 338, + 469, + 350 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 469, + 350 + ], + "score": 1.0, + "content": "form of recurrent networks called the AntisymmetricRNN is proposed under this", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "score": 1.0, + "content": "theoretical framework, which is able to capture long-term dependencies thanks to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "the stability property of its underlying differential equation. Existing approaches", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 372, + 469, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 469, + 383 + ], + "score": 1.0, + "content": "to improving RNN trainability often incur significant computation overhead. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "score": 1.0, + "content": "comparison, AntisymmetricRNN achieves the same goal by design. We showcase", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "the advantage of this new architecture through extensive simulations and experi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 403, + 469, + 416 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 416 + ], + "score": 1.0, + "content": "ments. AntisymmetricRNN exhibits much more predictable dynamics. It outper-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 415, + 469, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 469, + 427 + ], + "score": 1.0, + "content": "forms regular LSTM models on tasks requiring long-term memory and matches", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 425, + 470, + 440 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 470, + 440 + ], + "score": 1.0, + "content": "the performance on tasks where short-term dependencies dominate despite being", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 438, + 201, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 201, + 450 + ], + "score": 1.0, + "content": "much simpler.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 206, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 208, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 208, + 484 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 506 + ], + "score": 1.0, + "content": "Recurrent neural networks (RNNs) (Rumelhart et al., 1986; Elman, 1990) have found widespread", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "use across a variety of domains from language modeling (Mikolov et al., 2010; Kiros et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "2015; Jozefowicz et al., 2016) and machine translation (Bahdanau et al., 2014) to speech recogni-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "tion (Graves et al., 2013) and recommendation systems (Hidasi et al., 2015; Wu et al., 2017). Model-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "ing complex temporal dependencies in sequential data using RNNs, especially the long-term depen-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "dencies, remains an open challenge. The main difficulty arises as the error signal back-propagated", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "through time (BPTT) suffers from exponential growth or decay, a dilemma commonly referred to as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 408, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 408, + 583 + ], + "score": 1.0, + "content": "exploding or vanishing gradient (Pascanu et al., 2012; Bengio et al., 1994).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 587, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Vanilla RNNs as originally proposed are particularly prone to these issues and are rarely used in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "score": 1.0, + "content": "practice. Gated variants of RNNs, such as long short-term memory (LSTM) networks (Hochreiter", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "& Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) that feature various forms", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "of “gating” are proposed to alleviate these issues. The gates allow information to flow from inputs", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "at any previous time steps to the end of the sequence more easily, partially addressing the vanishing", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "gradient problem (Collins et al., 2016). In practice, these models must be paired with techniques", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "score": 1.0, + "content": "such as normalization layers (Ioffe & Szegedy, 2015; Ba et al., 2016) and gradient clipping (Pascanu", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 664, + 276, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 276, + 677 + ], + "score": 1.0, + "content": "et al., 2013) to achieve good performance.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 108, + 681, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "Identity and orthogonal initialization is another proposed solution to the exploding or vanishing", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "gradient problem of deep neural networks (Le et al., 2015; Mishkin & Matas, 2015; Saxe et al.,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 703, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 505, + 716 + ], + "score": 1.0, + "content": "2013; Chen et al., 2018a). Recently, Arjovsky et al. (2016); Wisdom et al. (2016); Hyland & Ratsch ¨", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 721, + 302, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 302, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 302, + 734 + ], + "score": 1.0, + "content": "∗Work performed while interning at Google Brain.", + "type": "text" + } + ] + } + ] + }, + { + "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 2019", + "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": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ANTISYMMETRICRNN: A DYNAMICAL SYSTEM VIEW", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 385, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 385, + 118 + ], + "score": 1.0, + "content": "ON RECURRENT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 238, + 179 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 162, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 162, + 149 + ], + "score": 1.0, + "content": "Bo Chang∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 239, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 239, + 158 + ], + "score": 1.0, + "content": "University of British Columbia", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 157, + 210, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 210, + 168 + ], + "score": 1.0, + "content": "Vancouver, BC, Canada", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 168, + 222, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 222, + 180 + ], + "score": 1.0, + "content": "bchang@stat.ubc.ca", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5, + "bbox_fs": [ + 111, + 133, + 239, + 180 + ] + }, + { + "type": "list", + "bbox": [ + 250, + 135, + 359, + 180 + ], + "lines": [ + { + "bbox": [ + 249, + 134, + 313, + 147 + ], + "spans": [ + { + "bbox": [ + 249, + 134, + 313, + 147 + ], + "score": 1.0, + "content": "Minmin Chen", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 250, + 146, + 308, + 158 + ], + "spans": [ + { + "bbox": [ + 250, + 146, + 308, + 158 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 250, + 157, + 358, + 168 + ], + "spans": [ + { + "bbox": [ + 250, + 157, + 358, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA, USA", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 250, + 168, + 361, + 181 + ], + "spans": [ + { + "bbox": [ + 250, + 168, + 361, + 181 + ], + "score": 1.0, + "content": "minminc@google.com", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5, + "bbox_fs": [ + 249, + 134, + 361, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 372, + 135, + 498, + 179 + ], + "lines": [ + { + "bbox": [ + 372, + 134, + 431, + 146 + ], + "spans": [ + { + "bbox": [ + 372, + 134, + 431, + 146 + ], + "score": 1.0, + "content": "Eldad Haber", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 372, + 146, + 499, + 158 + ], + "spans": [ + { + "bbox": [ + 372, + 146, + 499, + 158 + ], + "score": 1.0, + "content": "University of British Columbia", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 372, + 158, + 470, + 168 + ], + "spans": [ + { + "bbox": [ + 372, + 158, + 470, + 168 + ], + "score": 1.0, + "content": "Vancouver, BC, Canada", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 372, + 168, + 477, + 180 + ], + "spans": [ + { + "bbox": [ + 372, + 168, + 477, + 180 + ], + "score": 1.0, + "content": "haber@math.ubc.ca", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8.5, + "bbox_fs": [ + 372, + 134, + 499, + 180 + ] + }, + { + "type": "list", + "bbox": [ + 112, + 196, + 219, + 241 + ], + "lines": [ + { + "bbox": [ + 111, + 195, + 159, + 207 + ], + "spans": [ + { + "bbox": [ + 111, + 195, + 159, + 207 + ], + "score": 1.0, + "content": "Ed H. Chi", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 207, + 169, + 219 + ], + "spans": [ + { + "bbox": [ + 111, + 207, + 169, + 219 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 218, + 220, + 230 + ], + "spans": [ + { + "bbox": [ + 111, + 218, + 220, + 230 + ], + "score": 1.0, + "content": "Mountain View, CA, USA", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 229, + 212, + 242 + ], + "spans": [ + { + "bbox": [ + 111, + 229, + 212, + 242 + ], + "score": 1.0, + "content": "edchi@google.com", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 111, + 195, + 220, + 242 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 270, + 333, + 281 + ], + "lines": [ + { + "bbox": [ + 276, + 269, + 335, + 282 + ], + "spans": [ + { + "bbox": [ + 276, + 269, + 335, + 282 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 143, + 294, + 468, + 448 + ], + "lines": [ + { + "bbox": [ + 141, + 294, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 469, + 307 + ], + "score": 1.0, + "content": "Recurrent neural networks have gained widespread use in modeling sequential", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 318 + ], + "score": 1.0, + "content": "data. Learning long-term dependencies using these models remains difficult", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 317, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 469, + 328 + ], + "score": 1.0, + "content": "though, due to exploding or vanishing gradients. In this paper, we draw connec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 327, + 469, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 469, + 339 + ], + "score": 1.0, + "content": "tions between recurrent networks and ordinary differential equations. A special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 338, + 469, + 350 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 469, + 350 + ], + "score": 1.0, + "content": "form of recurrent networks called the AntisymmetricRNN is proposed under this", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 469, + 362 + ], + "score": 1.0, + "content": "theoretical framework, which is able to capture long-term dependencies thanks to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 470, + 373 + ], + "score": 1.0, + "content": "the stability property of its underlying differential equation. Existing approaches", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 372, + 469, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 469, + 383 + ], + "score": 1.0, + "content": "to improving RNN trainability often incur significant computation overhead. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "score": 1.0, + "content": "comparison, AntisymmetricRNN achieves the same goal by design. We showcase", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "the advantage of this new architecture through extensive simulations and experi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 403, + 469, + 416 + ], + "spans": [ + { + "bbox": [ + 141, + 403, + 469, + 416 + ], + "score": 1.0, + "content": "ments. AntisymmetricRNN exhibits much more predictable dynamics. It outper-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 415, + 469, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 469, + 427 + ], + "score": 1.0, + "content": "forms regular LSTM models on tasks requiring long-term memory and matches", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 425, + 470, + 440 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 470, + 440 + ], + "score": 1.0, + "content": "the performance on tasks where short-term dependencies dominate despite being", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 438, + 201, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 201, + 450 + ], + "score": 1.0, + "content": "much simpler.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 25.5, + "bbox_fs": [ + 141, + 294, + 470, + 450 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 206, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 208, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 208, + 484 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 506 + ], + "score": 1.0, + "content": "Recurrent neural networks (RNNs) (Rumelhart et al., 1986; Elman, 1990) have found widespread", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "use across a variety of domains from language modeling (Mikolov et al., 2010; Kiros et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "2015; Jozefowicz et al., 2016) and machine translation (Bahdanau et al., 2014) to speech recogni-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "tion (Graves et al., 2013) and recommendation systems (Hidasi et al., 2015; Wu et al., 2017). Model-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "ing complex temporal dependencies in sequential data using RNNs, especially the long-term depen-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "dencies, remains an open challenge. The main difficulty arises as the error signal back-propagated", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "through time (BPTT) suffers from exponential growth or decay, a dilemma commonly referred to as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 408, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 408, + 583 + ], + "score": 1.0, + "content": "exploding or vanishing gradient (Pascanu et al., 2012; Bengio et al., 1994).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 494, + 506, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 587, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Vanilla RNNs as originally proposed are particularly prone to these issues and are rarely used in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "score": 1.0, + "content": "practice. Gated variants of RNNs, such as long short-term memory (LSTM) networks (Hochreiter", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "& Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al., 2014) that feature various forms", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "of “gating” are proposed to alleviate these issues. The gates allow information to flow from inputs", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "at any previous time steps to the end of the sequence more easily, partially addressing the vanishing", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "gradient problem (Collins et al., 2016). In practice, these models must be paired with techniques", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "score": 1.0, + "content": "such as normalization layers (Ioffe & Szegedy, 2015; Ba et al., 2016) and gradient clipping (Pascanu", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 664, + 276, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 276, + 677 + ], + "score": 1.0, + "content": "et al., 2013) to achieve good performance.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 587, + 506, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 681, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "Identity and orthogonal initialization is another proposed solution to the exploding or vanishing", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "gradient problem of deep neural networks (Le et al., 2015; Mishkin & Matas, 2015; Saxe et al.,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 703, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 505, + 716 + ], + "score": 1.0, + "content": "2013; Chen et al., 2018a). Recently, Arjovsky et al. (2016); Wisdom et al. (2016); Hyland & Ratsch ¨", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "(2017); Xie et al. (2017); Zhang et al. (2018a) advocate going beyond initialization and forcing", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "the weight matrices to be orthogonal throughout the entire learning process. However, some of", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "these approaches come with significant computational overhead and reportedly hinder representation", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "power of these models (Vorontsov et al., 2017). Moreover, orthogonal weight matrices alone do not", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "prevent exploding and vanishing gradients, due to the nonlinear nature of deep neural networks as", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 249, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 249, + 149 + ], + "score": 1.0, + "content": "shown in (Pennington et al., 2017).", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 680, + 505, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "(2017); Xie et al. (2017); Zhang et al. (2018a) advocate going beyond initialization and forcing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "the weight matrices to be orthogonal throughout the entire learning process. However, some of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "these approaches come with significant computational overhead and reportedly hinder representation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "power of these models (Vorontsov et al., 2017). Moreover, orthogonal weight matrices alone do not", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "prevent exploding and vanishing gradients, due to the nonlinear nature of deep neural networks as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 249, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 249, + 149 + ], + "score": 1.0, + "content": "shown in (Pennington et al., 2017).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Here we offer a new perspective on the trainability of RNNs from the dynamical system view-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "point. While exploding gradient is a manifestation of the instability of the underlying dynamical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "system, vanishing gradient results from a lossy system, properties that have been widely studied in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "the dynamical system literature (Haber & Ruthotto, 2017; Laurent & von Brecht, 2017). The main", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 227, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 227, + 210 + ], + "score": 1.0, + "content": "contributions of the work are:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 132, + 220, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 133, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 133, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "• We draw connections between RNNs and the ordinary differential equation theory and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 232, + 372, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 372, + 244 + ], + "score": 1.0, + "content": "design new recurrent architectures by discretizing ODEs.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 132, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "• The stability of the ODE solutions and the numerical methods for solving ODEs lead us to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "design a special form of RNNs, which we name AntisymmetricRNN, that can capture long-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 272, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 142, + 272, + 505, + 283 + ], + "score": 1.0, + "content": "term dependencies in the inputs. The construction of the model is much simpler compared", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 282, + 367, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 367, + 295 + ], + "score": 1.0, + "content": "to the existing methods for improving RNN trainability.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 138, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 138, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "We conduct extensive simulations and experiments to demonstrate the benefits of this new", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "RNN architecture. AntisymmetricRNN exhibits well-behaved dynamics and outperforms", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 323, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 142, + 323, + 505, + 334 + ], + "score": 1.0, + "content": "the regular LSTM model on tasks requiring long-term memory, and matches its perfor-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 334, + 491, + 345 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 491, + 345 + ], + "score": 1.0, + "content": "mance on tasks where short-term dependencies dominate with much fewer parameters.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 209, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 210, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 210, + 378 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "Trainability of RNNs. Capturing long-term dependencies using RNNs has been a long-standing", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 403, + 504, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 504, + 414 + ], + "score": 1.0, + "content": "research topic with various approaches proposed. The first group of approaches mitigates the ex-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "ploding or vanishing gradient issues by introducing some forms of gating. Long short-term memory", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "networks (LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "score": 1.0, + "content": "2014) are the most prominent models along this line of work. Parallel efforts include designing", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "special neural architectures, such as hierarchical RNNs (El Hihi & Bengio, 1996), recursive neural", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "networks (Socher et al., 2011), attention networks (Bahdanau et al., 2014), dilated convolutions (Yu", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "& Koltun, 2015), recurrent batch normalization (Cooijmans et al., 2017), residual RNNs (Yue et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "2018), and Fourier recurrent units (Zhang et al., 2018b). These, however, are fundamentally different", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 489, + 242, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 242, + 501 + ], + "score": 1.0, + "content": "networks with different tradeoffs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "Another direction is to constrain the weight matrices of an RNN so that the back-propagated error", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "signal is well conditioned, in particular, the input-output Jacobian having unitary singular values.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Le et al. (2015); Mikolov et al. (2014); Mishkin & Matas (2015) propose the use of identity or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "orthogonal matrix to initialize the recurrent weight matrix. Followup works further constrain the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "weight matrix throughout the entire learning process either through re-parametrization (Arjovsky", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "et al., 2016), geodesic gradient descent on the Stiefel manifold (Wisdom et al., 2016; Vorontsov", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "et al., 2017), or constraining the singular values (Jose et al., 2017; Kanai et al., 2017; Zhang et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "2018a). It is worth noting that, orthogonal weights by themselves do not guarantee unitary Jaco-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "bians. Nonlinear activations still cause the gradients to explode or vanish. Contractive maps such as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "sigmoid and hyperbolic tangent lead to vanishing gradients. Chen et al. (2018a) offer an initializa-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "tion scheme taking into account the nonlinearity. However, the theory developed relies heavily on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "the random matrix assumptions, which only hold at the initialization point of training. Although it", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 639, + 345, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 345, + 650 + ], + "score": 1.0, + "content": "has been shown to predict trainability beyond initialization.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Dynamical systems view of recurrent networks. Connections between dynamical systems and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "RNNs have not been well explored. Laurent & von Brecht (2017) study the behavior of dynamical", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "systems induced by recurrent networks, and show that LSTMs and GRUs exhibit chaotic dynamics", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "in the absence of input data. They propose a simplified gated RNN named the chaos free network", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(CFN), that has non-chaotic dynamics and achieves comparable performance to LSTMs and GRUs", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "on language modeling. Tallec & Ollivier (2018) formulate RNNs as a time-discretized version of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "ODE and show that time invariance leads to gate-like mechanisms in RNNs. With this formulation,", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "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 2019", + "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, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 81, + 506, + 149 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Here we offer a new perspective on the trainability of RNNs from the dynamical system view-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "point. While exploding gradient is a manifestation of the instability of the underlying dynamical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "system, vanishing gradient results from a lossy system, properties that have been widely studied in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "the dynamical system literature (Haber & Ruthotto, 2017; Laurent & von Brecht, 2017). The main", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 227, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 227, + 210 + ], + "score": 1.0, + "content": "contributions of the work are:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 154, + 505, + 210 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 220, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 133, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 133, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "• We draw connections between RNNs and the ordinary differential equation theory and", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 232, + 372, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 372, + 244 + ], + "score": 1.0, + "content": "design new recurrent architectures by discretizing ODEs.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 132, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "• The stability of the ODE solutions and the numerical methods for solving ODEs lead us to", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "design a special form of RNNs, which we name AntisymmetricRNN, that can capture long-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 272, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 142, + 272, + 505, + 283 + ], + "score": 1.0, + "content": "term dependencies in the inputs. The construction of the model is much simpler compared", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 282, + 367, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 367, + 295 + ], + "score": 1.0, + "content": "to the existing methods for improving RNN trainability.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 138, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 138, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "We conduct extensive simulations and experiments to demonstrate the benefits of this new", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "RNN architecture. AntisymmetricRNN exhibits well-behaved dynamics and outperforms", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 323, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 142, + 323, + 505, + 334 + ], + "score": 1.0, + "content": "the regular LSTM model on tasks requiring long-term memory, and matches its perfor-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 334, + 491, + 345 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 491, + 345 + ], + "score": 1.0, + "content": "mance on tasks where short-term dependencies dominate with much fewer parameters.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 132, + 219, + 505, + 345 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 209, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 210, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 210, + 378 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "Trainability of RNNs. Capturing long-term dependencies using RNNs has been a long-standing", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 403, + 504, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 504, + 414 + ], + "score": 1.0, + "content": "research topic with various approaches proposed. The first group of approaches mitigates the ex-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "ploding or vanishing gradient issues by introducing some forms of gating. Long short-term memory", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "networks (LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent units (GRU) (Cho et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "score": 1.0, + "content": "2014) are the most prominent models along this line of work. Parallel efforts include designing", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "special neural architectures, such as hierarchical RNNs (El Hihi & Bengio, 1996), recursive neural", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "networks (Socher et al., 2011), attention networks (Bahdanau et al., 2014), dilated convolutions (Yu", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "& Koltun, 2015), recurrent batch normalization (Cooijmans et al., 2017), residual RNNs (Yue et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "2018), and Fourier recurrent units (Zhang et al., 2018b). These, however, are fundamentally different", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 489, + 242, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 242, + 501 + ], + "score": 1.0, + "content": "networks with different tradeoffs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 390, + 506, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "Another direction is to constrain the weight matrices of an RNN so that the back-propagated error", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "signal is well conditioned, in particular, the input-output Jacobian having unitary singular values.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Le et al. (2015); Mikolov et al. (2014); Mishkin & Matas (2015) propose the use of identity or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "orthogonal matrix to initialize the recurrent weight matrix. Followup works further constrain the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "weight matrix throughout the entire learning process either through re-parametrization (Arjovsky", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "et al., 2016), geodesic gradient descent on the Stiefel manifold (Wisdom et al., 2016; Vorontsov", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "et al., 2017), or constraining the singular values (Jose et al., 2017; Kanai et al., 2017; Zhang et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "2018a). It is worth noting that, orthogonal weights by themselves do not guarantee unitary Jaco-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "bians. Nonlinear activations still cause the gradients to explode or vanish. Contractive maps such as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "sigmoid and hyperbolic tangent lead to vanishing gradients. Chen et al. (2018a) offer an initializa-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "tion scheme taking into account the nonlinearity. However, the theory developed relies heavily on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "the random matrix assumptions, which only hold at the initialization point of training. Although it", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 639, + 345, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 345, + 650 + ], + "score": 1.0, + "content": "has been shown to predict trainability beyond initialization.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 505, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Dynamical systems view of recurrent networks. Connections between dynamical systems and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "RNNs have not been well explored. Laurent & von Brecht (2017) study the behavior of dynamical", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "systems induced by recurrent networks, and show that LSTMs and GRUs exhibit chaotic dynamics", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "in the absence of input data. They propose a simplified gated RNN named the chaos free network", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(CFN), that has non-chaotic dynamics and achieves comparable performance to LSTMs and GRUs", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "on language modeling. Tallec & Ollivier (2018) formulate RNNs as a time-discretized version of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "ODE and show that time invariance leads to gate-like mechanisms in RNNs. With this formulation,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "the authors propose an initialization scheme by setting the initial gate bias according to the range of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 228, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 228, + 107 + ], + "score": 1.0, + "content": "time dependencies to capture.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "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": "the authors propose an initialization scheme by setting the initial gate bias according to the range of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 228, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 228, + 107 + ], + "score": 1.0, + "content": "time dependencies to capture.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Dynamical systems view of residual networks. Another line of work that is closely related to ours", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "is the dynamical systems view on residual networks (ResNets) (He et al., 2016). Haber & Ruthotto", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "(2017); Chang et al. (2018a;b); Lu et al. (2018) propose to interpret ResNets as ordinary differential", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "equations (ODEs), under which learning the network parameters is equivalent to solve a parameter", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "estimation problem involving the ODE. Chen et al. (2018b) parameterize the continuous dynamics", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "of hidden units using an ODE specified by a neural network. Stable and reversible architectures are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "developed (Haber & Ruthotto, 2017; Chang et al., 2018a) from this viewpoint, which form the basis", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 252, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 252, + 200 + ], + "score": 1.0, + "content": "of our proposed recurrent networks.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 108, + 214, + 249, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 250, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 250, + 229 + ], + "score": 1.0, + "content": "3 ANTISYMMETRICRNNS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 293, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 295, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 295, + 253 + ], + "score": 1.0, + "content": "3.1 ORDINARY DIFFERENTIAL EQUATIONS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 260, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "We first give a brief overview of the ordinary differential equations (ODEs), a special kind of dy-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 271, + 492, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 317, + 283 + ], + "score": 1.0, + "content": "namical systems that involves a single variable, time", + "type": "text" + }, + { + "bbox": [ + 318, + 272, + 323, + 281 + ], + "score": 0.8, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 271, + 492, + 283 + ], + "score": 1.0, + "content": "in this case. Consider the first-order ODE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 287, + 340, + 302 + ], + "lines": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "spans": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = f ( \\pmb { h } ( t ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "5742694d952e856159a2de8421271c83f851a9a8772bc05c06b05240f5af52b3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 141, + 320 + ], + "score": 1.0, + "content": "for time", + "type": "text" + }, + { + "bbox": [ + 141, + 307, + 165, + 318 + ], + "score": 0.89, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 305, + 196, + 320 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 197, + 307, + 242, + 319 + ], + "score": 0.93, + "content": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 305, + 261, + 320 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 307, + 319, + 318 + ], + "score": 0.92, + "content": "f : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 305, + 480, + 320 + ], + "score": 1.0, + "content": ". Together with a given initial condition", + "type": "text" + }, + { + "bbox": [ + 481, + 307, + 501, + 319 + ], + "score": 0.9, + "content": "\\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 305, + 505, + 320 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 266, + 330 + ], + "score": 1.0, + "content": "the problem of solving for the function", + "type": "text" + }, + { + "bbox": [ + 266, + 318, + 285, + 330 + ], + "score": 0.9, + "content": "h ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "is called the initial value problem. For most ODEs, it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "is impossible to find an analytic solution. Instead, numerical methods relying on discretization are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "score": 1.0, + "content": "commonly used to approximate the solution. The forward Euler method is probably the best known", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "score": 1.0, + "content": "and simplest numerical method for approximation. One way to derive the forward Euler method is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "to approximate the derivative on the left-hand side of Equation 1 by a finite difference, and evaluate", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 219, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 193, + 386 + ], + "score": 1.0, + "content": "the right-hand side at", + "type": "text" + }, + { + "bbox": [ + 194, + 373, + 214, + 384 + ], + "score": 0.91, + "content": "\\boldsymbol { h } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 372, + 219, + 386 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 382, + 354, + 406 + ], + "lines": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "spans": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "score": 0.94, + "content": "\\frac { h _ { t } - h _ { t - 1 } } { \\epsilon } = f ( h _ { t - 1 } ) .", + "type": "interline_equation", + "image_path": "f0fdb1b0a2a08ca6e592930225314e463a18515aa44c42f113822ea0cb4c5b4c.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 280, + 421 + ], + "score": 1.0, + "content": "Note that for the approximation to be valid,", + "type": "text" + }, + { + "bbox": [ + 280, + 409, + 304, + 419 + ], + "score": 0.91, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "should be small by the definition of the derivative.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 421, + 432 + ], + "score": 1.0, + "content": "One can easily prove that the forward Euler method converges linearly w.r.t.", + "type": "text" + }, + { + "bbox": [ + 421, + 421, + 427, + 429 + ], + "score": 0.55, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 419, + 472, + 432 + ], + "score": 1.0, + "content": ", assuming", + "type": "text" + }, + { + "bbox": [ + 473, + 419, + 494, + 431 + ], + "score": 0.92, + "content": "f ( h )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 207, + 443 + ], + "score": 1.0, + "content": "Lipschitz continuous on", + "type": "text" + }, + { + "bbox": [ + 207, + 431, + 215, + 440 + ], + "score": 0.79, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 430, + 395, + 443 + ], + "score": 1.0, + "content": "and that the eigenvalues of the Jacobian of", + "type": "text" + }, + { + "bbox": [ + 395, + 431, + 402, + 442 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "have negative real parts.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 442, + 404, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 404, + 453 + ], + "score": 1.0, + "content": "Rearranging it, we have the forward Euler method for a given initial value", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 458, + 384, + 472 + ], + "lines": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "spans": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "score": 0.94, + "content": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon f ( h _ { t - 1 } ) , \\quad h _ { 0 } = h ( 0 ) . } \\end{array}", + "type": "interline_equation", + "image_path": "798f6407aa298245b0d9fb13b31fb3560c455d3ff39ee18236ae087c04b1a403.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Geometrically, each forward Euler step takes a small step along the tangential direction to the exact", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 488, + 418, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 189, + 501 + ], + "score": 1.0, + "content": "trajectory starting at", + "type": "text" + }, + { + "bbox": [ + 189, + 488, + 210, + 500 + ], + "score": 0.91, + "content": "h _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 488, + 262, + 501 + ], + "score": 1.0, + "content": ". As a result,", + "type": "text" + }, + { + "bbox": [ + 263, + 490, + 268, + 497 + ], + "score": 0.77, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 488, + 418, + 501 + ], + "score": 1.0, + "content": "is usually referred to as the step size.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 108, + 505, + 244, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 245, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 245, + 517 + ], + "score": 1.0, + "content": "As an example, consider the ODE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 521, + 356, + 536 + ], + "lines": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "spans": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "score": 0.91, + "content": "\\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( \\pmb { W } \\pmb { h } ( t ) \\right) .", + "type": "interline_equation", + "image_path": "23a35eff562cb7af8c99a6509bdb5738d1b2428dbbdaab08d01502157862a453.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 421, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 422, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 422, + 555 + ], + "score": 1.0, + "content": "The forward Euler method approximates the solution to the ODE iteratively as", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 557, + 368, + 571 + ], + "lines": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "spans": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "score": 0.91, + "content": "h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ,", + "type": "interline_equation", + "image_path": "d3daf9001d3b689a0ff618f259513d930bdee5ef0f732e64f5310de5699c9053.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 392, + 589 + ], + "score": 1.0, + "content": "which can be regarded as a recurrent network without input data. Here", + "type": "text" + }, + { + "bbox": [ + 393, + 577, + 404, + 587 + ], + "score": 0.88, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "is the hidden state at the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 107, + 588, + 111, + 597 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 588, + 146, + 600 + ], + "score": 1.0, + "content": "-th step,", + "type": "text" + }, + { + "bbox": [ + 146, + 587, + 160, + 597 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 588, + 268, + 600 + ], + "score": 1.0, + "content": "is a model parameter, and", + "type": "text" + }, + { + "bbox": [ + 268, + 589, + 274, + 597 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "is a hyperparameter. This provides a general framework", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "score": 1.0, + "content": "of designing recurrent network architectures by discretizing ODEs. As a result, we can design", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "ODEs that possess desirable properties by exploiting the theoretical successes of dynamical systems,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "and the resulting recurrent networks will inherit these properties. Stability is one of the important", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "properties to consider, which we will discuss in the next section. It is worth mentioning that the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "“skip connection” in this architecture resembles the residual RNN (Yue et al., 2018) and the Fourier", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "score": 1.0, + "content": "RNN (Zhang et al., 2018b), which are proposed to mitigate the vanishing and exploding gradient", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 665, + 135, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 135, + 677 + ], + "score": 1.0, + "content": "issues.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 106, + 690, + 462, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 463, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 463, + 701 + ], + "score": 1.0, + "content": "3.2 STABILITY OF ORDINARY DIFFERENTIAL EQUATIONS: ANTISYMMETRICRNNS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In numerical analysis, stability theory addresses the stability of solutions of ODEs under small", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "perturbations of initial conditions. In this section, we are going to establish the connections between", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "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 2019", + "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": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Dynamical systems view of residual networks. Another line of work that is closely related to ours", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "is the dynamical systems view on residual networks (ResNets) (He et al., 2016). Haber & Ruthotto", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "(2017); Chang et al. (2018a;b); Lu et al. (2018) propose to interpret ResNets as ordinary differential", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "equations (ODEs), under which learning the network parameters is equivalent to solve a parameter", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "estimation problem involving the ODE. Chen et al. (2018b) parameterize the continuous dynamics", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "of hidden units using an ODE specified by a neural network. Stable and reversible architectures are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "developed (Haber & Ruthotto, 2017; Chang et al., 2018a) from this viewpoint, which form the basis", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 252, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 252, + 200 + ], + "score": 1.0, + "content": "of our proposed recurrent networks.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 111, + 506, + 200 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 214, + 249, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 250, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 250, + 229 + ], + "score": 1.0, + "content": "3 ANTISYMMETRICRNNS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 293, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 295, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 295, + 253 + ], + "score": 1.0, + "content": "3.1 ORDINARY DIFFERENTIAL EQUATIONS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 260, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "We first give a brief overview of the ordinary differential equations (ODEs), a special kind of dy-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 271, + 492, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 317, + 283 + ], + "score": 1.0, + "content": "namical systems that involves a single variable, time", + "type": "text" + }, + { + "bbox": [ + 318, + 272, + 323, + 281 + ], + "score": 0.8, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 271, + 492, + 283 + ], + "score": 1.0, + "content": "in this case. Consider the first-order ODE", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 260, + 505, + 283 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 287, + 340, + 302 + ], + "lines": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "spans": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = f ( \\pmb { h } ( t ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "5742694d952e856159a2de8421271c83f851a9a8772bc05c06b05240f5af52b3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 270, + 287, + 340, + 302 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 141, + 320 + ], + "score": 1.0, + "content": "for time", + "type": "text" + }, + { + "bbox": [ + 141, + 307, + 165, + 318 + ], + "score": 0.89, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 305, + 196, + 320 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 197, + 307, + 242, + 319 + ], + "score": 0.93, + "content": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 305, + 261, + 320 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 307, + 319, + 318 + ], + "score": 0.92, + "content": "f : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 305, + 480, + 320 + ], + "score": 1.0, + "content": ". Together with a given initial condition", + "type": "text" + }, + { + "bbox": [ + 481, + 307, + 501, + 319 + ], + "score": 0.9, + "content": "\\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 305, + 505, + 320 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 266, + 330 + ], + "score": 1.0, + "content": "the problem of solving for the function", + "type": "text" + }, + { + "bbox": [ + 266, + 318, + 285, + 330 + ], + "score": 0.9, + "content": "h ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "is called the initial value problem. For most ODEs, it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "is impossible to find an analytic solution. Instead, numerical methods relying on discretization are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "score": 1.0, + "content": "commonly used to approximate the solution. The forward Euler method is probably the best known", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "score": 1.0, + "content": "and simplest numerical method for approximation. One way to derive the forward Euler method is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "to approximate the derivative on the left-hand side of Equation 1 by a finite difference, and evaluate", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 219, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 193, + 386 + ], + "score": 1.0, + "content": "the right-hand side at", + "type": "text" + }, + { + "bbox": [ + 194, + 373, + 214, + 384 + ], + "score": 0.91, + "content": "\\boldsymbol { h } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 372, + 219, + 386 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 305, + 506, + 386 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 382, + 354, + 406 + ], + "lines": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "spans": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "score": 0.94, + "content": "\\frac { h _ { t } - h _ { t - 1 } } { \\epsilon } = f ( h _ { t - 1 } ) .", + "type": "interline_equation", + "image_path": "f0fdb1b0a2a08ca6e592930225314e463a18515aa44c42f113822ea0cb4c5b4c.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 257, + 382, + 354, + 406 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 280, + 421 + ], + "score": 1.0, + "content": "Note that for the approximation to be valid,", + "type": "text" + }, + { + "bbox": [ + 280, + 409, + 304, + 419 + ], + "score": 0.91, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "should be small by the definition of the derivative.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 421, + 432 + ], + "score": 1.0, + "content": "One can easily prove that the forward Euler method converges linearly w.r.t.", + "type": "text" + }, + { + "bbox": [ + 421, + 421, + 427, + 429 + ], + "score": 0.55, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 419, + 472, + 432 + ], + "score": 1.0, + "content": ", assuming", + "type": "text" + }, + { + "bbox": [ + 473, + 419, + 494, + 431 + ], + "score": 0.92, + "content": "f ( h )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 207, + 443 + ], + "score": 1.0, + "content": "Lipschitz continuous on", + "type": "text" + }, + { + "bbox": [ + 207, + 431, + 215, + 440 + ], + "score": 0.79, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 430, + 395, + 443 + ], + "score": 1.0, + "content": "and that the eigenvalues of the Jacobian of", + "type": "text" + }, + { + "bbox": [ + 395, + 431, + 402, + 442 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "have negative real parts.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 442, + 404, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 404, + 453 + ], + "score": 1.0, + "content": "Rearranging it, we have the forward Euler method for a given initial value", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 407, + 506, + 453 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 458, + 384, + 472 + ], + "lines": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "spans": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "score": 0.94, + "content": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon f ( h _ { t - 1 } ) , \\quad h _ { 0 } = h ( 0 ) . } \\end{array}", + "type": "interline_equation", + "image_path": "798f6407aa298245b0d9fb13b31fb3560c455d3ff39ee18236ae087c04b1a403.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 226, + 458, + 384, + 472 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Geometrically, each forward Euler step takes a small step along the tangential direction to the exact", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 488, + 418, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 189, + 501 + ], + "score": 1.0, + "content": "trajectory starting at", + "type": "text" + }, + { + "bbox": [ + 189, + 488, + 210, + 500 + ], + "score": 0.91, + "content": "h _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 488, + 262, + 501 + ], + "score": 1.0, + "content": ". As a result,", + "type": "text" + }, + { + "bbox": [ + 263, + 490, + 268, + 497 + ], + "score": 0.77, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 488, + 418, + 501 + ], + "score": 1.0, + "content": "is usually referred to as the step size.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 477, + 505, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 505, + 244, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 245, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 245, + 517 + ], + "score": 1.0, + "content": "As an example, consider the ODE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 504, + 245, + 517 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 521, + 356, + 536 + ], + "lines": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "spans": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "score": 0.91, + "content": "\\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( \\pmb { W } \\pmb { h } ( t ) \\right) .", + "type": "interline_equation", + "image_path": "23a35eff562cb7af8c99a6509bdb5738d1b2428dbbdaab08d01502157862a453.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 254, + 521, + 356, + 536 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 421, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 422, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 422, + 555 + ], + "score": 1.0, + "content": "The forward Euler method approximates the solution to the ODE iteratively as", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 538, + 422, + 555 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 557, + 368, + 571 + ], + "lines": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "spans": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "score": 0.91, + "content": "h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ,", + "type": "interline_equation", + "image_path": "d3daf9001d3b689a0ff618f259513d930bdee5ef0f732e64f5310de5699c9053.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 241, + 557, + 368, + 571 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 392, + 589 + ], + "score": 1.0, + "content": "which can be regarded as a recurrent network without input data. Here", + "type": "text" + }, + { + "bbox": [ + 393, + 577, + 404, + 587 + ], + "score": 0.88, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "is the hidden state at the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 107, + 588, + 111, + 597 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 588, + 146, + 600 + ], + "score": 1.0, + "content": "-th step,", + "type": "text" + }, + { + "bbox": [ + 146, + 587, + 160, + 597 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 588, + 268, + 600 + ], + "score": 1.0, + "content": "is a model parameter, and", + "type": "text" + }, + { + "bbox": [ + 268, + 589, + 274, + 597 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "is a hyperparameter. This provides a general framework", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "score": 1.0, + "content": "of designing recurrent network architectures by discretizing ODEs. As a result, we can design", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "ODEs that possess desirable properties by exploiting the theoretical successes of dynamical systems,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "and the resulting recurrent networks will inherit these properties. Stability is one of the important", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "properties to consider, which we will discuss in the next section. It is worth mentioning that the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "“skip connection” in this architecture resembles the residual RNN (Yue et al., 2018) and the Fourier", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "score": 1.0, + "content": "RNN (Zhang et al., 2018b), which are proposed to mitigate the vanishing and exploding gradient", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 665, + 135, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 135, + 677 + ], + "score": 1.0, + "content": "issues.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 576, + 506, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 690, + 462, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 463, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 463, + 701 + ], + "score": 1.0, + "content": "3.2 STABILITY OF ORDINARY DIFFERENTIAL EQUATIONS: ANTISYMMETRICRNNS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In numerical analysis, stability theory addresses the stability of solutions of ODEs under small", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "perturbations of initial conditions. In this section, we are going to establish the connections between", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "the stability of an ODE and the trainability of the RNNs by discretizing the ODE, and design a new", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 433, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 433, + 106 + ], + "score": 1.0, + "content": "RNN architecture that is stable and capable of capturing long-term dependencies.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "the stability of an ODE and the trainability of the RNNs by discretizing the ODE, and design a new", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 433, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 433, + 106 + ], + "score": 1.0, + "content": "RNN architecture that is stable and capable of capturing long-term dependencies.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "An ODE solution is stable if the long-term behavior of the system does not depend significantly on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 353, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 353, + 134 + ], + "score": 1.0, + "content": "the initial conditions. A formal definition is given as follows.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 135, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 207, + 149 + ], + "score": 1.0, + "content": "Definition 1. (Stability)", + "type": "text" + }, + { + "bbox": [ + 208, + 137, + 216, + 146 + ], + "score": 0.42, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 136, + 253, + 149 + ], + "score": 1.0, + "content": "solution", + "type": "text" + }, + { + "bbox": [ + 253, + 136, + 272, + 148 + ], + "score": 0.91, + "content": "h ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 136, + 376, + 149 + ], + "score": 1.0, + "content": "of the ODE in Equation", + "type": "text" + }, + { + "bbox": [ + 376, + 137, + 383, + 146 + ], + "score": 0.39, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 136, + 473, + 149 + ], + "score": 1.0, + "content": "with initial condition", + "type": "text" + }, + { + "bbox": [ + 473, + 136, + 494, + 148 + ], + "score": 0.9, + "content": "\\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 171, + 162 + ], + "score": 1.0, + "content": "stable if for any", + "type": "text" + }, + { + "bbox": [ + 171, + 150, + 195, + 160 + ], + "score": 0.87, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 149, + 252, + 162 + ], + "score": 1.0, + "content": ", there exists a", + "type": "text" + }, + { + "bbox": [ + 253, + 149, + 277, + 159 + ], + "score": 0.9, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 149, + 391, + 162 + ], + "score": 1.0, + "content": "such that any other solution", + "type": "text" + }, + { + "bbox": [ + 391, + 147, + 410, + 161 + ], + "score": 0.9, + "content": "\\tilde { h } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "of the ODE with initial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 469, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 146, + 175 + ], + "score": 1.0, + "content": "condition", + "type": "text" + }, + { + "bbox": [ + 147, + 160, + 167, + 174 + ], + "score": 0.91, + "content": "\\tilde { \\pmb { h } } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 160, + 209, + 175 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 209, + 160, + 285, + 174 + ], + "score": 0.94, + "content": "| h ( 0 ) - \\tilde { h } ( 0 ) | \\leq \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 160, + 340, + 175 + ], + "score": 1.0, + "content": "also satisfies", + "type": "text" + }, + { + "bbox": [ + 340, + 160, + 412, + 174 + ], + "score": 0.91, + "content": "| h ( t ) - \\tilde { h } ( t ) | \\leq \\epsilon ,", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 160, + 442, + 175 + ], + "score": 1.0, + "content": ", for all", + "type": "text" + }, + { + "bbox": [ + 443, + 162, + 465, + 173 + ], + "score": 0.88, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 160, + 469, + 175 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 311, + 195 + ], + "score": 1.0, + "content": "In plain language, given a small perturbation of size", + "type": "text" + }, + { + "bbox": [ + 312, + 183, + 318, + 192 + ], + "score": 0.82, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "of the initial state, the effect of the perturbation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 277, + 206 + ], + "score": 1.0, + "content": "on the subsequent states is no bigger than", + "type": "text" + }, + { + "bbox": [ + 277, + 196, + 282, + 204 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 194, + 505, + 206 + ], + "score": 1.0, + "content": ". The eigenvalues of the Jacobian matrix play a central", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 104, + 203, + 225, + 217 + ], + "score": 1.0, + "content": "role in stability analysis. Let", + "type": "text" + }, + { + "bbox": [ + 225, + 204, + 282, + 217 + ], + "score": 0.93, + "content": "\\bar { \\ b { J } } ( \\bar { t } ) \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 203, + 389, + 217 + ], + "score": 1.0, + "content": "be the Jacobian matrix of", + "type": "text" + }, + { + "bbox": [ + 389, + 205, + 396, + 216 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 203, + 417, + 217 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 417, + 204, + 438, + 217 + ], + "score": 0.92, + "content": "\\lambda _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 203, + 488, + 217 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 488, + 205, + 493, + 214 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 154, + 228 + ], + "score": 1.0, + "content": "eigenvalue.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 313, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 312, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 303, + 244 + ], + "score": 1.0, + "content": "Proposition 1. The solution of an ODE is stable", + "type": "text" + }, + { + "bbox": [ + 304, + 231, + 312, + 243 + ], + "score": 0.32, + "content": "i f", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 247, + 385, + 266 + ], + "lines": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "spans": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\leq 0 , \\quad \\forall t \\geq 0 ,", + "type": "interline_equation", + "image_path": "b5d46c04f0ef8569020b1161f80cf51423c0ba76c2b5dc8bd27a233bce382e75.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 330, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 133, + 286 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 272, + 157, + 285 + ], + "score": 0.89, + "content": "R e ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 271, + 330, + 286 + ], + "score": 1.0, + "content": "denotes the real part of a complex number.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 387, + 306 + ], + "score": 1.0, + "content": "A more precise proposition that involves the kinematic eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 388, + 293, + 407, + 306 + ], + "score": 0.92, + "content": "\\mathbf { } J ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "is given in Ascher et al.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "(1994). Stability alone, however, does not suffice to capture long-term dependencies. As argued", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 104, + 314, + 225, + 328 + ], + "score": 1.0, + "content": "in Haber & Ruthotto (2017),", + "type": "text" + }, + { + "bbox": [ + 226, + 315, + 305, + 327 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( J ( t ) ) ) \\ll 0", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "results in a lossy system; the energy or signal in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "the initial state is dissipated over time. Using such an ODE as the underlying dynamical system", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "of a recurrent network will lead to catastrophic forgetting of the past inputs during the forward", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 192, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 192, + 361 + ], + "score": 1.0, + "content": "propagation. Ideally,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 358, + 384, + 372 + ], + "lines": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "spans": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "score": 0.93, + "content": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\approx 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,", + "type": "interline_equation", + "image_path": "23079462bd3d14421bc944a15c3580c0c3cd95c19dc43c82a330bc4367bf7217.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 104, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "a condition we referred to as the critical criterion. Under this condition, the system preserves the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 334, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 334, + 397 + ], + "score": 1.0, + "content": "long-term dependencies of the inputs while being stable.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Stability and Trainability. Here we connect the stability of the ODE to the trainability of the RNN", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "produced by discretization. Inherently, the stability analysis studies the sensitivity of a solution, i.e.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 438 + ], + "score": 1.0, + "content": "how much a solution of the ODE would change w.r.t. changes in the initial condition. Differentiating", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 434, + 504, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 283, + 448 + ], + "score": 1.0, + "content": "Equation 1 with respect to the initial state", + "type": "text" + }, + { + "bbox": [ + 283, + 434, + 304, + 447 + ], + "score": 0.92, + "content": "\\bar { \\pmb h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 434, + 504, + 448 + ], + "score": 1.0, + "content": "on both sides, we have the following sensitivity", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 217, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 217, + 459 + ], + "score": 1.0, + "content": "analysis (with chain rules):", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 455, + 366, + 483 + ], + "lines": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "spans": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "score": 0.95, + "content": "\\frac { \\mathrm { d } } { \\mathrm { d } t } \\left( \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } \\right) = \\pmb { J } ( t ) \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } .", + "type": "interline_equation", + "image_path": "9359a5636fe77b24f823cef4abfbcda724c42d122400cea94b79963377647663.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 407, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 407, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 260, + 499 + ], + "score": 1.0, + "content": "For notational simplicity, let us define", + "type": "text" + }, + { + "bbox": [ + 260, + 485, + 348, + 497 + ], + "score": 0.93, + "content": "\\pmb { A } ( t ) = \\partial \\pmb { h } ( t ) / \\partial \\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 484, + 407, + 499 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 502, + 376, + 527 + ], + "lines": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "spans": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "score": 0.94, + "content": "\\frac { \\mathrm { d } \\pmb { A } ( t ) } { \\mathrm { d } t } = \\pmb { J } ( t ) \\pmb { A } ( t ) , \\quad \\pmb { A } ( 0 ) = \\pmb { I } .", + "type": "interline_equation", + "image_path": "a3f4fc9edf63942fcf0ab874379f65a51becc603701f3865aeda530a1ea33865.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 104, + 530, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 286, + 547 + ], + "score": 1.0, + "content": "Note that this is a linear ODE with solution", + "type": "text" + }, + { + "bbox": [ + 286, + 532, + 407, + 545 + ], + "score": 0.93, + "content": "{ \\pmb A } ( t ) = e ^ { { \\pmb J } \\cdot t } = P e ^ { { \\pmb \\Lambda } ( J ) t } { \\pmb P } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 530, + 506, + 547 + ], + "score": 1.0, + "content": ", assuming the Jacobian", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 543, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 107, + 545, + 115, + 554 + ], + "score": 0.77, + "content": "\\textbf { { J } }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 543, + 505, + 557 + ], + "score": 1.0, + "content": "does not vary or vary slowly over time (We will later show this is a valid assumption). Here", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 107, + 555, + 131, + 567 + ], + "score": 0.91, + "content": "\\pmb { \\Lambda } ( J )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 554, + 240, + 568 + ], + "score": 1.0, + "content": "denotes the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 240, + 556, + 249, + 565 + ], + "score": 0.79, + "content": "\\textbf { { J } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 554, + 332, + 568 + ], + "score": 1.0, + "content": ", and the columns of", + "type": "text" + }, + { + "bbox": [ + 332, + 556, + 342, + 565 + ], + "score": 0.83, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "are the corresponding eigenvectors. See", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 399, + 578 + ], + "score": 1.0, + "content": "Appendix A for a more detailed derivation. In the language of RNNs,", + "type": "text" + }, + { + "bbox": [ + 399, + 566, + 420, + 578 + ], + "score": 0.91, + "content": "A ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "is the Jacobian of a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 158, + 590 + ], + "score": 1.0, + "content": "hidden state", + "type": "text" + }, + { + "bbox": [ + 158, + 578, + 169, + 588 + ], + "score": 0.87, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 576, + 328, + 590 + ], + "score": 1.0, + "content": "with respect to the initial hidden state", + "type": "text" + }, + { + "bbox": [ + 328, + 578, + 340, + 588 + ], + "score": 0.88, + "content": "h _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 576, + 506, + 590 + ], + "score": 1.0, + "content": ". When the critical criterion is met, i.e.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 107, + 588, + 173, + 600 + ], + "score": 0.91, + "content": "R e ( \\pmb { \\Lambda } ( \\pmb { J } ) ) \\approx 0", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 587, + 251, + 602 + ], + "score": 1.0, + "content": ", the magnitude of", + "type": "text" + }, + { + "bbox": [ + 251, + 588, + 272, + 600 + ], + "score": 0.92, + "content": "A ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "is approximately constant in time, thus no exploding or", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 599, + 225, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 225, + 612 + ], + "score": 1.0, + "content": "vanishing gradient problems.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "With the connection established, we next design ODEs that satisfy the critical criterion. An anti-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 626, + 503, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 453, + 640 + ], + "score": 1.0, + "content": "symmetric matrix is a square matrix whose transpose equals its negative; i.e., a matrix", + "type": "text" + }, + { + "bbox": [ + 454, + 627, + 503, + 637 + ], + "score": 0.91, + "content": "M \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 183, + 651 + ], + "score": 1.0, + "content": "is antisymmetric if", + "type": "text" + }, + { + "bbox": [ + 184, + 637, + 237, + 649 + ], + "score": 0.94, + "content": "M ^ { T } = - M", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 637, + 447, + 651 + ], + "score": 1.0, + "content": ". An interesting property of an antisymmetric matrix", + "type": "text" + }, + { + "bbox": [ + 447, + 639, + 460, + 648 + ], + "score": 0.84, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "is that, the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 648, + 254, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 166, + 662 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 167, + 649, + 180, + 659 + ], + "score": 0.83, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 648, + 254, + 662 + ], + "score": 1.0, + "content": "are all imaginary:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 666, + 380, + 679 + ], + "lines": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "spans": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( M ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,", + "type": "interline_equation", + "image_path": "c4a8f792239bcdd89e1251694f971a7ea7e1adea4951b3e3f24d369b7438505a.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 684, + 467, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 470, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 470, + 698 + ], + "score": 1.0, + "content": "making antisymmetric matrices a suitable building block of a stable recurrent architecture.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 701, + 223, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 224, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 224, + 714 + ], + "score": 1.0, + "content": "Consider the following ODE", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 718, + 409, + 734 + ], + "lines": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "spans": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( ( \\pmb { W } _ { h } - \\pmb { W } _ { h } ^ { T } ) \\pmb { h } ( t ) + \\pmb { V } _ { h } \\pmb { x } ( t ) + \\pmb { b } _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "732c12b765129851934f3b1c42f27ab9c819c2a88ce46572f30f7d3e7b09edd9.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "page_idx": 3, + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "An ODE solution is stable if the long-term behavior of the system does not depend significantly on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 353, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 353, + 134 + ], + "score": 1.0, + "content": "the initial conditions. A formal definition is given as follows.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 109, + 505, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 135, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 207, + 149 + ], + "score": 1.0, + "content": "Definition 1. (Stability)", + "type": "text" + }, + { + "bbox": [ + 208, + 137, + 216, + 146 + ], + "score": 0.42, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 136, + 253, + 149 + ], + "score": 1.0, + "content": "solution", + "type": "text" + }, + { + "bbox": [ + 253, + 136, + 272, + 148 + ], + "score": 0.91, + "content": "h ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 136, + 376, + 149 + ], + "score": 1.0, + "content": "of the ODE in Equation", + "type": "text" + }, + { + "bbox": [ + 376, + 137, + 383, + 146 + ], + "score": 0.39, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 136, + 473, + 149 + ], + "score": 1.0, + "content": "with initial condition", + "type": "text" + }, + { + "bbox": [ + 473, + 136, + 494, + 148 + ], + "score": 0.9, + "content": "\\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 171, + 162 + ], + "score": 1.0, + "content": "stable if for any", + "type": "text" + }, + { + "bbox": [ + 171, + 150, + 195, + 160 + ], + "score": 0.87, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 149, + 252, + 162 + ], + "score": 1.0, + "content": ", there exists a", + "type": "text" + }, + { + "bbox": [ + 253, + 149, + 277, + 159 + ], + "score": 0.9, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 149, + 391, + 162 + ], + "score": 1.0, + "content": "such that any other solution", + "type": "text" + }, + { + "bbox": [ + 391, + 147, + 410, + 161 + ], + "score": 0.9, + "content": "\\tilde { h } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "of the ODE with initial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 469, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 146, + 175 + ], + "score": 1.0, + "content": "condition", + "type": "text" + }, + { + "bbox": [ + 147, + 160, + 167, + 174 + ], + "score": 0.91, + "content": "\\tilde { \\pmb { h } } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 160, + 209, + 175 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 209, + 160, + 285, + 174 + ], + "score": 0.94, + "content": "| h ( 0 ) - \\tilde { h } ( 0 ) | \\leq \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 160, + 340, + 175 + ], + "score": 1.0, + "content": "also satisfies", + "type": "text" + }, + { + "bbox": [ + 340, + 160, + 412, + 174 + ], + "score": 0.91, + "content": "| h ( t ) - \\tilde { h } ( t ) | \\leq \\epsilon ,", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 160, + 442, + 175 + ], + "score": 1.0, + "content": ", for all", + "type": "text" + }, + { + "bbox": [ + 443, + 162, + 465, + 173 + ], + "score": 0.88, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 160, + 469, + 175 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 136, + 505, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 311, + 195 + ], + "score": 1.0, + "content": "In plain language, given a small perturbation of size", + "type": "text" + }, + { + "bbox": [ + 312, + 183, + 318, + 192 + ], + "score": 0.82, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "of the initial state, the effect of the perturbation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 277, + 206 + ], + "score": 1.0, + "content": "on the subsequent states is no bigger than", + "type": "text" + }, + { + "bbox": [ + 277, + 196, + 282, + 204 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 194, + 505, + 206 + ], + "score": 1.0, + "content": ". The eigenvalues of the Jacobian matrix play a central", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 104, + 203, + 225, + 217 + ], + "score": 1.0, + "content": "role in stability analysis. Let", + "type": "text" + }, + { + "bbox": [ + 225, + 204, + 282, + 217 + ], + "score": 0.93, + "content": "\\bar { \\ b { J } } ( \\bar { t } ) \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 203, + 389, + 217 + ], + "score": 1.0, + "content": "be the Jacobian matrix of", + "type": "text" + }, + { + "bbox": [ + 389, + 205, + 396, + 216 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 203, + 417, + 217 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 417, + 204, + 438, + 217 + ], + "score": 0.92, + "content": "\\lambda _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 203, + 488, + 217 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 488, + 205, + 493, + 214 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 154, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 154, + 228 + ], + "score": 1.0, + "content": "eigenvalue.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 182, + 506, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 313, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 312, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 303, + 244 + ], + "score": 1.0, + "content": "Proposition 1. The solution of an ODE is stable", + "type": "text" + }, + { + "bbox": [ + 304, + 231, + 312, + 243 + ], + "score": 0.32, + "content": "i f", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 228, + 312, + 244 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 247, + 385, + 266 + ], + "lines": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "spans": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\leq 0 , \\quad \\forall t \\geq 0 ,", + "type": "interline_equation", + "image_path": "b5d46c04f0ef8569020b1161f80cf51423c0ba76c2b5dc8bd27a233bce382e75.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 226, + 247, + 385, + 266 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 330, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 133, + 286 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 272, + 157, + 285 + ], + "score": 0.89, + "content": "R e ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 271, + 330, + 286 + ], + "score": 1.0, + "content": "denotes the real part of a complex number.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 271, + 330, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 387, + 306 + ], + "score": 1.0, + "content": "A more precise proposition that involves the kinematic eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 388, + 293, + 407, + 306 + ], + "score": 0.92, + "content": "\\mathbf { } J ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "is given in Ascher et al.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "(1994). Stability alone, however, does not suffice to capture long-term dependencies. As argued", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 104, + 314, + 225, + 328 + ], + "score": 1.0, + "content": "in Haber & Ruthotto (2017),", + "type": "text" + }, + { + "bbox": [ + 226, + 315, + 305, + 327 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( J ( t ) ) ) \\ll 0", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "results in a lossy system; the energy or signal in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "the initial state is dissipated over time. Using such an ODE as the underlying dynamical system", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "of a recurrent network will lead to catastrophic forgetting of the past inputs during the forward", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 192, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 192, + 361 + ], + "score": 1.0, + "content": "propagation. Ideally,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 293, + 505, + 361 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 358, + 384, + 372 + ], + "lines": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "spans": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "score": 0.93, + "content": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\approx 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,", + "type": "interline_equation", + "image_path": "23079462bd3d14421bc944a15c3580c0c3cd95c19dc43c82a330bc4367bf7217.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 226, + 358, + 384, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 104, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "a condition we referred to as the critical criterion. Under this condition, the system preserves the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 334, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 334, + 397 + ], + "score": 1.0, + "content": "long-term dependencies of the inputs while being stable.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 373, + 505, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Stability and Trainability. Here we connect the stability of the ODE to the trainability of the RNN", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "produced by discretization. Inherently, the stability analysis studies the sensitivity of a solution, i.e.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 438 + ], + "score": 1.0, + "content": "how much a solution of the ODE would change w.r.t. changes in the initial condition. Differentiating", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 434, + 504, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 283, + 448 + ], + "score": 1.0, + "content": "Equation 1 with respect to the initial state", + "type": "text" + }, + { + "bbox": [ + 283, + 434, + 304, + 447 + ], + "score": 0.92, + "content": "\\bar { \\pmb h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 434, + 504, + 448 + ], + "score": 1.0, + "content": "on both sides, we have the following sensitivity", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 217, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 217, + 459 + ], + "score": 1.0, + "content": "analysis (with chain rules):", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 402, + 506, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 455, + 366, + 483 + ], + "lines": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "spans": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "score": 0.95, + "content": "\\frac { \\mathrm { d } } { \\mathrm { d } t } \\left( \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } \\right) = \\pmb { J } ( t ) \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } .", + "type": "interline_equation", + "image_path": "9359a5636fe77b24f823cef4abfbcda724c42d122400cea94b79963377647663.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 245, + 455, + 366, + 483 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 407, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 407, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 260, + 499 + ], + "score": 1.0, + "content": "For notational simplicity, let us define", + "type": "text" + }, + { + "bbox": [ + 260, + 485, + 348, + 497 + ], + "score": 0.93, + "content": "\\pmb { A } ( t ) = \\partial \\pmb { h } ( t ) / \\partial \\pmb { h } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 484, + 407, + 499 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 484, + 407, + 499 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 502, + 376, + 527 + ], + "lines": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "spans": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "score": 0.94, + "content": "\\frac { \\mathrm { d } \\pmb { A } ( t ) } { \\mathrm { d } t } = \\pmb { J } ( t ) \\pmb { A } ( t ) , \\quad \\pmb { A } ( 0 ) = \\pmb { I } .", + "type": "interline_equation", + "image_path": "a3f4fc9edf63942fcf0ab874379f65a51becc603701f3865aeda530a1ea33865.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 235, + 502, + 376, + 527 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 104, + 530, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 286, + 547 + ], + "score": 1.0, + "content": "Note that this is a linear ODE with solution", + "type": "text" + }, + { + "bbox": [ + 286, + 532, + 407, + 545 + ], + "score": 0.93, + "content": "{ \\pmb A } ( t ) = e ^ { { \\pmb J } \\cdot t } = P e ^ { { \\pmb \\Lambda } ( J ) t } { \\pmb P } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 530, + 506, + 547 + ], + "score": 1.0, + "content": ", assuming the Jacobian", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 543, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 107, + 545, + 115, + 554 + ], + "score": 0.77, + "content": "\\textbf { { J } }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 543, + 505, + 557 + ], + "score": 1.0, + "content": "does not vary or vary slowly over time (We will later show this is a valid assumption). Here", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 107, + 555, + 131, + 567 + ], + "score": 0.91, + "content": "\\pmb { \\Lambda } ( J )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 554, + 240, + 568 + ], + "score": 1.0, + "content": "denotes the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 240, + 556, + 249, + 565 + ], + "score": 0.79, + "content": "\\textbf { { J } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 554, + 332, + 568 + ], + "score": 1.0, + "content": ", and the columns of", + "type": "text" + }, + { + "bbox": [ + 332, + 556, + 342, + 565 + ], + "score": 0.83, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "are the corresponding eigenvectors. See", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 399, + 578 + ], + "score": 1.0, + "content": "Appendix A for a more detailed derivation. In the language of RNNs,", + "type": "text" + }, + { + "bbox": [ + 399, + 566, + 420, + 578 + ], + "score": 0.91, + "content": "A ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "is the Jacobian of a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 158, + 590 + ], + "score": 1.0, + "content": "hidden state", + "type": "text" + }, + { + "bbox": [ + 158, + 578, + 169, + 588 + ], + "score": 0.87, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 576, + 328, + 590 + ], + "score": 1.0, + "content": "with respect to the initial hidden state", + "type": "text" + }, + { + "bbox": [ + 328, + 578, + 340, + 588 + ], + "score": 0.88, + "content": "h _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 576, + 506, + 590 + ], + "score": 1.0, + "content": ". When the critical criterion is met, i.e.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 107, + 588, + 173, + 600 + ], + "score": 0.91, + "content": "R e ( \\pmb { \\Lambda } ( \\pmb { J } ) ) \\approx 0", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 587, + 251, + 602 + ], + "score": 1.0, + "content": ", the magnitude of", + "type": "text" + }, + { + "bbox": [ + 251, + 588, + 272, + 600 + ], + "score": 0.92, + "content": "A ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "is approximately constant in time, thus no exploding or", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 599, + 225, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 225, + 612 + ], + "score": 1.0, + "content": "vanishing gradient problems.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 530, + 506, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "With the connection established, we next design ODEs that satisfy the critical criterion. An anti-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 626, + 503, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 453, + 640 + ], + "score": 1.0, + "content": "symmetric matrix is a square matrix whose transpose equals its negative; i.e., a matrix", + "type": "text" + }, + { + "bbox": [ + 454, + 627, + 503, + 637 + ], + "score": 0.91, + "content": "M \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 183, + 651 + ], + "score": 1.0, + "content": "is antisymmetric if", + "type": "text" + }, + { + "bbox": [ + 184, + 637, + 237, + 649 + ], + "score": 0.94, + "content": "M ^ { T } = - M", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 637, + 447, + 651 + ], + "score": 1.0, + "content": ". An interesting property of an antisymmetric matrix", + "type": "text" + }, + { + "bbox": [ + 447, + 639, + 460, + 648 + ], + "score": 0.84, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "is that, the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 648, + 254, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 166, + 662 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 167, + 649, + 180, + 659 + ], + "score": 0.83, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 648, + 254, + 662 + ], + "score": 1.0, + "content": "are all imaginary:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 616, + 505, + 662 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 666, + 380, + 679 + ], + "lines": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "spans": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( M ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ,", + "type": "interline_equation", + "image_path": "c4a8f792239bcdd89e1251694f971a7ea7e1adea4951b3e3f24d369b7438505a.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 230, + 666, + 380, + 679 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 684, + 467, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 470, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 470, + 698 + ], + "score": 1.0, + "content": "making antisymmetric matrices a suitable building block of a stable recurrent architecture.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 684, + 470, + 698 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 701, + 223, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 224, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 224, + 714 + ], + "score": 1.0, + "content": "Consider the following ODE", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 701, + 224, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 718, + 409, + 734 + ], + "lines": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "spans": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( ( \\pmb { W } _ { h } - \\pmb { W } _ { h } ^ { T } ) \\pmb { h } ( t ) + \\pmb { V } _ { h } \\pmb { x } ( t ) + \\pmb { b } _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "732c12b765129851934f3b1c42f27ab9c819c2a88ce46572f30f7d3e7b09edd9.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 200, + 718, + 409, + 734 + ], + "spans": [], + "index": 45 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 133, + 96 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 82, + 178, + 95 + ], + "score": 0.9, + "content": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 79, + 182, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 183, + 82, + 229, + 95 + ], + "score": 0.83, + "content": "\\pmb { x } ( t ) \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 79, + 234, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 234, + 82, + 288, + 94 + ], + "score": 0.88, + "content": "\\boldsymbol { W _ { h } } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 79, + 292, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 293, + 82, + 344, + 93 + ], + "score": 0.91, + "content": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 79, + 363, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 83, + 401, + 94 + ], + "score": 0.92, + "content": "b _ { h } \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 79, + 446, + 96 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 446, + 82, + 494, + 95 + ], + "score": 0.93, + "content": "W _ { h } - W _ { h } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 79, + 506, + 96 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 390, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 390, + 106 + ], + "score": 1.0, + "content": "an antisymmetric matrix. The Jacobian matrix of the right hand side is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 110, + 449, + 127 + ], + "lines": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "spans": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\boldsymbol J ( t ) = \\mathrm { d i a g } \\left[ \\operatorname { t a n h } ^ { \\prime } \\left( ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) \\boldsymbol h ( t ) + \\boldsymbol V _ { h } \\boldsymbol x ( t ) + \\boldsymbol b \\right) \\right] ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "f54a9fa88fade55b7c1d1e6b6e67bc8ca00f52cf9f3f99119e471ac2218e5af1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 276, + 145 + ], + "score": 1.0, + "content": "whose eigenvalues are all imaginary, i.e.,", + "type": "text" + }, + { + "bbox": [ + 277, + 131, + 426, + 144 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) = 0 , \\forall i = 1 , 2 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 132, + 506, + 145 + ], + "score": 1.0, + "content": ". In other words, it", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "satisfies the critical criterion in Equation 5. See Appendix B for a proof. The entries of the diagonal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 468, + 166 + ], + "score": 1.0, + "content": "matrix in Equation 9 are the derivatives of the activation function, which are bounded in", + "type": "text" + }, + { + "bbox": [ + 468, + 154, + 489, + 166 + ], + "score": 0.71, + "content": "[ 0 , { \\bar { 1 } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 388, + 178 + ], + "score": 1.0, + "content": "sigmoid and hyperbolic tangent. In other words, the Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 388, + 165, + 408, + 177 + ], + "score": 0.92, + "content": "\\mathbf { } J ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "changes smoothly over", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "time. Furthermore, since the input and bias term only affect the bounded diagonal matrix, their", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 187, + 470, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 470, + 199 + ], + "score": 1.0, + "content": "effect on the stability of the ODE is insignificant compared with the antisymmetric matrix.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 503, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "A naive forward Euler discretization of the ODE in Equation 8 leads to the following recurrent", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 294, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 294, + 226 + ], + "score": 1.0, + "content": "network we refer to as the AntisymmetricRNN.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 230, + 421, + 246 + ], + "lines": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "spans": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\boldsymbol { h } _ { t } = \\boldsymbol { h } _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } ) h _ { t - 1 } + V _ { h } \\boldsymbol { x } _ { t } + b _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "0e411078fd36ff1cb4f02352e466345c960a22c84d5a3d80beb5f1a61a6ddb23.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 504, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 134, + 264 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 253, + 176, + 263 + ], + "score": 0.9, + "content": "\\ b { h _ { t } } ~ \\in ~ \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 250, + 291, + 264 + ], + "score": 1.0, + "content": "is the hidden state at time", + "type": "text" + }, + { + "bbox": [ + 291, + 254, + 296, + 262 + ], + "score": 0.63, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 250, + 302, + 264 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 302, + 253, + 345, + 263 + ], + "score": 0.92, + "content": "\\pmb { x } _ { t } \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 250, + 432, + 264 + ], + "score": 1.0, + "content": "is the input at time", + "type": "text" + }, + { + "bbox": [ + 432, + 253, + 437, + 262 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 250, + 443, + 264 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 443, + 252, + 501, + 264 + ], + "score": 0.91, + "content": "\\boldsymbol { W } _ { h } ~ \\in ~ \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 250, + 504, + 264 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 107, + 263, + 162, + 275 + ], + "score": 0.91, + "content": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 261, + 182, + 276 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 183, + 263, + 223, + 275 + ], + "score": 0.92, + "content": "b _ { h } \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 372, + 276 + ], + "score": 1.0, + "content": "are the parameters of the network;", + "type": "text" + }, + { + "bbox": [ + 372, + 264, + 401, + 274 + ], + "score": 0.9, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "is a hyperparameter that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 204, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 204, + 287 + ], + "score": 1.0, + "content": "represents the step size.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 252, + 304 + ], + "score": 1.0, + "content": "Note that the antisymmetric matrix", + "type": "text" + }, + { + "bbox": [ + 253, + 290, + 302, + 304 + ], + "score": 0.93, + "content": "W _ { h } \\mathrm { ~ - ~ } W _ { h } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 290, + 341, + 304 + ], + "score": 1.0, + "content": "only has", + "type": "text" + }, + { + "bbox": [ + 342, + 291, + 391, + 303 + ], + "score": 0.93, + "content": "n ( n - 1 ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "degrees of freedom. When", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 504, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 212, + 314 + ], + "score": 1.0, + "content": "implementing the model,", + "type": "text" + }, + { + "bbox": [ + 213, + 302, + 230, + 313 + ], + "score": 0.9, + "content": "W _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 302, + 504, + 314 + ], + "score": 1.0, + "content": "can be parameterized as a strictly upper triangular matrix, i.e., an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "upper triangular matrix of which the diagonal entries are all zero. This makes the proposed model", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 475, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 475, + 336 + ], + "score": 1.0, + "content": "more parameter efficient than an unstructured RNN model of the same size of hidden states.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 349, + 381, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 381, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 381, + 361 + ], + "score": 1.0, + "content": "3.3 STABILITY OF THE FORWARD EULER METHOD: DIFFUSION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 109, + 369, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 107, + 370, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 505, + 381 + ], + "score": 1.0, + "content": "Given a stable ODE, its forward Euler discretization can still be unstable, as illustrated in Section 4.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 381, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 107, + 381, + 505, + 392 + ], + "score": 1.0, + "content": "The stability condition of the forward Euler method has been well studied and summarized in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 392, + 198, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 198, + 405 + ], + "score": 1.0, + "content": "following proposition.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "Proposition 2. (Stability of the forward Euler method) The forward propagation in Equation 10 is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 416, + 141, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 416, + 133, + 432 + ], + "score": 1.0, + "content": "stable", + "type": "text" + }, + { + "bbox": [ + 133, + 419, + 141, + 430 + ], + "score": 0.27, + "content": "i f", + "type": "inline_equation" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 428, + 363, + 447 + ], + "lines": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "spans": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } | 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) | \\leq 1 ,", + "type": "interline_equation", + "image_path": "344e3afe1337e227bb93f3db82f29705ba1824b461deb93e9b7f4e274b591ff7.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 133, + 463 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 451, + 147, + 463 + ], + "score": 0.81, + "content": "| \\cdot |", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 449, + 402, + 463 + ], + "score": 1.0, + "content": "denote the absolute value or modulus of a complex number and", + "type": "text" + }, + { + "bbox": [ + 402, + 451, + 413, + 462 + ], + "score": 0.87, + "content": "\\scriptstyle { J _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "is the Jacobian matrix", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 461, + 173, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 158, + 475 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + }, + { + "bbox": [ + 158, + 462, + 169, + 473 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 461, + 173, + 475 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 482, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "See Ascher & Petzold (1998) for a proof. The ODE as defined in Equation 8 is however incom-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 494, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 397, + 506 + ], + "score": 1.0, + "content": "patible with the stability condition of the forward Euler method. Since", + "type": "text" + }, + { + "bbox": [ + 397, + 494, + 424, + 505 + ], + "score": 0.93, + "content": "\\lambda _ { i } ( J _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 494, + 506, + 506 + ], + "score": 1.0, + "content": ", the eigenvalues of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 269, + 518 + ], + "score": 1.0, + "content": "the Jacobian matrix, are all imaginary,", + "type": "text" + }, + { + "bbox": [ + 270, + 505, + 326, + 517 + ], + "score": 0.93, + "content": "\\left| 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "is always greater than 1, which makes the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 451, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 451, + 528 + ], + "score": 1.0, + "content": "AntisymmetricRNN defined in Equation 10 unstable when solved using forward Euler.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 454, + 545 + ], + "score": 1.0, + "content": "One easy way to fix it is to add diffusion to the system by subtracting a small number", + "type": "text" + }, + { + "bbox": [ + 455, + 533, + 482, + 544 + ], + "score": 0.9, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 544, + 395, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 395, + 555 + ], + "score": 1.0, + "content": "the diagonal elements of the transition matrix. The model thus becomes", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 560, + 432, + 576 + ], + "lines": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "spans": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "score": 0.89, + "content": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\big ( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "a5313a878df8745f764bd4f52396b5632c2c06f8479a241f2abd36d5dc710c3c.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 134, + 593 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 582, + 141, + 591 + ], + "score": 0.77, + "content": "\\pmb { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 581, + 261, + 593 + ], + "score": 1.0, + "content": "is the identity matrix of size", + "type": "text" + }, + { + "bbox": [ + 262, + 583, + 269, + 591 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 581, + 288, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 582, + 317, + 592 + ], + "score": 0.92, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 581, + 504, + 593 + ], + "score": 1.0, + "content": "is a hyperparameter that controls the strength", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "of diffusion. By doing so, the eigenvalues of the Jacobian have slightly negative real parts. This", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 468, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 468, + 615 + ], + "score": 1.0, + "content": "modification improves the stability of the numerical method as demonstrated in Section 4.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 107, + 628, + 222, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 223, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 223, + 641 + ], + "score": 1.0, + "content": "3.4 GATING MECHANISM", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "Gating is commonly employed in RNNs. Each gate is often modeled as a single layer network", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 243, + 673 + ], + "score": 1.0, + "content": "taking the previous hidden state", + "type": "text" + }, + { + "bbox": [ + 243, + 660, + 264, + 672 + ], + "score": 0.91, + "content": "h _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 659, + 306, + 673 + ], + "score": 1.0, + "content": "and data", + "type": "text" + }, + { + "bbox": [ + 306, + 662, + 317, + 671 + ], + "score": 0.86, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "as inputs, followed by a sigmoid activation.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "As an example, LSTM cells make use of three gates, a forget gate, an input gate, and an output", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "gate. A systematic ablation study suggests that some of the gates are crucial to the performance of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 238, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 238, + 704 + ], + "score": 1.0, + "content": "LSTM (Jozefowicz et al., 2015).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Gating can be incorporated into AntisymmetricRNN as well. However, it should be done carefully", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "so that the critical condition in Equation 5 still holds. We propose the following modification to", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 4, + "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 2019", + "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": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 133, + 96 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 82, + 178, + 95 + ], + "score": 0.9, + "content": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 79, + 182, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 183, + 82, + 229, + 95 + ], + "score": 0.83, + "content": "\\pmb { x } ( t ) \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 79, + 234, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 234, + 82, + 288, + 94 + ], + "score": 0.88, + "content": "\\boldsymbol { W _ { h } } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 79, + 292, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 293, + 82, + 344, + 93 + ], + "score": 0.91, + "content": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 79, + 363, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 83, + 401, + 94 + ], + "score": 0.92, + "content": "b _ { h } \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 79, + 446, + 96 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 446, + 82, + 494, + 95 + ], + "score": 0.93, + "content": "W _ { h } - W _ { h } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 79, + 506, + 96 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 390, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 390, + 106 + ], + "score": 1.0, + "content": "an antisymmetric matrix. The Jacobian matrix of the right hand side is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 79, + 506, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 110, + 449, + 127 + ], + "lines": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "spans": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\boldsymbol J ( t ) = \\mathrm { d i a g } \\left[ \\operatorname { t a n h } ^ { \\prime } \\left( ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) \\boldsymbol h ( t ) + \\boldsymbol V _ { h } \\boldsymbol x ( t ) + \\boldsymbol b \\right) \\right] ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "f54a9fa88fade55b7c1d1e6b6e67bc8ca00f52cf9f3f99119e471ac2218e5af1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 161, + 110, + 449, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 276, + 145 + ], + "score": 1.0, + "content": "whose eigenvalues are all imaginary, i.e.,", + "type": "text" + }, + { + "bbox": [ + 277, + 131, + 426, + 144 + ], + "score": 0.92, + "content": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) = 0 , \\forall i = 1 , 2 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 132, + 506, + 145 + ], + "score": 1.0, + "content": ". In other words, it", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "satisfies the critical criterion in Equation 5. See Appendix B for a proof. The entries of the diagonal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 468, + 166 + ], + "score": 1.0, + "content": "matrix in Equation 9 are the derivatives of the activation function, which are bounded in", + "type": "text" + }, + { + "bbox": [ + 468, + 154, + 489, + 166 + ], + "score": 0.71, + "content": "[ 0 , { \\bar { 1 } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 388, + 178 + ], + "score": 1.0, + "content": "sigmoid and hyperbolic tangent. In other words, the Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 388, + 165, + 408, + 177 + ], + "score": 0.92, + "content": "\\mathbf { } J ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "changes smoothly over", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "time. Furthermore, since the input and bias term only affect the bounded diagonal matrix, their", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 187, + 470, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 470, + 199 + ], + "score": 1.0, + "content": "effect on the stability of the ODE is insignificant compared with the antisymmetric matrix.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 131, + 506, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 503, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "A naive forward Euler discretization of the ODE in Equation 8 leads to the following recurrent", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 294, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 294, + 226 + ], + "score": 1.0, + "content": "network we refer to as the AntisymmetricRNN.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 203, + 505, + 226 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 230, + 421, + 246 + ], + "lines": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "spans": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\boldsymbol { h } _ { t } = \\boldsymbol { h } _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } ) h _ { t - 1 } + V _ { h } \\boldsymbol { x } _ { t } + b _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "0e411078fd36ff1cb4f02352e466345c960a22c84d5a3d80beb5f1a61a6ddb23.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 189, + 230, + 421, + 246 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 504, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 134, + 264 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 253, + 176, + 263 + ], + "score": 0.9, + "content": "\\ b { h _ { t } } ~ \\in ~ \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 250, + 291, + 264 + ], + "score": 1.0, + "content": "is the hidden state at time", + "type": "text" + }, + { + "bbox": [ + 291, + 254, + 296, + 262 + ], + "score": 0.63, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 250, + 302, + 264 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 302, + 253, + 345, + 263 + ], + "score": 0.92, + "content": "\\pmb { x } _ { t } \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 250, + 432, + 264 + ], + "score": 1.0, + "content": "is the input at time", + "type": "text" + }, + { + "bbox": [ + 432, + 253, + 437, + 262 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 250, + 443, + 264 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 443, + 252, + 501, + 264 + ], + "score": 0.91, + "content": "\\boldsymbol { W } _ { h } ~ \\in ~ \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 250, + 504, + 264 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 107, + 263, + 162, + 275 + ], + "score": 0.91, + "content": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 261, + 182, + 276 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 183, + 263, + 223, + 275 + ], + "score": 0.92, + "content": "b _ { h } \\in \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 372, + 276 + ], + "score": 1.0, + "content": "are the parameters of the network;", + "type": "text" + }, + { + "bbox": [ + 372, + 264, + 401, + 274 + ], + "score": 0.9, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "is a hyperparameter that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 204, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 204, + 287 + ], + "score": 1.0, + "content": "represents the step size.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 250, + 506, + 287 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 252, + 304 + ], + "score": 1.0, + "content": "Note that the antisymmetric matrix", + "type": "text" + }, + { + "bbox": [ + 253, + 290, + 302, + 304 + ], + "score": 0.93, + "content": "W _ { h } \\mathrm { ~ - ~ } W _ { h } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 290, + 341, + 304 + ], + "score": 1.0, + "content": "only has", + "type": "text" + }, + { + "bbox": [ + 342, + 291, + 391, + 303 + ], + "score": 0.93, + "content": "n ( n - 1 ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "degrees of freedom. When", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 504, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 212, + 314 + ], + "score": 1.0, + "content": "implementing the model,", + "type": "text" + }, + { + "bbox": [ + 213, + 302, + 230, + 313 + ], + "score": 0.9, + "content": "W _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 302, + 504, + 314 + ], + "score": 1.0, + "content": "can be parameterized as a strictly upper triangular matrix, i.e., an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "upper triangular matrix of which the diagonal entries are all zero. This makes the proposed model", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 475, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 475, + 336 + ], + "score": 1.0, + "content": "more parameter efficient than an unstructured RNN model of the same size of hidden states.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 290, + 506, + 336 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 349, + 381, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 381, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 381, + 361 + ], + "score": 1.0, + "content": "3.3 STABILITY OF THE FORWARD EULER METHOD: DIFFUSION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 109, + 369, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 107, + 370, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 505, + 381 + ], + "score": 1.0, + "content": "Given a stable ODE, its forward Euler discretization can still be unstable, as illustrated in Section 4.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 381, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 107, + 381, + 505, + 392 + ], + "score": 1.0, + "content": "The stability condition of the forward Euler method has been well studied and summarized in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 392, + 198, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 198, + 405 + ], + "score": 1.0, + "content": "following proposition.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 370, + 505, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "Proposition 2. (Stability of the forward Euler method) The forward propagation in Equation 10 is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 416, + 141, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 416, + 133, + 432 + ], + "score": 1.0, + "content": "stable", + "type": "text" + }, + { + "bbox": [ + 133, + 419, + 141, + 430 + ], + "score": 0.27, + "content": "i f", + "type": "inline_equation" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 406, + 505, + 432 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 428, + 363, + 447 + ], + "lines": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "spans": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } | 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) | \\leq 1 ,", + "type": "interline_equation", + "image_path": "344e3afe1337e227bb93f3db82f29705ba1824b461deb93e9b7f4e274b591ff7.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 248, + 428, + 363, + 447 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 133, + 463 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 451, + 147, + 463 + ], + "score": 0.81, + "content": "| \\cdot |", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 449, + 402, + 463 + ], + "score": 1.0, + "content": "denote the absolute value or modulus of a complex number and", + "type": "text" + }, + { + "bbox": [ + 402, + 451, + 413, + 462 + ], + "score": 0.87, + "content": "\\scriptstyle { J _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "is the Jacobian matrix", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 461, + 173, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 158, + 475 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + }, + { + "bbox": [ + 158, + 462, + 169, + 473 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 461, + 173, + 475 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 449, + 506, + 475 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 482, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "See Ascher & Petzold (1998) for a proof. The ODE as defined in Equation 8 is however incom-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 494, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 397, + 506 + ], + "score": 1.0, + "content": "patible with the stability condition of the forward Euler method. Since", + "type": "text" + }, + { + "bbox": [ + 397, + 494, + 424, + 505 + ], + "score": 0.93, + "content": "\\lambda _ { i } ( J _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 494, + 506, + 506 + ], + "score": 1.0, + "content": ", the eigenvalues of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 269, + 518 + ], + "score": 1.0, + "content": "the Jacobian matrix, are all imaginary,", + "type": "text" + }, + { + "bbox": [ + 270, + 505, + 326, + 517 + ], + "score": 0.93, + "content": "\\left| 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "is always greater than 1, which makes the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 451, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 451, + 528 + ], + "score": 1.0, + "content": "AntisymmetricRNN defined in Equation 10 unstable when solved using forward Euler.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 483, + 506, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 454, + 545 + ], + "score": 1.0, + "content": "One easy way to fix it is to add diffusion to the system by subtracting a small number", + "type": "text" + }, + { + "bbox": [ + 455, + 533, + 482, + 544 + ], + "score": 0.9, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 544, + 395, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 395, + 555 + ], + "score": 1.0, + "content": "the diagonal elements of the transition matrix. The model thus becomes", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 532, + 505, + 555 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 560, + 432, + 576 + ], + "lines": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "spans": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "score": 0.89, + "content": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\big ( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "a5313a878df8745f764bd4f52396b5632c2c06f8479a241f2abd36d5dc710c3c.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 177, + 560, + 432, + 576 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 134, + 593 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 582, + 141, + 591 + ], + "score": 0.77, + "content": "\\pmb { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 581, + 261, + 593 + ], + "score": 1.0, + "content": "is the identity matrix of size", + "type": "text" + }, + { + "bbox": [ + 262, + 583, + 269, + 591 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 581, + 288, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 582, + 317, + 592 + ], + "score": 0.92, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 581, + 504, + 593 + ], + "score": 1.0, + "content": "is a hyperparameter that controls the strength", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "of diffusion. By doing so, the eigenvalues of the Jacobian have slightly negative real parts. This", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 468, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 468, + 615 + ], + "score": 1.0, + "content": "modification improves the stability of the numerical method as demonstrated in Section 4.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 581, + 505, + 615 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 628, + 222, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 223, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 223, + 641 + ], + "score": 1.0, + "content": "3.4 GATING MECHANISM", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "Gating is commonly employed in RNNs. Each gate is often modeled as a single layer network", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 243, + 673 + ], + "score": 1.0, + "content": "taking the previous hidden state", + "type": "text" + }, + { + "bbox": [ + 243, + 660, + 264, + 672 + ], + "score": 0.91, + "content": "h _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 659, + 306, + 673 + ], + "score": 1.0, + "content": "and data", + "type": "text" + }, + { + "bbox": [ + 306, + 662, + 317, + 671 + ], + "score": 0.86, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "as inputs, followed by a sigmoid activation.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "As an example, LSTM cells make use of three gates, a forget gate, an input gate, and an output", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "gate. A systematic ablation study suggests that some of the gates are crucial to the performance of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 238, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 238, + 704 + ], + "score": 1.0, + "content": "LSTM (Jozefowicz et al., 2015).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 649, + 506, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Gating can be incorporated into AntisymmetricRNN as well. However, it should be done carefully", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "so that the critical condition in Equation 5 still holds. We propose the following modification to", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 294, + 95 + ], + "score": 1.0, + "content": "AntisymmetricRNN, which adds an input gate", + "type": "text" + }, + { + "bbox": [ + 295, + 85, + 305, + 93 + ], + "score": 0.85, + "content": "{ \\boldsymbol { z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to control the flow of information into the hidden", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 135, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 135, + 106 + ], + "score": 1.0, + "content": "states:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 109, + 441, + 143 + ], + "lines": [ + { + "bbox": [ + 169, + 109, + 441, + 143 + ], + "spans": [ + { + "bbox": [ + 169, + 109, + 441, + 143 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { z _ { t } = \\sigma \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { z } x _ { t } + b _ { z } \\right) , } \\\\ & { h _ { t } = h _ { t - 1 } + \\epsilon z _ { t } \\circ \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "e76782633e00b1dd1f79627791ca64e966afbbece6e2cb8f4c1757959da92986.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 169, + 109, + 441, + 120.33333333333333 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 169, + 120.33333333333333, + 441, + 131.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 169, + 131.66666666666666, + 441, + 143.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 146, + 410, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 411, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 133, + 160 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 149, + 141, + 156 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 145, + 276, + 160 + ], + "score": 1.0, + "content": "denotes the sigmoid function and", + "type": "text" + }, + { + "bbox": [ + 276, + 149, + 284, + 156 + ], + "score": 0.72, + "content": "\\circ", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 145, + 411, + 160 + ], + "score": 1.0, + "content": "denotes the Hadamard product.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 163, + 176 + ], + "score": 1.0, + "content": "The effect of", + "type": "text" + }, + { + "bbox": [ + 163, + 165, + 174, + 174 + ], + "score": 0.84, + "content": "{ \\boldsymbol { z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "resembles the input gate in LSTM and the update gate in GRU. By sharing the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "antisymmetric weight matrix, the number of model parameters only increases slightly, instead of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 186, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 197 + ], + "score": 1.0, + "content": "being doubled. More importantly, the Jacobian matrix of this gated model has a similar form as that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "in Equation 9, that is, a diagonal matrix multiplied by an antisymmetric matrix (ignoring diffusion).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "As a result, the real parts of the eigenvalues of the Jacobian matrix are still close to zero, and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 218, + 245, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 245, + 230 + ], + "score": 1.0, + "content": "critical criterion remains satisfied.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 246, + 192, + 259 + ], + "lines": [ + { + "bbox": [ + 104, + 245, + 194, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 245, + 194, + 261 + ], + "score": 1.0, + "content": "4 SIMULATION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "image", + "bbox": [ + 106, + 279, + 505, + 522 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 279, + 505, + 522 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 522 + ], + "score": 0.936, + "type": "image", + "image_path": "5a858e81e3967a8c614f2927716aa5f9ff6bf81f6c10c6a13a134af61b8531b4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 106, + 279, + 505, + 360.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 360.0, + 505, + 441.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 441.0, + 505, + 522.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 530, + 505, + 553 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 544 + ], + "score": 1.0, + "content": "Figure 1: Visualization of the dynamics of RNNs and RNNs with feedback using different weight", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 541, + 146, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 146, + 555 + ], + "score": 1.0, + "content": "matrices.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 15.25 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "Adopting the visualization technique used by Laurent & von Brecht (2017) and Haber & Ruthotto", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "(2017), we study the behavior of two-dimensional vanilla RNNs (left) and RNNs with feedback", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 590, + 285, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 285, + 603 + ], + "score": 1.0, + "content": "(right) in the absence of input data and bias:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 608, + 459, + 621 + ], + "lines": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "spans": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "score": 0.45, + "content": "\\operatorname { \\mathrm { = \\ t a n h } } ( W h _ { t - 1 } ) , \\qquad { \\mathrm { f e e d b a c k } } ; h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) .", + "type": "interline_equation", + "image_path": "0a18591616ff8ee12b08f2744cf0823424fcf2940a96668d0a8bc648af63fb84.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 129, + 640 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 626, + 168, + 638 + ], + "score": 0.92, + "content": "\\boldsymbol { h } _ { t } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 626, + 187, + 640 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 627, + 238, + 638 + ], + "score": 0.91, + "content": "1 \\leq t \\leq T", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 626, + 415, + 640 + ], + "score": 1.0, + "content": ". We arbitrarily choose three initial states:", + "type": "text" + }, + { + "bbox": [ + 415, + 626, + 504, + 639 + ], + "score": 0.79, + "content": "( 0 , 0 . 5 ) , ( - 0 . 5 , - 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 124, + 651 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 639, + 174, + 649 + ], + "score": 0.65, + "content": "( 0 . 5 , - 0 . 7 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 638, + 506, + 651 + ], + "score": 1.0, + "content": ", and apply the corresponding RNN recurrence. Figure 1 plots the progression of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 146, + 662 + ], + "score": 1.0, + "content": "the states", + "type": "text" + }, + { + "bbox": [ + 147, + 649, + 158, + 660 + ], + "score": 0.86, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "of vanilla RNNs (first row) and RNNs with feedback (second row) parameterized by", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 219, + 674 + ], + "score": 1.0, + "content": "different transition matrices", + "type": "text" + }, + { + "bbox": [ + 220, + 660, + 233, + 670 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 658, + 505, + 674 + ], + "score": 1.0, + "content": ". In each figure, more translucent points represent earlier time steps.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 671, + 266, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 231, + 683 + ], + "score": 1.0, + "content": "The number of total time steps", + "type": "text" + }, + { + "bbox": [ + 231, + 671, + 263, + 681 + ], + "score": 0.89, + "content": "T = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 671, + 266, + 683 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Figure 1(a) corresponds to a random weight matrix, where the entries are independent and standard", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Gaussian. The three initial points (shown in stars) converge to two fixed points on the boundary.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Since the weight matrix is unstructured, the behavior is unpredictable as expected. More examples", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "with different weight matrices are shown in Appendix D. Figure 1(b) shows the behavior of the", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + } + ], + "page_idx": 5, + "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 2019", + "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": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 294, + 95 + ], + "score": 1.0, + "content": "AntisymmetricRNN, which adds an input gate", + "type": "text" + }, + { + "bbox": [ + 295, + 85, + 305, + 93 + ], + "score": 0.85, + "content": "{ \\boldsymbol { z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to control the flow of information into the hidden", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 135, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 135, + 106 + ], + "score": 1.0, + "content": "states:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 109, + 441, + 143 + ], + "lines": [ + { + "bbox": [ + 169, + 109, + 441, + 143 + ], + "spans": [ + { + "bbox": [ + 169, + 109, + 441, + 143 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { z _ { t } = \\sigma \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { z } x _ { t } + b _ { z } \\right) , } \\\\ & { h _ { t } = h _ { t - 1 } + \\epsilon z _ { t } \\circ \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "e76782633e00b1dd1f79627791ca64e966afbbece6e2cb8f4c1757959da92986.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 169, + 109, + 441, + 120.33333333333333 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 169, + 120.33333333333333, + 441, + 131.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 169, + 131.66666666666666, + 441, + 143.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 146, + 410, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 411, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 133, + 160 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 149, + 141, + 156 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 145, + 276, + 160 + ], + "score": 1.0, + "content": "denotes the sigmoid function and", + "type": "text" + }, + { + "bbox": [ + 276, + 149, + 284, + 156 + ], + "score": 0.72, + "content": "\\circ", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 145, + 411, + 160 + ], + "score": 1.0, + "content": "denotes the Hadamard product.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 145, + 411, + 160 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 163, + 176 + ], + "score": 1.0, + "content": "The effect of", + "type": "text" + }, + { + "bbox": [ + 163, + 165, + 174, + 174 + ], + "score": 0.84, + "content": "{ \\boldsymbol { z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "resembles the input gate in LSTM and the update gate in GRU. By sharing the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "antisymmetric weight matrix, the number of model parameters only increases slightly, instead of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 186, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 197 + ], + "score": 1.0, + "content": "being doubled. More importantly, the Jacobian matrix of this gated model has a similar form as that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "in Equation 9, that is, a diagonal matrix multiplied by an antisymmetric matrix (ignoring diffusion).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "As a result, the real parts of the eigenvalues of the Jacobian matrix are still close to zero, and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 218, + 245, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 245, + 230 + ], + "score": 1.0, + "content": "critical criterion remains satisfied.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 162, + 506, + 230 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 246, + 192, + 259 + ], + "lines": [ + { + "bbox": [ + 104, + 245, + 194, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 245, + 194, + 261 + ], + "score": 1.0, + "content": "4 SIMULATION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "image", + "bbox": [ + 106, + 279, + 505, + 522 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 279, + 505, + 522 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 522 + ], + "score": 0.936, + "type": "image", + "image_path": "5a858e81e3967a8c614f2927716aa5f9ff6bf81f6c10c6a13a134af61b8531b4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 106, + 279, + 505, + 360.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 360.0, + 505, + 441.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 441.0, + 505, + 522.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 530, + 505, + 553 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 544 + ], + "score": 1.0, + "content": "Figure 1: Visualization of the dynamics of RNNs and RNNs with feedback using different weight", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 541, + 146, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 146, + 555 + ], + "score": 1.0, + "content": "matrices.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 15.25 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "Adopting the visualization technique used by Laurent & von Brecht (2017) and Haber & Ruthotto", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "(2017), we study the behavior of two-dimensional vanilla RNNs (left) and RNNs with feedback", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 590, + 285, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 285, + 603 + ], + "score": 1.0, + "content": "(right) in the absence of input data and bias:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 568, + 505, + 603 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 608, + 459, + 621 + ], + "lines": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "spans": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "score": 0.45, + "content": "\\operatorname { \\mathrm { = \\ t a n h } } ( W h _ { t - 1 } ) , \\qquad { \\mathrm { f e e d b a c k } } ; h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) .", + "type": "interline_equation", + "image_path": "0a18591616ff8ee12b08f2744cf0823424fcf2940a96668d0a8bc648af63fb84.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 201, + 608, + 459, + 621 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 129, + 640 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 626, + 168, + 638 + ], + "score": 0.92, + "content": "\\boldsymbol { h } _ { t } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 626, + 187, + 640 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 627, + 238, + 638 + ], + "score": 0.91, + "content": "1 \\leq t \\leq T", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 626, + 415, + 640 + ], + "score": 1.0, + "content": ". We arbitrarily choose three initial states:", + "type": "text" + }, + { + "bbox": [ + 415, + 626, + 504, + 639 + ], + "score": 0.79, + "content": "( 0 , 0 . 5 ) , ( - 0 . 5 , - 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 124, + 651 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 639, + 174, + 649 + ], + "score": 0.65, + "content": "( 0 . 5 , - 0 . 7 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 638, + 506, + 651 + ], + "score": 1.0, + "content": ", and apply the corresponding RNN recurrence. Figure 1 plots the progression of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 146, + 662 + ], + "score": 1.0, + "content": "the states", + "type": "text" + }, + { + "bbox": [ + 147, + 649, + 158, + 660 + ], + "score": 0.86, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "of vanilla RNNs (first row) and RNNs with feedback (second row) parameterized by", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 219, + 674 + ], + "score": 1.0, + "content": "different transition matrices", + "type": "text" + }, + { + "bbox": [ + 220, + 660, + 233, + 670 + ], + "score": 0.48, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 658, + 505, + 674 + ], + "score": 1.0, + "content": ". In each figure, more translucent points represent earlier time steps.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 671, + 266, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 231, + 683 + ], + "score": 1.0, + "content": "The number of total time steps", + "type": "text" + }, + { + "bbox": [ + 231, + 671, + 263, + 681 + ], + "score": 0.89, + "content": "T = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 671, + 266, + 683 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 626, + 506, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Figure 1(a) corresponds to a random weight matrix, where the entries are independent and standard", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Gaussian. The three initial points (shown in stars) converge to two fixed points on the boundary.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Since the weight matrix is unstructured, the behavior is unpredictable as expected. More examples", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "with different weight matrices are shown in Appendix D. Figure 1(b) shows the behavior of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 226, + 95 + ], + "score": 1.0, + "content": "identity weight matrix. Since", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 226, + 82, + 258, + 95 + ], + "score": 0.66, + "content": "\\operatorname { t a n h } ( { \\cdot } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 258, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is a contractive mapping, the origin is the unique fixed point.", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Figure 1(c) and (d) correspond to orthogonal weight matrices that represent reflection and rotation", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "transforms respectively. A two-dimensional orthogonal matrix is either a reflection or a rotation", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 299, + 127 + ], + "score": 1.0, + "content": "transform; the determinant of the matrix is 1 or", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 300, + 116, + 313, + 126 + ], + "score": 0.68, + "content": "- 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 314, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "respectively. Even though the weight matrix is", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "orthogonal, the states all converge to the origin because of the derivative of the activation function", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 136, + 212, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 208, + 150 + ], + "score": 0.91, + "content": "0 \\leq \\mathrm { t a n h } ^ { \\prime } ( W h _ { t - 1 } ) \\leq 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 208, + 136, + 212, + 150 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 226, + 95 + ], + "score": 1.0, + "content": "identity weight matrix. Since", + "type": "text" + }, + { + "bbox": [ + 226, + 82, + 258, + 95 + ], + "score": 0.66, + "content": "\\operatorname { t a n h } ( { \\cdot } )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is a contractive mapping, the origin is the unique fixed point.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Figure 1(c) and (d) correspond to orthogonal weight matrices that represent reflection and rotation", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "transforms respectively. A two-dimensional orthogonal matrix is either a reflection or a rotation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 299, + 127 + ], + "score": 1.0, + "content": "transform; the determinant of the matrix is 1 or", + "type": "text" + }, + { + "bbox": [ + 300, + 116, + 313, + 126 + ], + "score": 0.68, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "respectively. Even though the weight matrix is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "orthogonal, the states all converge to the origin because of the derivative of the activation function", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 136, + 212, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 208, + 150 + ], + "score": 0.91, + "content": "0 \\leq \\mathrm { t a n h } ^ { \\prime } ( W h _ { t - 1 } ) \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 136, + 212, + 150 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "In the case of RNNs with feedback, the trajectory of the hidden states is predictable based on the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 237, + 177 + ], + "score": 1.0, + "content": "eigenvalues of the weight matrix", + "type": "text" + }, + { + "bbox": [ + 237, + 165, + 250, + 175 + ], + "score": 0.35, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 165, + 505, + 177 + ], + "score": 1.0, + "content": ".We consider the following four weight matrices that correspond", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 230, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 230, + 189 + ], + "score": 1.0, + "content": "to Figure 1(e)-(f) respectively:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 191, + 487, + 219 + ], + "lines": [ + { + "bbox": [ + 123, + 191, + 487, + 219 + ], + "spans": [ + { + "bbox": [ + 123, + 191, + 487, + 219 + ], + "score": 0.93, + "content": "W _ { + } = \\left( \\begin{array} { c c } { { 2 } } & { { - 2 } } \\\\ { { 0 } } & { { 2 } } \\end{array} \\right) , W _ { - } = \\left( \\begin{array} { c c } { { - 2 } } & { { 2 } } \\\\ { { 0 } } & { { - 2 } } \\end{array} \\right) , W _ { 0 } = \\left( \\begin{array} { c c } { { 0 } } & { { - 2 } } \\\\ { { 2 } } & { { 0 } } \\end{array} \\right) , W _ { \\mathrm { d i f f } } = \\left( \\begin{array} { c c } { { - 0 . 1 5 } } & { { - 2 } } \\\\ { { 2 } } & { { - 0 . 1 5 } } \\end{array} \\right) .", + "type": "interline_equation", + "image_path": "47d468695314b0b59286f3662419944c639838b2642a550c2d7bfd1358abdcdd.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 123, + 191, + 487, + 200.33333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 123, + 200.33333333333334, + 487, + 209.66666666666669 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 123, + 209.66666666666669, + 487, + 219.00000000000003 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 502, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 500, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 468, + 235 + ], + "score": 1.0, + "content": "We also overlay the vector field that represents the underlying ODE. The step size is set to", + "type": "text" + }, + { + "bbox": [ + 469, + 222, + 500, + 233 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 281, + 252 + ], + "score": 1.0, + "content": "For Figure 1(e) and (f), the eigenvalues are", + "type": "text" + }, + { + "bbox": [ + 282, + 239, + 388, + 251 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } ( W _ { + } ) = \\lambda _ { 2 } ( W _ { + } ) = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 239, + 406, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 406, + 239, + 505, + 251 + ], + "score": 0.9, + "content": "\\lambda _ { 1 } ( { \\cal W } _ { - } ) = \\lambda _ { 2 } ( { \\cal W } _ { - } ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 120, + 261 + ], + "score": 0.77, + "content": "- 2", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 249, + 505, + 263 + ], + "score": 1.0, + "content": ". As a result, the hidden states are moving away from the origin and towards the origin re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 185, + 274 + ], + "score": 1.0, + "content": "spectively. Figure", + "type": "text" + }, + { + "bbox": [ + 185, + 262, + 203, + 272 + ], + "score": 0.4, + "content": "1 ( \\mathrm { g } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 261, + 405, + 274 + ], + "score": 1.0, + "content": "corresponds to the antisymmetric weight matrix", + "type": "text" + }, + { + "bbox": [ + 405, + 261, + 421, + 272 + ], + "score": 0.88, + "content": "W _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 261, + 505, + 274 + ], + "score": 1.0, + "content": ", whose eigenvalues", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 199, + 285 + ], + "score": 1.0, + "content": "are purely imaginary:", + "type": "text" + }, + { + "bbox": [ + 200, + 272, + 260, + 284 + ], + "score": 0.86, + "content": "\\lambda _ { 1 } ( W _ { 0 } ) = 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 272, + 265, + 285 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 265, + 272, + 333, + 284 + ], + "score": 0.88, + "content": "\\lambda _ { 2 } ( \\mathbf { W } _ { 0 } ) = - 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 272, + 505, + 285 + ], + "score": 1.0, + "content": ". In this case, the vector field is circular;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "a state moves around the origin without exponentially increasing or decreasing its norm. How-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "ever, on closer inspection, the trajectories are actually outward spirals. This is because, at each", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "time step, the state moves along the tangential direction by a small step, which increases the dis-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "score": 1.0, + "content": "tance from the origin and leads to numerical instability. It is the behavior characterized by Propo-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 419, + 340 + ], + "score": 1.0, + "content": "sition 2. This issue can be mitigated by subtracting a small diffusion term", + "type": "text" + }, + { + "bbox": [ + 420, + 329, + 428, + 338 + ], + "score": 0.78, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "from the diagonal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 275, + 351 + ], + "score": 1.0, + "content": "elements of the weight matrix. We choose", + "type": "text" + }, + { + "bbox": [ + 276, + 338, + 314, + 349 + ], + "score": 0.9, + "content": "\\gamma = 0 . 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 337, + 404, + 351 + ], + "score": 1.0, + "content": "and the weight matrix", + "type": "text" + }, + { + "bbox": [ + 405, + 338, + 429, + 349 + ], + "score": 0.89, + "content": "W _ { \\mathrm { d i f f } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "has eigenvalues of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 211, + 361 + ], + "score": 0.85, + "content": "\\lambda _ { 1 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 + 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 348, + 214, + 362 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 215, + 349, + 318, + 361 + ], + "score": 0.79, + "content": "\\lambda _ { 2 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 - 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 348, + 506, + 362 + ], + "score": 1.0, + "content": ". Figure 1(h) shows the effect of the diffusion", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 359, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 373 + ], + "score": 1.0, + "content": "terms. The vector field is slightly tilting toward the origin and the trajectory maintains a constant", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 207, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 207, + 384 + ], + "score": 1.0, + "content": "distance from the origin.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 430, + 401 + ], + "score": 1.0, + "content": "These simulations show that the hidden states of an AntisymmetricRNN (Figure", + "type": "text" + }, + { + "bbox": [ + 430, + 388, + 448, + 399 + ], + "score": 0.31, + "content": "1 ( \\mathrm { g } )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 388, + 506, + 401 + ], + "score": 1.0, + "content": "and (h)) have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "predictable dynamics. It achieves the desirable behavior, without the complication of maintaining", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "an orthogonal or unitary matrix as in Figure 1(d), which still suffers from vanishing gradients due to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 421, + 272, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 272, + 432 + ], + "score": 1.0, + "content": "the contraction of the activation function.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 200, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 201, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 201, + 462 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "The performance of the proposed antisymmetric networks is evaluated on four image classification", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "tasks with long-range dependencies. The classification is done by feeding pixels of the images as a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 311, + 507 + ], + "score": 1.0, + "content": "sequence to RNNs and sending the last hidden state", + "type": "text" + }, + { + "bbox": [ + 311, + 495, + 325, + 506 + ], + "score": 0.89, + "content": "h _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "of the RNNs into a fully-connected layer and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "a softmax function. We use the cross-entropy loss and SGD with momentum and Adagrad (Duchi", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "et al., 2011) as optimizers. More experimental details can be found in Appendix C. In this section,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "AntisymmetricRNN denotes the model with diffusion in Equation 12, and AntisymmetricRNN w/", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 539, + 283, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 283, + 551 + ], + "score": 1.0, + "content": "gating represents the model in Equation 13.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 563, + 237, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 239, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 239, + 575 + ], + "score": 1.0, + "content": "5.1 PIXEL-BY-PIXEL MNIST", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "In the first task, we learn to classify the MNIST digits by pixels (LeCun et al., 1998). This task was", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "proposed by Le et al. (2015) and used as a benchmark for learning long term dependencies. MNIST", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 212, + 618 + ], + "score": 1.0, + "content": "images are grayscale with", + "type": "text" + }, + { + "bbox": [ + 212, + 606, + 245, + 616 + ], + "score": 0.9, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "pixels. The 784 pixels are presented sequentially to the recurrent", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "net, one pixel at a time in scanline order (starting at the top left corner of the image and ending at", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 364, + 641 + ], + "score": 1.0, + "content": "the bottom right corner). In other words, the input dimension", + "type": "text" + }, + { + "bbox": [ + 364, + 628, + 396, + 638 + ], + "score": 0.9, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "and number of time steps", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 145, + 649 + ], + "score": 0.89, + "content": "T = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 637, + 506, + 652 + ], + "score": 1.0, + "content": ". The pixel-by-pixel MNIST task is to predict the digit of the MNIST image after seeing", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "all 784 pixels. As a result, the network has to be able to learn the long-range dependencies in order", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 659, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 674 + ], + "score": 1.0, + "content": "to correctly classify the digit. To make the task even harder, the MNIST pixels are shuffled using a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 670, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 686 + ], + "score": 1.0, + "content": "fixed random permutation. It creates non-local long-range dependencies among pixels in an image.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 681, + 356, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 356, + 695 + ], + "score": 1.0, + "content": "This task is referred to as the permuted pixel-by-pixel MNIST.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 119, + 699, + 420, + 713 + ], + "score": 1.0, + "content": "1Cooijmans et al. (2017) also report the performance of the LSTM as a baseline:", + "type": "text" + }, + { + "bbox": [ + 421, + 702, + 445, + 711 + ], + "score": 0.85, + "content": "9 8 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "on MNIST and", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 131, + 721 + ], + "score": 0.85, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "on pMNIST. We decide to use the LSTM baseline reported by Arjovsky et al. (2016) because it has a", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 438, + 732 + ], + "score": 1.0, + "content": "higher accuracy on the more challenging pMNIST task than that in Cooijmans et al. (2017)", + "type": "text" + }, + { + "bbox": [ + 438, + 722, + 463, + 731 + ], + "score": 0.81, + "content": "9 2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 721, + 474, + 732 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 474, + 721, + 499, + 731 + ], + "score": 0.83, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 721, + 505, + 732 + ], + "score": 1.0, + "content": ").", + "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 2019", + "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": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 505, + 150 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "In the case of RNNs with feedback, the trajectory of the hidden states is predictable based on the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 237, + 177 + ], + "score": 1.0, + "content": "eigenvalues of the weight matrix", + "type": "text" + }, + { + "bbox": [ + 237, + 165, + 250, + 175 + ], + "score": 0.35, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 165, + 505, + 177 + ], + "score": 1.0, + "content": ".We consider the following four weight matrices that correspond", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 230, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 230, + 189 + ], + "score": 1.0, + "content": "to Figure 1(e)-(f) respectively:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 154, + 505, + 189 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 191, + 487, + 219 + ], + "lines": [ + { + "bbox": [ + 123, + 191, + 487, + 219 + ], + "spans": [ + { + "bbox": [ + 123, + 191, + 487, + 219 + ], + "score": 0.93, + "content": "W _ { + } = \\left( \\begin{array} { c c } { { 2 } } & { { - 2 } } \\\\ { { 0 } } & { { 2 } } \\end{array} \\right) , W _ { - } = \\left( \\begin{array} { c c } { { - 2 } } & { { 2 } } \\\\ { { 0 } } & { { - 2 } } \\end{array} \\right) , W _ { 0 } = \\left( \\begin{array} { c c } { { 0 } } & { { - 2 } } \\\\ { { 2 } } & { { 0 } } \\end{array} \\right) , W _ { \\mathrm { d i f f } } = \\left( \\begin{array} { c c } { { - 0 . 1 5 } } & { { - 2 } } \\\\ { { 2 } } & { { - 0 . 1 5 } } \\end{array} \\right) .", + "type": "interline_equation", + "image_path": "47d468695314b0b59286f3662419944c639838b2642a550c2d7bfd1358abdcdd.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 123, + 191, + 487, + 200.33333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 123, + 200.33333333333334, + 487, + 209.66666666666669 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 123, + 209.66666666666669, + 487, + 219.00000000000003 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 502, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 500, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 468, + 235 + ], + "score": 1.0, + "content": "We also overlay the vector field that represents the underlying ODE. The step size is set to", + "type": "text" + }, + { + "bbox": [ + 469, + 222, + 500, + 233 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 221, + 500, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 281, + 252 + ], + "score": 1.0, + "content": "For Figure 1(e) and (f), the eigenvalues are", + "type": "text" + }, + { + "bbox": [ + 282, + 239, + 388, + 251 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } ( W _ { + } ) = \\lambda _ { 2 } ( W _ { + } ) = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 239, + 406, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 406, + 239, + 505, + 251 + ], + "score": 0.9, + "content": "\\lambda _ { 1 } ( { \\cal W } _ { - } ) = \\lambda _ { 2 } ( { \\cal W } _ { - } ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 120, + 261 + ], + "score": 0.77, + "content": "- 2", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 249, + 505, + 263 + ], + "score": 1.0, + "content": ". As a result, the hidden states are moving away from the origin and towards the origin re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 185, + 274 + ], + "score": 1.0, + "content": "spectively. Figure", + "type": "text" + }, + { + "bbox": [ + 185, + 262, + 203, + 272 + ], + "score": 0.4, + "content": "1 ( \\mathrm { g } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 261, + 405, + 274 + ], + "score": 1.0, + "content": "corresponds to the antisymmetric weight matrix", + "type": "text" + }, + { + "bbox": [ + 405, + 261, + 421, + 272 + ], + "score": 0.88, + "content": "W _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 261, + 505, + 274 + ], + "score": 1.0, + "content": ", whose eigenvalues", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 199, + 285 + ], + "score": 1.0, + "content": "are purely imaginary:", + "type": "text" + }, + { + "bbox": [ + 200, + 272, + 260, + 284 + ], + "score": 0.86, + "content": "\\lambda _ { 1 } ( W _ { 0 } ) = 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 272, + 265, + 285 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 265, + 272, + 333, + 284 + ], + "score": 0.88, + "content": "\\lambda _ { 2 } ( \\mathbf { W } _ { 0 } ) = - 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 272, + 505, + 285 + ], + "score": 1.0, + "content": ". In this case, the vector field is circular;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "a state moves around the origin without exponentially increasing or decreasing its norm. How-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "ever, on closer inspection, the trajectories are actually outward spirals. This is because, at each", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "time step, the state moves along the tangential direction by a small step, which increases the dis-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "score": 1.0, + "content": "tance from the origin and leads to numerical instability. It is the behavior characterized by Propo-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 419, + 340 + ], + "score": 1.0, + "content": "sition 2. This issue can be mitigated by subtracting a small diffusion term", + "type": "text" + }, + { + "bbox": [ + 420, + 329, + 428, + 338 + ], + "score": 0.78, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "from the diagonal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 275, + 351 + ], + "score": 1.0, + "content": "elements of the weight matrix. We choose", + "type": "text" + }, + { + "bbox": [ + 276, + 338, + 314, + 349 + ], + "score": 0.9, + "content": "\\gamma = 0 . 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 337, + 404, + 351 + ], + "score": 1.0, + "content": "and the weight matrix", + "type": "text" + }, + { + "bbox": [ + 405, + 338, + 429, + 349 + ], + "score": 0.89, + "content": "W _ { \\mathrm { d i f f } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "has eigenvalues of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 211, + 361 + ], + "score": 0.85, + "content": "\\lambda _ { 1 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 + 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 348, + 214, + 362 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 215, + 349, + 318, + 361 + ], + "score": 0.79, + "content": "\\lambda _ { 2 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 - 2 i", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 348, + 506, + 362 + ], + "score": 1.0, + "content": ". Figure 1(h) shows the effect of the diffusion", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 359, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 373 + ], + "score": 1.0, + "content": "terms. The vector field is slightly tilting toward the origin and the trajectory maintains a constant", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 207, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 207, + 384 + ], + "score": 1.0, + "content": "distance from the origin.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 239, + 506, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 430, + 401 + ], + "score": 1.0, + "content": "These simulations show that the hidden states of an AntisymmetricRNN (Figure", + "type": "text" + }, + { + "bbox": [ + 430, + 388, + 448, + 399 + ], + "score": 0.31, + "content": "1 ( \\mathrm { g } )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 388, + 506, + 401 + ], + "score": 1.0, + "content": "and (h)) have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "predictable dynamics. It achieves the desirable behavior, without the complication of maintaining", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "an orthogonal or unitary matrix as in Figure 1(d), which still suffers from vanishing gradients due to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 421, + 272, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 272, + 432 + ], + "score": 1.0, + "content": "the contraction of the activation function.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 388, + 506, + 432 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 200, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 201, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 201, + 462 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "The performance of the proposed antisymmetric networks is evaluated on four image classification", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "tasks with long-range dependencies. The classification is done by feeding pixels of the images as a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 311, + 507 + ], + "score": 1.0, + "content": "sequence to RNNs and sending the last hidden state", + "type": "text" + }, + { + "bbox": [ + 311, + 495, + 325, + 506 + ], + "score": 0.89, + "content": "h _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "of the RNNs into a fully-connected layer and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "a softmax function. We use the cross-entropy loss and SGD with momentum and Adagrad (Duchi", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "et al., 2011) as optimizers. More experimental details can be found in Appendix C. In this section,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "AntisymmetricRNN denotes the model with diffusion in Equation 12, and AntisymmetricRNN w/", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 539, + 283, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 283, + 551 + ], + "score": 1.0, + "content": "gating represents the model in Equation 13.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 473, + 506, + 551 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 563, + 237, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 239, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 239, + 575 + ], + "score": 1.0, + "content": "5.1 PIXEL-BY-PIXEL MNIST", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "In the first task, we learn to classify the MNIST digits by pixels (LeCun et al., 1998). This task was", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "proposed by Le et al. (2015) and used as a benchmark for learning long term dependencies. MNIST", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 212, + 618 + ], + "score": 1.0, + "content": "images are grayscale with", + "type": "text" + }, + { + "bbox": [ + 212, + 606, + 245, + 616 + ], + "score": 0.9, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "pixels. The 784 pixels are presented sequentially to the recurrent", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "net, one pixel at a time in scanline order (starting at the top left corner of the image and ending at", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 364, + 641 + ], + "score": 1.0, + "content": "the bottom right corner). In other words, the input dimension", + "type": "text" + }, + { + "bbox": [ + 364, + 628, + 396, + 638 + ], + "score": 0.9, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "and number of time steps", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 145, + 649 + ], + "score": 0.89, + "content": "T = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 637, + 506, + 652 + ], + "score": 1.0, + "content": ". The pixel-by-pixel MNIST task is to predict the digit of the MNIST image after seeing", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "all 784 pixels. As a result, the network has to be able to learn the long-range dependencies in order", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 659, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 674 + ], + "score": 1.0, + "content": "to correctly classify the digit. To make the task even harder, the MNIST pixels are shuffled using a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 670, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 686 + ], + "score": 1.0, + "content": "fixed random permutation. It creates non-local long-range dependencies among pixels in an image.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 681, + 356, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 356, + 695 + ], + "score": 1.0, + "content": "This task is referred to as the permuted pixel-by-pixel MNIST.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 583, + 506, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 80, + 476, + 182 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 476, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 476, + 182 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 476, + 182 + ], + "score": 0.979, + "html": "
methodMNISTpMNIST#units# params
LSTM (Arjovsky et al., 2016)197.3%92.6%12868k
FC uRNN(Wisdom et al., 2016)92.8%92.1%11616k
FC uRNN (Wisdom et al., 2016)96.9%94.1%512270k
Soft orthogonal (Vorontsov et al., 2017)94.1%91.4%12818k
KRU (Jose et al., 2017)96.4%94.5%51211k
AntisymmetricRNN98.0%95.8%12810k
AntisymmetricRNN w/ gating98.8%93.1%12810k
", + "type": "table", + "image_path": "12e0f91c5ad63a2caa5b177da5c0b6b8400f5132a170e4cfdf15382088711a33.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 476, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 114.0, + 476, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 148.0, + 476, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 146, + 190, + 462, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 189, + 463, + 203 + ], + "spans": [ + { + "bbox": [ + 147, + 189, + 463, + 203 + ], + "score": 1.0, + "content": "Table 1: Evaluation accuracy on pixel-by-pixel MNIST and permuted MNIST.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "Table 1 summarizes the performance of our methods and the existing methods. On both tasks, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 427, + 247 + ], + "score": 1.0, + "content": "proposed AntisymmetricRNNs outperform the regular LSTM model using only", + "type": "text" + }, + { + "bbox": [ + 428, + 234, + 444, + 246 + ], + "score": 0.59, + "content": "1 / 7", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "of parameters.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "Imposing orthogonal weights (Arjovsky et al., 2016) produces worse results, which corroborates", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "with the existing study showing that such constraints restrict the capacity of the learned model.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "Softening the orthogonal weights constraints (Wisdom et al., 2016; Vorontsov et al., 2017; Jose et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "2017) leads to slightly improved performance. AntisymmetricRNNs outperform these methods by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 416, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 416, + 302 + ], + "score": 1.0, + "content": "a large margin, without the computational overhead to enforce orthogonality.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 314, + 250, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 252, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 252, + 326 + ], + "score": 1.0, + "content": "5.2 PIXEL-BY-PIXEL CIFAR-10", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "To test our methods on a larger dataset, we conduct experiments on pixel-by-pixel CIFAR-10. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 221, + 358 + ], + "score": 1.0, + "content": "CIFAR-10 dataset contains", + "type": "text" + }, + { + "bbox": [ + 221, + 346, + 257, + 357 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "colour images in 10 classes (Krizhevsky & Hinton, 2009).", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Similar to pixel-by-pixel MNIST, we feed the three channels of a pixel into the model at each time", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 368, + 391, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 213, + 379 + ], + "score": 1.0, + "content": "step. The input dimension", + "type": "text" + }, + { + "bbox": [ + 213, + 369, + 241, + 378 + ], + "score": 0.9, + "content": "m = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 368, + 345, + 379 + ], + "score": 1.0, + "content": "and number of time steps", + "type": "text" + }, + { + "bbox": [ + 345, + 368, + 387, + 378 + ], + "score": 0.9, + "content": "T = 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 368, + 391, + 379 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "The results are shown in Table 2. The AntisymmetricRNN performance is on par with the LSTM,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "and AntisymmetricRNN with gating is slightly better than LSTM, both using only about half of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "parameters of the LSTM model. Further investigation shows that the task is mostly dominated by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 310, + 431 + ], + "score": 1.0, + "content": "short term dependencies. LSTM can achieve about", + "type": "text" + }, + { + "bbox": [ + 310, + 418, + 338, + 428 + ], + "score": 0.87, + "content": "4 8 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "classification accuracy by only seeing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 426, + 248, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 248, + 442 + ], + "score": 1.0, + "content": "last 8 rows of CIFAR-10 images 2.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "table", + "bbox": [ + 131, + 451, + 481, + 519 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 451, + 481, + 519 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 451, + 481, + 519 + ], + "spans": [ + { + "bbox": [ + 131, + 451, + 481, + 519 + ], + "score": 0.976, + "html": "
methodpixel-by-pixelnoise padded#units# params
LSTM59.7%11.6%12869k
Ablation model54.6%46.2%19642k
AntisymmetricRNN58.7%48.3%25636k
AntisymmetricRNN w/ gating62.2%54.7%25637k
", + "type": "table", + "image_path": "d380c059993ae679686020c20815fd5f9815005e9d338d8404eecf0de766dc5e.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 131, + 451, + 481, + 473.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 131, + 473.6666666666667, + 481, + 496.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 131, + 496.33333333333337, + 481, + 519.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 130, + 527, + 480, + 538 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 525, + 482, + 540 + ], + "spans": [ + { + "bbox": [ + 127, + 525, + 482, + 540 + ], + "score": 1.0, + "content": "Table 2: Evaluation accuracy on pixel-by-pixel CIFAR-10 and noise padded CIFAR-10.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + } + ], + "index": 23.0 + }, + { + "type": "title", + "bbox": [ + 107, + 559, + 244, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 246, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 246, + 572 + ], + "score": 1.0, + "content": "5.3 NOISE PADDED CIFAR-10", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "To introduce more long-range dependencies to the pixel-by-pixel CIFAR-10 task, we define a more", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "challenging task call the noise padded CIFAR-10, inspired by the noise padded experiments in Chen", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "et al. (2018a). Instead of feeding in one pixel at one time, we input each row of a CIFAR-10 image", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "at every time step. After the first 32 time steps, we input independent standard Gaussian noise for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 624, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 636 + ], + "score": 1.0, + "content": "the remaining time steps. Since a CIFAR-10 image is of size 32 with three RGB channels, the input", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 161, + 648 + ], + "score": 1.0, + "content": "dimension is", + "type": "text" + }, + { + "bbox": [ + 161, + 636, + 197, + 645 + ], + "score": 0.9, + "content": "m = 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 635, + 368, + 648 + ], + "score": 1.0, + "content": ". The total number of time steps is set to", + "type": "text" + }, + { + "bbox": [ + 368, + 635, + 413, + 645 + ], + "score": 0.9, + "content": "T = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 635, + 505, + 648 + ], + "score": 1.0, + "content": ". In other words, only", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "the first 32 time steps of input contain salient information, all remaining 968 time steps are merely", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "random noise. For a model to correctly classify an input image, it has to remember the information", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "from a long time ago. This task is conceptually more difficult than the pixel-by-pixel CIFAR-10,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "although the total amount of signal in the input sequence is the same. The results are shown in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "Table 2. LSTM fails to train at all on this task while our proposed methods perform reasonably well", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 701, + 200, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 200, + 714 + ], + "score": 1.0, + "content": "with fewer parameters.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 721, + 449, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 450, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 174, + 733 + ], + "score": 1.0, + "content": "2Last one row:", + "type": "text" + }, + { + "bbox": [ + 174, + 721, + 199, + 731 + ], + "score": 0.81, + "content": "3 3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 720, + 254, + 733 + ], + "score": 1.0, + "content": ", last two rows:", + "type": "text" + }, + { + "bbox": [ + 255, + 721, + 279, + 731 + ], + "score": 0.82, + "content": "3 5 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 720, + 337, + 733 + ], + "score": 1.0, + "content": ", last four rows:", + "type": "text" + }, + { + "bbox": [ + 337, + 721, + 361, + 731 + ], + "score": 0.82, + "content": "3 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 720, + 421, + 733 + ], + "score": 1.0, + "content": ", last eight rows:", + "type": "text" + }, + { + "bbox": [ + 422, + 721, + 446, + 731 + ], + "score": 0.83, + "content": "4 8 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 720, + 450, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "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": [ + 136, + 80, + 476, + 182 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 476, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 476, + 182 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 476, + 182 + ], + "score": 0.979, + "html": "
methodMNISTpMNIST#units# params
LSTM (Arjovsky et al., 2016)197.3%92.6%12868k
FC uRNN(Wisdom et al., 2016)92.8%92.1%11616k
FC uRNN (Wisdom et al., 2016)96.9%94.1%512270k
Soft orthogonal (Vorontsov et al., 2017)94.1%91.4%12818k
KRU (Jose et al., 2017)96.4%94.5%51211k
AntisymmetricRNN98.0%95.8%12810k
AntisymmetricRNN w/ gating98.8%93.1%12810k
", + "type": "table", + "image_path": "12e0f91c5ad63a2caa5b177da5c0b6b8400f5132a170e4cfdf15382088711a33.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 476, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 114.0, + 476, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 148.0, + 476, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 146, + 190, + 462, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 189, + 463, + 203 + ], + "spans": [ + { + "bbox": [ + 147, + 189, + 463, + 203 + ], + "score": 1.0, + "content": "Table 1: Evaluation accuracy on pixel-by-pixel MNIST and permuted MNIST.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "Table 1 summarizes the performance of our methods and the existing methods. On both tasks, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 427, + 247 + ], + "score": 1.0, + "content": "proposed AntisymmetricRNNs outperform the regular LSTM model using only", + "type": "text" + }, + { + "bbox": [ + 428, + 234, + 444, + 246 + ], + "score": 0.59, + "content": "1 / 7", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "of parameters.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "Imposing orthogonal weights (Arjovsky et al., 2016) produces worse results, which corroborates", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "with the existing study showing that such constraints restrict the capacity of the learned model.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "Softening the orthogonal weights constraints (Wisdom et al., 2016; Vorontsov et al., 2017; Jose et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "2017) leads to slightly improved performance. AntisymmetricRNNs outperform these methods by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 416, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 416, + 302 + ], + "score": 1.0, + "content": "a large margin, without the computational overhead to enforce orthogonality.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 222, + 506, + 302 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 314, + 250, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 252, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 252, + 326 + ], + "score": 1.0, + "content": "5.2 PIXEL-BY-PIXEL CIFAR-10", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "To test our methods on a larger dataset, we conduct experiments on pixel-by-pixel CIFAR-10. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 221, + 358 + ], + "score": 1.0, + "content": "CIFAR-10 dataset contains", + "type": "text" + }, + { + "bbox": [ + 221, + 346, + 257, + 357 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "colour images in 10 classes (Krizhevsky & Hinton, 2009).", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Similar to pixel-by-pixel MNIST, we feed the three channels of a pixel into the model at each time", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 368, + 391, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 213, + 379 + ], + "score": 1.0, + "content": "step. The input dimension", + "type": "text" + }, + { + "bbox": [ + 213, + 369, + 241, + 378 + ], + "score": 0.9, + "content": "m = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 368, + 345, + 379 + ], + "score": 1.0, + "content": "and number of time steps", + "type": "text" + }, + { + "bbox": [ + 345, + 368, + 387, + 378 + ], + "score": 0.9, + "content": "T = 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 368, + 391, + 379 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 334, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "The results are shown in Table 2. The AntisymmetricRNN performance is on par with the LSTM,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "and AntisymmetricRNN with gating is slightly better than LSTM, both using only about half of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "parameters of the LSTM model. Further investigation shows that the task is mostly dominated by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 310, + 431 + ], + "score": 1.0, + "content": "short term dependencies. LSTM can achieve about", + "type": "text" + }, + { + "bbox": [ + 310, + 418, + 338, + 428 + ], + "score": 0.87, + "content": "4 8 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "classification accuracy by only seeing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 426, + 248, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 248, + 442 + ], + "score": 1.0, + "content": "last 8 rows of CIFAR-10 images 2.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 385, + 506, + 442 + ] + }, + { + "type": "table", + "bbox": [ + 131, + 451, + 481, + 519 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 451, + 481, + 519 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 451, + 481, + 519 + ], + "spans": [ + { + "bbox": [ + 131, + 451, + 481, + 519 + ], + "score": 0.976, + "html": "
methodpixel-by-pixelnoise padded#units# params
LSTM59.7%11.6%12869k
Ablation model54.6%46.2%19642k
AntisymmetricRNN58.7%48.3%25636k
AntisymmetricRNN w/ gating62.2%54.7%25637k
", + "type": "table", + "image_path": "d380c059993ae679686020c20815fd5f9815005e9d338d8404eecf0de766dc5e.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 131, + 451, + 481, + 473.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 131, + 473.6666666666667, + 481, + 496.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 131, + 496.33333333333337, + 481, + 519.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 130, + 527, + 480, + 538 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 525, + 482, + 540 + ], + "spans": [ + { + "bbox": [ + 127, + 525, + 482, + 540 + ], + "score": 1.0, + "content": "Table 2: Evaluation accuracy on pixel-by-pixel CIFAR-10 and noise padded CIFAR-10.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + } + ], + "index": 23.0 + }, + { + "type": "title", + "bbox": [ + 107, + 559, + 244, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 246, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 246, + 572 + ], + "score": 1.0, + "content": "5.3 NOISE PADDED CIFAR-10", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "To introduce more long-range dependencies to the pixel-by-pixel CIFAR-10 task, we define a more", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "challenging task call the noise padded CIFAR-10, inspired by the noise padded experiments in Chen", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "et al. (2018a). Instead of feeding in one pixel at one time, we input each row of a CIFAR-10 image", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "at every time step. After the first 32 time steps, we input independent standard Gaussian noise for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 624, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 636 + ], + "score": 1.0, + "content": "the remaining time steps. Since a CIFAR-10 image is of size 32 with three RGB channels, the input", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 161, + 648 + ], + "score": 1.0, + "content": "dimension is", + "type": "text" + }, + { + "bbox": [ + 161, + 636, + 197, + 645 + ], + "score": 0.9, + "content": "m = 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 635, + 368, + 648 + ], + "score": 1.0, + "content": ". The total number of time steps is set to", + "type": "text" + }, + { + "bbox": [ + 368, + 635, + 413, + 645 + ], + "score": 0.9, + "content": "T = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 635, + 505, + 648 + ], + "score": 1.0, + "content": ". In other words, only", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "the first 32 time steps of input contain salient information, all remaining 968 time steps are merely", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "random noise. For a model to correctly classify an input image, it has to remember the information", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "from a long time ago. This task is conceptually more difficult than the pixel-by-pixel CIFAR-10,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "although the total amount of signal in the input sequence is the same. The results are shown in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "Table 2. LSTM fails to train at all on this task while our proposed methods perform reasonably well", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 701, + 200, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 200, + 714 + ], + "score": 1.0, + "content": "with fewer parameters.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 579, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 188, + 83, + 418, + 219 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 188, + 83, + 418, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 188, + 83, + 418, + 219 + ], + "spans": [ + { + "bbox": [ + 188, + 83, + 418, + 219 + ], + "score": 0.967, + "type": "image", + "image_path": "dc62088bb56c80add338f8f3c68221e98d375809570dee8a3113a566b93497bc.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 83, + 418, + 96.6 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 188, + 96.6, + 418, + 110.19999999999999 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 188, + 110.19999999999999, + 418, + 123.79999999999998 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 188, + 123.79999999999998, + 418, + 137.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 188, + 137.39999999999998, + 418, + 150.99999999999997 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 188, + 150.99999999999997, + 418, + 164.59999999999997 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 188, + 164.59999999999997, + 418, + 178.19999999999996 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 188, + 178.19999999999996, + 418, + 191.79999999999995 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 188, + 191.79999999999995, + 418, + 205.39999999999995 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 188, + 205.39999999999995, + 418, + 218.99999999999994 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 232, + 504, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 232, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 504, + 245 + ], + "score": 1.0, + "content": "Figure 2: Mean and standard deviation of eigenvalues of the end-to-end Jacobian matrix in Antisym-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "metricRNNs with different diffusion constants and LSTMs, trained on the noise padded CIFAR-10.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "To verify that AntisymmetricRNNs indeed mitigate the exploding/vanishing gradient issues, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "conduct an additional set of experiments varying the length of noise padding so that the total time", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 130, + 313 + ], + "score": 1.0, + "content": "steps", + "type": "text" + }, + { + "bbox": [ + 130, + 300, + 238, + 311 + ], + "score": 0.88, + "content": "T \\in \\{ 1 0 0 , 2 0 0 , 4 0 0 , 8 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 299, + 506, + 313 + ], + "score": 1.0, + "content": ". LSTMs and AntisymmetricRNNs with different diffusion con-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 131, + 323 + ], + "score": 1.0, + "content": "stants", + "type": "text" + }, + { + "bbox": [ + 132, + 311, + 258, + 323 + ], + "score": 0.86, + "content": "\\gamma \\in \\{ 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 , 5 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "are trained on these tasks. Figure 2 visualizes the mean and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "standard deviation of the eigenvalues of the end-to-end Jacobian matrices for these networks. Uni-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 332, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 504, + 345 + ], + "score": 1.0, + "content": "tary eigenvalues, i.e., mean close to 1 and standard deviation close to 0, indicate non-exploding and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "non-vanishing gradients. As shown in the figure, the eigenvalues for LSTMs quickly approaches", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 369 + ], + "score": 1.0, + "content": "zero as time steps increase, indicating vanishing gradients during back-propagation. This explains", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "why LSTMs fail to train at all on this task. AntisymmetricRNNs with a broad range of diffusion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 146, + 389 + ], + "score": 1.0, + "content": "constants", + "type": "text" + }, + { + "bbox": [ + 147, + 379, + 154, + 388 + ], + "score": 0.77, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 376, + 505, + 389 + ], + "score": 1.0, + "content": ", on the other hand, have eigenvalues centered around 1. It is worth noting though as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "the diffusion constant increases to large values, AntisymmetricRNNs run into vanishing gradients", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 232, + 412 + ], + "score": 1.0, + "content": "as well. The diffusion constant", + "type": "text" + }, + { + "bbox": [ + 232, + 400, + 240, + 410 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 398, + 505, + 412 + ], + "score": 1.0, + "content": "plays an important role in striking a balance between the stability", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 410, + 330, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 330, + 422 + ], + "score": 1.0, + "content": "of discretization and capturing long-term dependencies.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 436, + 207, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 209, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 209, + 448 + ], + "score": 1.0, + "content": "5.4 ABLATION STUDY", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 457, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "For the CIFAR-10 experiments, we have also conducted an ablation study to further demonstrate", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "the effect of antisymmetric weight matrix. The ablation model in Table 2 refers to the model that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "replaces the antisymmetric weight matrices in Equation 13 with unstructured weight matrices. As", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "score": 1.0, + "content": "shown in Table 2, without the antisymmetric parametrization, the performance on both pixel-by-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 500, + 282, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 282, + 514 + ], + "score": 1.0, + "content": "pixel and noise padded CIFAR-10 is worse.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "It is worth mentioning that the antisymmetric formulation is a sufficient condition of stability, not", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "necessary. There are possibly other conditions that lead to stability as well as suggested in Chen", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 433, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 433, + 551 + ], + "score": 1.0, + "content": "et al. (2018a), which could explain the modest degradation in the ablation results.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 568, + 195, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 197, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 197, + 584 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "In this paper, we present a new perspective on the trainability of RNNs from the dynamical system", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "viewpoint. We draw connections between RNNs and the ordinary differential equation theory and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "design new recurrent architectures by discretizing ODEs. This new view opens up possibilities", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 639 + ], + "score": 1.0, + "content": "to exploit the computational and theoretical success from dynamical systems to understand and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "improve the trainability of RNNs. We also propose the AntisymmetricRNN, which is a discretization", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "of ODEs that satisfy the critical criterion. Besides its appealing theoretical properties, our models", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "have demonstrated competitive performance over strong recurrent baselines on a comprehensive set", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 670, + 189, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 189, + 682 + ], + "score": 1.0, + "content": "of benchmark tasks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "By establishing a link between recurrent networks and ordinary differential equations, we anticipate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "that this work will inspire future research in both communities. An important item of future work", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "is to investigate other stable ODEs and numerical methods that lead to novel and well-conditioned", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 722, + 200, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 722, + 200, + 732 + ], + "score": 1.0, + "content": "recurrent architectures.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "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": "image", + "bbox": [ + 188, + 83, + 418, + 219 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 188, + 83, + 418, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 188, + 83, + 418, + 219 + ], + "spans": [ + { + "bbox": [ + 188, + 83, + 418, + 219 + ], + "score": 0.967, + "type": "image", + "image_path": "dc62088bb56c80add338f8f3c68221e98d375809570dee8a3113a566b93497bc.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 83, + 418, + 96.6 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 188, + 96.6, + 418, + 110.19999999999999 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 188, + 110.19999999999999, + 418, + 123.79999999999998 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 188, + 123.79999999999998, + 418, + 137.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 188, + 137.39999999999998, + 418, + 150.99999999999997 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 188, + 150.99999999999997, + 418, + 164.59999999999997 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 188, + 164.59999999999997, + 418, + 178.19999999999996 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 188, + 178.19999999999996, + 418, + 191.79999999999995 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 188, + 191.79999999999995, + 418, + 205.39999999999995 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 188, + 205.39999999999995, + 418, + 218.99999999999994 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 232, + 504, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 232, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 504, + 245 + ], + "score": 1.0, + "content": "Figure 2: Mean and standard deviation of eigenvalues of the end-to-end Jacobian matrix in Antisym-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "metricRNNs with different diffusion constants and LSTMs, trained on the noise padded CIFAR-10.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "To verify that AntisymmetricRNNs indeed mitigate the exploding/vanishing gradient issues, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "conduct an additional set of experiments varying the length of noise padding so that the total time", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 130, + 313 + ], + "score": 1.0, + "content": "steps", + "type": "text" + }, + { + "bbox": [ + 130, + 300, + 238, + 311 + ], + "score": 0.88, + "content": "T \\in \\{ 1 0 0 , 2 0 0 , 4 0 0 , 8 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 299, + 506, + 313 + ], + "score": 1.0, + "content": ". LSTMs and AntisymmetricRNNs with different diffusion con-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 131, + 323 + ], + "score": 1.0, + "content": "stants", + "type": "text" + }, + { + "bbox": [ + 132, + 311, + 258, + 323 + ], + "score": 0.86, + "content": "\\gamma \\in \\{ 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 , 5 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "are trained on these tasks. Figure 2 visualizes the mean and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "standard deviation of the eigenvalues of the end-to-end Jacobian matrices for these networks. Uni-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 332, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 504, + 345 + ], + "score": 1.0, + "content": "tary eigenvalues, i.e., mean close to 1 and standard deviation close to 0, indicate non-exploding and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "non-vanishing gradients. As shown in the figure, the eigenvalues for LSTMs quickly approaches", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 369 + ], + "score": 1.0, + "content": "zero as time steps increase, indicating vanishing gradients during back-propagation. This explains", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "why LSTMs fail to train at all on this task. AntisymmetricRNNs with a broad range of diffusion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 146, + 389 + ], + "score": 1.0, + "content": "constants", + "type": "text" + }, + { + "bbox": [ + 147, + 379, + 154, + 388 + ], + "score": 0.77, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 376, + 505, + 389 + ], + "score": 1.0, + "content": ", on the other hand, have eigenvalues centered around 1. It is worth noting though as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "the diffusion constant increases to large values, AntisymmetricRNNs run into vanishing gradients", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 232, + 412 + ], + "score": 1.0, + "content": "as well. The diffusion constant", + "type": "text" + }, + { + "bbox": [ + 232, + 400, + 240, + 410 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 398, + 505, + 412 + ], + "score": 1.0, + "content": "plays an important role in striking a balance between the stability", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 410, + 330, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 330, + 422 + ], + "score": 1.0, + "content": "of discretization and capturing long-term dependencies.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 277, + 506, + 422 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 436, + 207, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 209, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 209, + 448 + ], + "score": 1.0, + "content": "5.4 ABLATION STUDY", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 457, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "For the CIFAR-10 experiments, we have also conducted an ablation study to further demonstrate", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "the effect of antisymmetric weight matrix. The ablation model in Table 2 refers to the model that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "replaces the antisymmetric weight matrices in Equation 13 with unstructured weight matrices. As", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "score": 1.0, + "content": "shown in Table 2, without the antisymmetric parametrization, the performance on both pixel-by-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 500, + 282, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 282, + 514 + ], + "score": 1.0, + "content": "pixel and noise padded CIFAR-10 is worse.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 457, + 505, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "It is worth mentioning that the antisymmetric formulation is a sufficient condition of stability, not", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "necessary. There are possibly other conditions that lead to stability as well as suggested in Chen", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 433, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 433, + 551 + ], + "score": 1.0, + "content": "et al. (2018a), which could explain the modest degradation in the ablation results.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 517, + 506, + 551 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 568, + 195, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 197, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 197, + 584 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "In this paper, we present a new perspective on the trainability of RNNs from the dynamical system", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "viewpoint. We draw connections between RNNs and the ordinary differential equation theory and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "design new recurrent architectures by discretizing ODEs. This new view opens up possibilities", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 639 + ], + "score": 1.0, + "content": "to exploit the computational and theoretical success from dynamical systems to understand and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "improve the trainability of RNNs. We also propose the AntisymmetricRNN, which is a discretization", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "of ODEs that satisfy the critical criterion. Besides its appealing theoretical properties, our models", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "have demonstrated competitive performance over strong recurrent baselines on a comprehensive set", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 670, + 189, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 189, + 682 + ], + "score": 1.0, + "content": "of benchmark tasks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 594, + 506, + 682 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "By establishing a link between recurrent networks and ordinary differential equations, we anticipate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "that this work will inspire future research in both communities. An important item of future work", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "is to investigate other stable ODEs and numerical methods that lead to novel and well-conditioned", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 722, + 200, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 722, + 200, + 732 + ], + "score": 1.0, + "content": "recurrent architectures.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 687, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martin Arjovsky, Amar Shah, and Yoshua Bengio. Unitary evolution recurrent neural networks. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 235, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 235, + 123 + ], + "score": 1.0, + "content": "ICML, pp. 1120–1128, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 504, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "Uri M Ascher and Linda R Petzold. Computer methods for ordinary differential equations and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 346, + 153 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 346, + 153 + ], + "score": 1.0, + "content": "differential-algebraic equations, volume 61. Siam, 1998.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "score": 1.0, + "content": "Uri M Ascher, Robert MM Mattheij, and Robert D Russell. Numerical solution of boundary value", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 171, + 396, + 184 + ], + "spans": [ + { + "bbox": [ + 114, + 171, + 396, + 184 + ], + "score": 1.0, + "content": "problems for ordinary differential equations, volume 13. Siam, 1994.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 200, + 220, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 200, + 220, + 213 + ], + "score": 1.0, + "content": "arXiv:1607.06450, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 504, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 231, + 398, + 243 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 398, + 243 + ], + "score": 1.0, + "content": "learning to align and translate. arXiv preprint arXiv:1409.0473, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 107, + 250, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 504, + 262 + ], + "score": 1.0, + "content": "Yoshua Bengio, Patrice Simard, and Paolo Frasconi. Learning long-term dependencies with gradient", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 261, + 437, + 272 + ], + "spans": [ + { + "bbox": [ + 117, + 261, + 437, + 272 + ], + "score": 1.0, + "content": "descent is difficult. IEEE transactions on neural networks, 5(2):157–166, 1994.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 503, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "score": 1.0, + "content": "Bo Chang, Lili Meng, Eldad Haber, Lars Ruthotto, David Begert, and Elliot Holtham. Reversible", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 290, + 418, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 418, + 303 + ], + "score": 1.0, + "content": "architectures for arbitrarily deep residual neural networks. In AAAI, 2018a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Bo Chang, Lili Meng, Eldad Haber, Frederick Tung, and David Begert. Multi-level residual net-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 320, + 335, + 332 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 335, + 332 + ], + "score": 1.0, + "content": "works from dynamical systems view. In ICLR, 2018b.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 504, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "score": 1.0, + "content": "theory of RNNs: Gating enables signal propagation in recurrent neural networks. In ICML, pp.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 361, + 186, + 374 + ], + "spans": [ + { + "bbox": [ + 116, + 361, + 186, + 374 + ], + "score": 1.0, + "content": "873–882, 2018a.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Tian Qi Chen, Yulia Rubanova, Jesse Bettencourt, and David Duvenaud. Neural ordinary differential", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 392, + 327, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 327, + 403 + ], + "score": 1.0, + "content": "equations. arXiv preprint arXiv:1806.07366, 2018b.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Hol-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "ger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder–decoder", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 432, + 393, + 444 + ], + "spans": [ + { + "bbox": [ + 116, + 432, + 393, + 444 + ], + "score": 1.0, + "content": "for statistical machine translation. In EMNLP, pp. 1724–1734, 2014.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "Jasmine Collins, Jascha Sohl-Dickstein, and David Sussillo. Capacity and trainability in recurrent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 462, + 237, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 237, + 474 + ], + "score": 1.0, + "content": "neural networks. ICLR, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 504, + 494 + ], + "score": 1.0, + "content": "Tim Cooijmans, Nicolas Ballas, Cesar Laurent, C¸ a ´ glar G ˘ ulc¸ehre, and Aaron Courville. Recurrent ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 492, + 264, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 492, + 264, + 504 + ], + "score": 1.0, + "content": "batch normalization. In ICLR, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "John Duchi, Elad Hazan, and Yoram Singer. Adaptive subgradient methods for online learning and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 522, + 483, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 483, + 534 + ], + "score": 1.0, + "content": "stochastic optimization. Journal of Machine Learning Research, 12(Jul):2121–2159, 2011.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 502, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 504, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 504, + 554 + ], + "score": 1.0, + "content": "Salah El Hihi and Yoshua Bengio. Hierarchical recurrent neural networks for long-term dependen-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 551, + 255, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 255, + 564 + ], + "score": 1.0, + "content": "cies. In NIPS, pp. 493–499, 1996.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 447, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 446, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 446, + 584 + ], + "score": 1.0, + "content": "Jeffrey L Elman. Finding structure in time. Cognitive science, 14(2):179–211, 1990.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 501, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 503, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 503, + 604 + ], + "score": 1.0, + "content": "Alex Graves, Abdel-rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recur-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 600, + 369, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 369, + 613 + ], + "score": 1.0, + "content": "rent neural networks. In ICASSP, pp. 6645–6649. IEEE, 2013.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 503, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "Eldad Haber and Lars Ruthotto. Stable architectures for deep neural networks. Inverse Problems,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 630, + 201, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 201, + 642 + ], + "score": 1.0, + "content": "34(1):014004, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 502, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 664 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 660, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 266, + 672 + ], + "score": 1.0, + "content": "nition. In CVPR, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 503, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 503, + 692 + ], + "score": 1.0, + "content": "Balazs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk. Session-based rec-´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 468, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 468, + 703 + ], + "score": 1.0, + "content": "ommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 191, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 191, + 732 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "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 2019", + "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": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martin Arjovsky, Amar Shah, and Yoshua Bengio. Unitary evolution recurrent neural networks. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 235, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 235, + 123 + ], + "score": 1.0, + "content": "ICML, pp. 1120–1128, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 504, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "Uri M Ascher and Linda R Petzold. Computer methods for ordinary differential equations and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 346, + 153 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 346, + 153 + ], + "score": 1.0, + "content": "differential-algebraic equations, volume 61. Siam, 1998.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 129, + 505, + 153 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "score": 1.0, + "content": "Uri M Ascher, Robert MM Mattheij, and Robert D Russell. Numerical solution of boundary value", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 171, + 396, + 184 + ], + "spans": [ + { + "bbox": [ + 114, + 171, + 396, + 184 + ], + "score": 1.0, + "content": "problems for ordinary differential equations, volume 13. Siam, 1994.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 158, + 505, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 200, + 220, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 200, + 220, + 213 + ], + "score": 1.0, + "content": "arXiv:1607.06450, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 189, + 505, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 504, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 231, + 398, + 243 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 398, + 243 + ], + "score": 1.0, + "content": "learning to align and translate. arXiv preprint arXiv:1409.0473, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 218, + 505, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 249, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 107, + 250, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 504, + 262 + ], + "score": 1.0, + "content": "Yoshua Bengio, Patrice Simard, and Paolo Frasconi. Learning long-term dependencies with gradient", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 261, + 437, + 272 + ], + "spans": [ + { + "bbox": [ + 117, + 261, + 437, + 272 + ], + "score": 1.0, + "content": "descent is difficult. IEEE transactions on neural networks, 5(2):157–166, 1994.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 107, + 250, + 504, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 503, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "score": 1.0, + "content": "Bo Chang, Lili Meng, Eldad Haber, Lars Ruthotto, David Begert, and Elliot Holtham. Reversible", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 290, + 418, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 418, + 303 + ], + "score": 1.0, + "content": "architectures for arbitrarily deep residual neural networks. In AAAI, 2018a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 279, + 505, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Bo Chang, Lili Meng, Eldad Haber, Frederick Tung, and David Begert. Multi-level residual net-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 320, + 335, + 332 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 335, + 332 + ], + "score": 1.0, + "content": "works from dynamical systems view. In ICLR, 2018b.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 309, + 505, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 504, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "score": 1.0, + "content": "theory of RNNs: Gating enables signal propagation in recurrent neural networks. In ICML, pp.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 361, + 186, + 374 + ], + "spans": [ + { + "bbox": [ + 116, + 361, + 186, + 374 + ], + "score": 1.0, + "content": "873–882, 2018a.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 339, + 505, + 374 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Tian Qi Chen, Yulia Rubanova, Jesse Bettencourt, and David Duvenaud. Neural ordinary differential", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 392, + 327, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 327, + 403 + ], + "score": 1.0, + "content": "equations. arXiv preprint arXiv:1806.07366, 2018b.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 380, + 505, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Hol-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "ger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder–decoder", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 432, + 393, + 444 + ], + "spans": [ + { + "bbox": [ + 116, + 432, + 393, + 444 + ], + "score": 1.0, + "content": "for statistical machine translation. In EMNLP, pp. 1724–1734, 2014.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 409, + 506, + 444 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "Jasmine Collins, Jascha Sohl-Dickstein, and David Sussillo. Capacity and trainability in recurrent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 462, + 237, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 237, + 474 + ], + "score": 1.0, + "content": "neural networks. ICLR, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 450, + 505, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 504, + 494 + ], + "score": 1.0, + "content": "Tim Cooijmans, Nicolas Ballas, Cesar Laurent, C¸ a ´ glar G ˘ ulc¸ehre, and Aaron Courville. Recurrent ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 492, + 264, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 492, + 264, + 504 + ], + "score": 1.0, + "content": "batch normalization. In ICLR, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 480, + 504, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "John Duchi, Elad Hazan, and Yoram Singer. Adaptive subgradient methods for online learning and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 522, + 483, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 483, + 534 + ], + "score": 1.0, + "content": "stochastic optimization. Journal of Machine Learning Research, 12(Jul):2121–2159, 2011.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 511, + 505, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 502, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 504, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 504, + 554 + ], + "score": 1.0, + "content": "Salah El Hihi and Yoshua Bengio. Hierarchical recurrent neural networks for long-term dependen-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 551, + 255, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 255, + 564 + ], + "score": 1.0, + "content": "cies. In NIPS, pp. 493–499, 1996.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 540, + 504, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 447, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 446, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 446, + 584 + ], + "score": 1.0, + "content": "Jeffrey L Elman. Finding structure in time. Cognitive science, 14(2):179–211, 1990.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 570, + 446, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 501, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 503, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 503, + 604 + ], + "score": 1.0, + "content": "Alex Graves, Abdel-rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recur-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 600, + 369, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 369, + 613 + ], + "score": 1.0, + "content": "rent neural networks. In ICASSP, pp. 6645–6649. IEEE, 2013.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 588, + 503, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 503, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "Eldad Haber and Lars Ruthotto. Stable architectures for deep neural networks. Inverse Problems,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 630, + 201, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 201, + 642 + ], + "score": 1.0, + "content": "34(1):014004, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 618, + 505, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 502, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 664 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 660, + 266, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 266, + 672 + ], + "score": 1.0, + "content": "nition. In CVPR, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 647, + 505, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 503, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 503, + 692 + ], + "score": 1.0, + "content": "Balazs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk. Session-based rec-´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 468, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 468, + 703 + ], + "score": 1.0, + "content": "ommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 679, + 503, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 191, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 191, + 732 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 43, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Stephanie L Hyland and Gunnar Ratsch. Learning unitary operators with help from u (n). In ¨ AAAI,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 92, + 207, + 107 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 207, + 107 + ], + "score": 1.0, + "content": "pp. 2050–2058, 2017.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 110, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 506, + 128 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 122, + 370, + 138 + ], + "spans": [ + { + "bbox": [ + 114, + 122, + 370, + 138 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In ICML, pp. 448–456, 2015.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Cijo Jose, Moustpaha Cisse, and Francois Fleuret. Kronecker recurrent units. arXiv preprint", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 152, + 220, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 152, + 220, + 165 + ], + "score": 1.0, + "content": "arXiv:1705.10142, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "Rafal Jozefowicz, Wojciech Zaremba, and Ilya Sutskever. An empirical exploration of recurrent", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 181, + 339, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 181, + 339, + 195 + ], + "score": 1.0, + "content": "network architectures. In ICML, pp. 2342–2350, 2015.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 506, + 213 + ], + "score": 1.0, + "content": "Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 211, + 398, + 225 + ], + "spans": [ + { + "bbox": [ + 114, + 211, + 398, + 225 + ], + "score": 1.0, + "content": "limits of language modeling. arXiv preprint arXiv:1602.02410, 2016.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "Sekitoshi Kanai, Yasuhiro Fujiwara, and Sotetsu Iwamura. Preventing gradient explosions in gated", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 240, + 298, + 255 + ], + "spans": [ + { + "bbox": [ + 114, + 240, + 298, + 255 + ], + "score": 1.0, + "content": "recurrent units. In NIPS, pp. 435–444, 2017.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "Ryan Kiros, Yukun Zhu, Ruslan R Salakhutdinov, Richard Zemel, Raquel Urtasun, Antonio Tor-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 271, + 428, + 283 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 428, + 283 + ], + "score": 1.0, + "content": "ralba, and Sanja Fidler. Skip-thought vectors. In NIPS, pp. 3294–3302, 2015.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 288, + 504, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 504, + 302 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Tech-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 301, + 229, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 229, + 313 + ], + "score": 1.0, + "content": "nical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 319, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 504, + 331 + ], + "score": 1.0, + "content": "Thomas Laurent and James von Brecht. A recurrent neural network without chaos. In ICLR, 2017.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "Quoc V Le, Navdeep Jaitly, and Geoffrey E Hinton. A simple way to initialize recurrent networks", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 349, + 375, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 375, + 361 + ], + "score": 1.0, + "content": "of rectified linear units. arXiv preprint arXiv:1504.00941, 2015.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 379, + 417, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 417, + 390 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 107, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "Yiping Lu, Aoxiao Zhong, Quanzheng Li, and Bin Dong. Beyond finite layer neural networks:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 406, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 505, + 421 + ], + "score": 1.0, + "content": "Bridging deep architectures and numerical differential equations. In ICML, pp. 3276–3285, 2018.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 506, + 438 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent `", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 436, + 430, + 450 + ], + "spans": [ + { + "bbox": [ + 114, + 436, + 430, + 450 + ], + "score": 1.0, + "content": "neural network based language model. In Interspeech, volume 2, pp. 3, 2010.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "Tomas Mikolov, Armand Joulin, Sumit Chopra, Michael Mathieu, and Marc’Aurelio Ranzato.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 467, + 495, + 479 + ], + "spans": [ + { + "bbox": [ + 114, + 467, + 495, + 479 + ], + "score": 1.0, + "content": "Learning longer memory in recurrent neural networks. arXiv preprint arXiv:1412.7753, 2014.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 104, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "Dmytro Mishkin and Jiri Matas. All you need is a good init. arXiv preprint arXiv:1511.06422,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 494, + 143, + 509 + ], + "spans": [ + { + "bbox": [ + 114, + 494, + 143, + 509 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. Understanding the exploding gradient prob-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 524, + 257, + 539 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 257, + 539 + ], + "score": 1.0, + "content": "lem. CoRR, abs/1211.5063, 2012.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 555, + 288, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 288, + 567 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 1310–1318, 2013.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 588 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Sam Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 584, + 369, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 369, + 598 + ], + "score": 1.0, + "content": "through dynamical isometry: theory and practice. NIPS, 2017.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "David E Rumelhart, Geoffrey E Hinton, and Ronald J Williams. Learning representations by back-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 614, + 316, + 627 + ], + "spans": [ + { + "bbox": [ + 114, + 614, + 316, + 627 + ], + "score": 1.0, + "content": "propagating errors. nature, 323(6088):533, 1986.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 631, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 647 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynam-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 643, + 461, + 657 + ], + "spans": [ + { + "bbox": [ + 114, + 643, + 461, + 657 + ], + "score": 1.0, + "content": "ics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "Richard Socher, Cliff C Lin, Chris Manning, and Andrew Y Ng. Parsing natural scenes and natural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 672, + 403, + 687 + ], + "spans": [ + { + "bbox": [ + 114, + 672, + 403, + 687 + ], + "score": 1.0, + "content": "language with recursive neural networks. In ICML, pp. 129–136, 2011.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 691, + 481, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 481, + 703 + ], + "score": 1.0, + "content": "Corentin Tallec and Yann Ollivier. Can recurrent neural networks warp time? In ICLR, 2018.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 707, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 507, + 725 + ], + "score": 1.0, + "content": "Eugene Vorontsov, Chiheb Trabelsi, Samuel Kadoury, and Chris Pal. On orthogonality and learning", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 720, + 444, + 734 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 444, + 734 + ], + "score": 1.0, + "content": "recurrent networks with long term dependencies. In ICML, pp. 3570–3578, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 21.5 + } + ], + "page_idx": 10, + "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 2019", + "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": "list", + "bbox": [ + 105, + 43, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Stephanie L Hyland and Gunnar Ratsch. Learning unitary operators with help from u (n). In ¨ AAAI,", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 92, + 207, + 107 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 207, + 107 + ], + "score": 1.0, + "content": "pp. 2050–2058, 2017.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 110, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 506, + 128 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 122, + 370, + 138 + ], + "spans": [ + { + "bbox": [ + 114, + 122, + 370, + 138 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In ICML, pp. 448–456, 2015.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Cijo Jose, Moustpaha Cisse, and Francois Fleuret. Kronecker recurrent units. arXiv preprint", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 152, + 220, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 152, + 220, + 165 + ], + "score": 1.0, + "content": "arXiv:1705.10142, 2017.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "Rafal Jozefowicz, Wojciech Zaremba, and Ilya Sutskever. An empirical exploration of recurrent", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 181, + 339, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 181, + 339, + 195 + ], + "score": 1.0, + "content": "network architectures. In ICML, pp. 2342–2350, 2015.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 201, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 506, + 213 + ], + "score": 1.0, + "content": "Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 211, + 398, + 225 + ], + "spans": [ + { + "bbox": [ + 114, + 211, + 398, + 225 + ], + "score": 1.0, + "content": "limits of language modeling. arXiv preprint arXiv:1602.02410, 2016.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "Sekitoshi Kanai, Yasuhiro Fujiwara, and Sotetsu Iwamura. Preventing gradient explosions in gated", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 240, + 298, + 255 + ], + "spans": [ + { + "bbox": [ + 114, + 240, + 298, + 255 + ], + "score": 1.0, + "content": "recurrent units. In NIPS, pp. 435–444, 2017.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "Ryan Kiros, Yukun Zhu, Ruslan R Salakhutdinov, Richard Zemel, Raquel Urtasun, Antonio Tor-", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 271, + 428, + 283 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 428, + 283 + ], + "score": 1.0, + "content": "ralba, and Sanja Fidler. Skip-thought vectors. In NIPS, pp. 3294–3302, 2015.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 288, + 504, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 504, + 302 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Tech-", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 301, + 229, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 229, + 313 + ], + "score": 1.0, + "content": "nical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 319, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 504, + 331 + ], + "score": 1.0, + "content": "Thomas Laurent and James von Brecht. A recurrent neural network without chaos. In ICLR, 2017.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "Quoc V Le, Navdeep Jaitly, and Geoffrey E Hinton. A simple way to initialize recurrent networks", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 349, + 375, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 375, + 361 + ], + "score": 1.0, + "content": "of rectified linear units. arXiv preprint arXiv:1504.00941, 2015.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 379, + 417, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 417, + 390 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 107, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "Yiping Lu, Aoxiao Zhong, Quanzheng Li, and Bin Dong. Beyond finite layer neural networks:", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 406, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 505, + 421 + ], + "score": 1.0, + "content": "Bridging deep architectures and numerical differential equations. In ICML, pp. 3276–3285, 2018.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 506, + 438 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent `", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 436, + 430, + 450 + ], + "spans": [ + { + "bbox": [ + 114, + 436, + 430, + 450 + ], + "score": 1.0, + "content": "neural network based language model. In Interspeech, volume 2, pp. 3, 2010.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "Tomas Mikolov, Armand Joulin, Sumit Chopra, Michael Mathieu, and Marc’Aurelio Ranzato.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 467, + 495, + 479 + ], + "spans": [ + { + "bbox": [ + 114, + 467, + 495, + 479 + ], + "score": 1.0, + "content": "Learning longer memory in recurrent neural networks. arXiv preprint arXiv:1412.7753, 2014.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 104, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "Dmytro Mishkin and Jiri Matas. All you need is a good init. arXiv preprint arXiv:1511.06422,", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 494, + 143, + 509 + ], + "spans": [ + { + "bbox": [ + 114, + 494, + 143, + 509 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. Understanding the exploding gradient prob-", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 524, + 257, + 539 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 257, + 539 + ], + "score": 1.0, + "content": "lem. CoRR, abs/1211.5063, 2012.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 555, + 288, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 288, + 567 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 1310–1318, 2013.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 571, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 588 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Sam Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 584, + 369, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 369, + 598 + ], + "score": 1.0, + "content": "through dynamical isometry: theory and practice. NIPS, 2017.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "David E Rumelhart, Geoffrey E Hinton, and Ronald J Williams. Learning representations by back-", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 614, + 316, + 627 + ], + "spans": [ + { + "bbox": [ + 114, + 614, + 316, + 627 + ], + "score": 1.0, + "content": "propagating errors. nature, 323(6088):533, 1986.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 631, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 647 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynam-", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 643, + 461, + 657 + ], + "spans": [ + { + "bbox": [ + 114, + 643, + 461, + 657 + ], + "score": 1.0, + "content": "ics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "Richard Socher, Cliff C Lin, Chris Manning, and Andrew Y Ng. Parsing natural scenes and natural", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 672, + 403, + 687 + ], + "spans": [ + { + "bbox": [ + 114, + 672, + 403, + 687 + ], + "score": 1.0, + "content": "language with recursive neural networks. In ICML, pp. 129–136, 2011.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 691, + 481, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 481, + 703 + ], + "score": 1.0, + "content": "Corentin Tallec and Yann Ollivier. Can recurrent neural networks warp time? In ICLR, 2018.", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 707, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 507, + 725 + ], + "score": 1.0, + "content": "Eugene Vorontsov, Chiheb Trabelsi, Samuel Kadoury, and Chris Pal. On orthogonality and learning", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 720, + 444, + 734 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 444, + 734 + ], + "score": 1.0, + "content": "recurrent networks with long term dependencies. In ICML, pp. 3570–3578, 2017.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 82, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 96 + ], + "score": 1.0, + "content": "Scott Wisdom, Thomas Powers, John Hershey, Jonathan Le Roux, and Les Atlas. Full-capacity", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 94, + 382, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 382, + 106 + ], + "score": 1.0, + "content": "unitary recurrent neural networks. In NIPS, pp. 4880–4888, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 110, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 504, + 126 + ], + "score": 1.0, + "content": "Chao-Yuan Wu, Amr Ahmed, Alex Beutel, Alexander J Smola, and How Jing. Recurrent recom-", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 123, + 343, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 343, + 136 + ], + "score": 1.0, + "content": "mender networks. In WSDM, pp. 495–503. ACM, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "Di Xie, Jiang Xiong, and Shiliang Pu. All you need is beyond a good init: Exploring better solution", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "for training extremely deep convolutional neural networks with orthonormality and modulation.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 279, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 279, + 176 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1703.01827, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "Fisher Yu and Vladlen Koltun. Multi-scale context aggregation by dilated convolutions. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 194, + 254, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 254, + 205 + ], + "score": 1.0, + "content": "preprint arXiv:1511.07122, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "Boxuan Yue, Junwei Fu, and Jun Liang. Residual recurrent neural networks for learning sequential", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 223, + 294, + 235 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 294, + 235 + ], + "score": 1.0, + "content": "representations. Information, 9(3):56, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "Jiong Zhang, Qi Lei, and Inderjit Dhillon. Stabilizing gradients for deep neural networks via efficient", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 252, + 345, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 345, + 266 + ], + "score": 1.0, + "content": "SVD parameterization. In ICML, pp. 5806–5814, 2018a.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 270, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 506, + 285 + ], + "score": 1.0, + "content": "Jiong Zhang, Yibo Lin, Zhao Song, and Inderjit Dhillon. Learning long term dependencies via", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 281, + 346, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 346, + 295 + ], + "score": 1.0, + "content": "Fourier recurrent units. In ICML, pp. 5815–5823, 2018b.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 82, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 507, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 96 + ], + "score": 1.0, + "content": "Scott Wisdom, Thomas Powers, John Hershey, Jonathan Le Roux, and Les Atlas. Full-capacity", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 382, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 382, + 106 + ], + "score": 1.0, + "content": "unitary recurrent neural networks. In NIPS, pp. 4880–4888, 2016.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 110, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 504, + 126 + ], + "score": 1.0, + "content": "Chao-Yuan Wu, Amr Ahmed, Alex Beutel, Alexander J Smola, and How Jing. Recurrent recom-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 343, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 343, + 136 + ], + "score": 1.0, + "content": "mender networks. In WSDM, pp. 495–503. ACM, 2017.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "Di Xie, Jiang Xiong, and Shiliang Pu. All you need is beyond a good init: Exploring better solution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "for training extremely deep convolutional neural networks with orthonormality and modulation.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 279, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 279, + 176 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1703.01827, 2017.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "Fisher Yu and Vladlen Koltun. Multi-scale context aggregation by dilated convolutions. arXiv", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 254, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 254, + 205 + ], + "score": 1.0, + "content": "preprint arXiv:1511.07122, 2015.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "Boxuan Yue, Junwei Fu, and Jun Liang. Residual recurrent neural networks for learning sequential", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 223, + 294, + 235 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 294, + 235 + ], + "score": 1.0, + "content": "representations. Information, 9(3):56, 2018.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "Jiong Zhang, Qi Lei, and Inderjit Dhillon. Stabilizing gradients for deep neural networks via efficient", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 252, + 345, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 345, + 266 + ], + "score": 1.0, + "content": "SVD parameterization. In ICML, pp. 5806–5814, 2018a.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 270, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 506, + 285 + ], + "score": 1.0, + "content": "Jiong Zhang, Yibo Lin, Zhao Song, and Inderjit Dhillon. Learning long term dependencies via", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 281, + 346, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 346, + 295 + ], + "score": 1.0, + "content": "Fourier recurrent units. In ICML, pp. 5815–5823, 2018b.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 321, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 322, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 322, + 327 + ], + "score": 1.0, + "content": "A AN OVERVIEW OF STABILITY THEORY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 504, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "In this section, we provide a brief overview of the stability theory by examples. Most of the materials", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 349, + 281, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 281, + 361 + ], + "score": 1.0, + "content": "are adapted from Ascher & Petzold (1998).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 390, + 379 + ], + "score": 1.0, + "content": "Consider the simple scalar ODE, often referred to as the test equation:", + "type": "text" + }, + { + "bbox": [ + 390, + 366, + 446, + 378 + ], + "score": 0.93, + "content": "y ^ { \\prime } ( t ) = \\lambda y ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 366, + 477, + 379 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 477, + 366, + 504, + 377 + ], + "score": 0.87, + "content": "\\lambda \\in \\mathbb { C }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "score": 1.0, + "content": "is a constant. We allow", + "type": "text" + }, + { + "bbox": [ + 209, + 378, + 216, + 387 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "to be complex because it later represents an eigenvalue of a system’s", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 327, + 401 + ], + "score": 1.0, + "content": "matrix. The solution to this initial value problem is", + "type": "text" + }, + { + "bbox": [ + 327, + 387, + 393, + 400 + ], + "score": 0.93, + "content": "y ( t ) \\stackrel { \\bullet } { = } e ^ { \\lambda t } y ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 388, + 412, + 401 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 413, + 388, + 430, + 400 + ], + "score": 0.91, + "content": "y ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 388, + 451, + 401 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 451, + 388, + 469, + 400 + ], + "score": 0.92, + "content": "\\tilde { y } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "are two", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 399, + 371, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 355, + 411 + ], + "score": 1.0, + "content": "solutions of the test equation, then their difference at any time", + "type": "text" + }, + { + "bbox": [ + 356, + 401, + 360, + 409 + ], + "score": 0.81, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 399, + 371, + 411 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 415, + 426, + 430 + ], + "lines": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "spans": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "score": 0.89, + "content": "| y ( t ) - \\tilde { y } ( t ) | = | e ^ { \\lambda t } ( y ( 0 ) - \\tilde { y } ( 0 ) ) | = e ^ { R e ( \\lambda ) t } | y ( 0 ) - \\tilde { y } ( 0 ) | .", + "type": "interline_equation", + "image_path": "ea067c6dbcabf4a4ed41fcfe08e9725db146a776e5d853833f68fa6789ea306d.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 433, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 115, + 449 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 434, + 161, + 447 + ], + "score": 0.92, + "content": "R e ( \\lambda ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 433, + 505, + 449 + ], + "score": 1.0, + "content": ", then a small perturbation of the initial states would cause an exponentially exploding", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 166, + 458 + ], + "score": 1.0, + "content": "difference. If", + "type": "text" + }, + { + "bbox": [ + 167, + 445, + 216, + 457 + ], + "score": 0.93, + "content": "R e ( \\lambda ) ~ < ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 445, + 505, + 458 + ], + "score": 1.0, + "content": ", the system is stable, but the perturbation decays exponentially. The", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 456, + 342, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 292, + 469 + ], + "score": 1.0, + "content": "perturbation is preserved in the system only if", + "type": "text" + }, + { + "bbox": [ + 292, + 456, + 337, + 469 + ], + "score": 0.93, + "content": "R e ( \\lambda ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 457, + 342, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 384, + 486 + ], + "score": 1.0, + "content": "We now consider the extension of the test equation to a matrix ODE", + "type": "text" + }, + { + "bbox": [ + 385, + 473, + 446, + 485 + ], + "score": 0.92, + "content": "\\mathbf { \\boldsymbol { y } } ^ { \\prime } ( t ) = \\mathbf { \\boldsymbol { A } } \\mathbf { \\boldsymbol { y } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 472, + 506, + 486 + ], + "score": 1.0, + "content": ". The solution", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 104, + 482, + 116, + 497 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 484, + 183, + 496 + ], + "score": 0.93, + "content": "\\pmb { y } ( t ) = e ^ { \\pmb { A } t } \\pmb { y } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 482, + 338, + 497 + ], + "score": 1.0, + "content": ". To simplify the analysis, we assume", + "type": "text" + }, + { + "bbox": [ + 338, + 485, + 348, + 494 + ], + "score": 0.82, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 482, + 441, + 497 + ], + "score": 1.0, + "content": "is diagonalizable, i.e.,", + "type": "text" + }, + { + "bbox": [ + 441, + 484, + 501, + 495 + ], + "score": 0.9, + "content": "\\pmb { P } ^ { - 1 } \\pmb { A } \\pmb { P } = \\pmb { \\Lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 482, + 506, + 497 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 133, + 509 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 496, + 143, + 505 + ], + "score": 0.72, + "content": "\\pmb { \\Lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 493, + 313, + 509 + ], + "score": 1.0, + "content": "is a diagonal matrix of the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 313, + 496, + 323, + 505 + ], + "score": 0.77, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 493, + 404, + 509 + ], + "score": 1.0, + "content": "and the columns of", + "type": "text" + }, + { + "bbox": [ + 404, + 496, + 414, + 505 + ], + "score": 0.82, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "are the corresponding", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 214, + 520 + ], + "score": 1.0, + "content": "eigenvectors. If we define", + "type": "text" + }, + { + "bbox": [ + 214, + 506, + 285, + 518 + ], + "score": 0.92, + "content": "{ \\pmb w } ( t ) = { \\pmb P } ^ { - 1 } { \\pmb y } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 505, + 309, + 520 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 310, + 506, + 375, + 518 + ], + "score": 0.92, + "content": "{ \\pmb w } ^ { \\prime } ( t ) = { \\pmb \\Lambda } { \\pmb w } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 505, + 443, + 520 + ], + "score": 1.0, + "content": ". The system for", + "type": "text" + }, + { + "bbox": [ + 443, + 506, + 464, + 518 + ], + "score": 0.92, + "content": "{ \\mathbf { } } w ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "is decou-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 213, + 530 + ], + "score": 1.0, + "content": "pled: for each component", + "type": "text" + }, + { + "bbox": [ + 213, + 518, + 236, + 529 + ], + "score": 0.91, + "content": "w _ { i } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 517, + 249, + 530 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 249, + 518, + 270, + 529 + ], + "score": 0.88, + "content": "{ \\mathbf { } } w ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 517, + 371, + 530 + ], + "score": 1.0, + "content": ", we have a test equation", + "type": "text" + }, + { + "bbox": [ + 372, + 517, + 440, + 529 + ], + "score": 0.92, + "content": "w _ { i } ^ { \\prime } ( t ) \\stackrel { \\cdot } { = } \\lambda _ { i } w _ { i } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 517, + 506, + 530 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 408, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 155, + 542 + ], + "score": 1.0, + "content": "stability for", + "type": "text" + }, + { + "bbox": [ + 155, + 528, + 176, + 540 + ], + "score": 0.92, + "content": "{ \\pmb w } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 528, + 238, + 542 + ], + "score": 1.0, + "content": ", hence also for", + "type": "text" + }, + { + "bbox": [ + 239, + 529, + 257, + 540 + ], + "score": 0.91, + "content": "{ \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf } { \\mathbf { } } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 528, + 393, + 542 + ], + "score": 1.0, + "content": ", is determined by the eigenvalues", + "type": "text" + }, + { + "bbox": [ + 394, + 529, + 403, + 539 + ], + "score": 0.87, + "content": "\\lambda _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 528, + 408, + 542 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 261, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 263, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 263, + 569 + ], + "score": 1.0, + "content": "B PROOF OF A PROPOSITION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 506, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "In this section, we provide a proof of a proposition which implies that the AntisymmetricRNN and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "AntisymmetricRNN with gating satisfy the critical criterion, i.e., the eigenvalues of the Jacobian", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 603, + 387, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 387, + 615 + ], + "score": 1.0, + "content": "matrix are imaginary. The proof is adapted from Chang et al. (2018a).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 105, + 616, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 179, + 630 + ], + "score": 1.0, + "content": "Proposition 3. If", + "type": "text" + }, + { + "bbox": [ + 180, + 616, + 229, + 628 + ], + "score": 0.9, + "content": "W \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 614, + 357, + 630 + ], + "score": 1.0, + "content": "is an antisymmetric matrix and", + "type": "text" + }, + { + "bbox": [ + 357, + 616, + 403, + 627 + ], + "score": 0.92, + "content": "\\ b { D } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "is an invertible diagonal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 316, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 231, + 641 + ], + "score": 1.0, + "content": "matrix, then the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 232, + 628, + 254, + 638 + ], + "score": 0.64, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 627, + 316, + 641 + ], + "score": 1.0, + "content": "are imaginary.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 644, + 386, + 658 + ], + "lines": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "spans": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "score": 0.9, + "content": "R e ( \\lambda _ { i } ( D W ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n .", + "type": "interline_equation", + "image_path": "16e2a387b65363446063c83771c787fdf44195192b37bf05423347a42921db55.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 401, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 401, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 152, + 682 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 152, + 669, + 159, + 678 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 667, + 177, + 682 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 671, + 184, + 678 + ], + "score": 0.75, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 667, + 354, + 682 + ], + "score": 1.0, + "content": "be a pair of eigenvalue and eigenvector of", + "type": "text" + }, + { + "bbox": [ + 355, + 669, + 377, + 678 + ], + "score": 0.86, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 667, + 401, + 682 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 684, + 354, + 731 + ], + "lines": [ + { + "bbox": [ + 256, + 684, + 354, + 731 + ], + "spans": [ + { + "bbox": [ + 256, + 684, + 354, + 731 + ], + "score": 0.84, + "content": "\\begin{array} { c } { { D W v = \\lambda v , } } \\\\ { { W v = \\lambda D ^ { - 1 } v , } } \\\\ { { v ^ { * } W v = \\lambda ( v ^ { * } D ^ { - 1 } v ) , } } \\end{array}", + "type": "interline_equation", + "image_path": "94f306dff1290b5fb3463a0e647ea3cd39f3e79f2a851cc5f3e573707bbf83f1.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 256, + 684, + 354, + 707.5 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 256, + 707.5, + 354, + 731.0 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "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 2019", + "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": "list", + "bbox": [ + 105, + 81, + 507, + 294 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 104, + 82, + 506, + 295 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 321, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 322, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 322, + 327 + ], + "score": 1.0, + "content": "A AN OVERVIEW OF STABILITY THEORY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 504, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "In this section, we provide a brief overview of the stability theory by examples. Most of the materials", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 349, + 281, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 281, + 361 + ], + "score": 1.0, + "content": "are adapted from Ascher & Petzold (1998).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 338, + 505, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 390, + 379 + ], + "score": 1.0, + "content": "Consider the simple scalar ODE, often referred to as the test equation:", + "type": "text" + }, + { + "bbox": [ + 390, + 366, + 446, + 378 + ], + "score": 0.93, + "content": "y ^ { \\prime } ( t ) = \\lambda y ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 366, + 477, + 379 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 477, + 366, + 504, + 377 + ], + "score": 0.87, + "content": "\\lambda \\in \\mathbb { C }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "score": 1.0, + "content": "is a constant. We allow", + "type": "text" + }, + { + "bbox": [ + 209, + 378, + 216, + 387 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "to be complex because it later represents an eigenvalue of a system’s", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 327, + 401 + ], + "score": 1.0, + "content": "matrix. The solution to this initial value problem is", + "type": "text" + }, + { + "bbox": [ + 327, + 387, + 393, + 400 + ], + "score": 0.93, + "content": "y ( t ) \\stackrel { \\bullet } { = } e ^ { \\lambda t } y ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 388, + 412, + 401 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 413, + 388, + 430, + 400 + ], + "score": 0.91, + "content": "y ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 388, + 451, + 401 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 451, + 388, + 469, + 400 + ], + "score": 0.92, + "content": "\\tilde { y } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "are two", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 399, + 371, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 355, + 411 + ], + "score": 1.0, + "content": "solutions of the test equation, then their difference at any time", + "type": "text" + }, + { + "bbox": [ + 356, + 401, + 360, + 409 + ], + "score": 0.81, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 399, + 371, + 411 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 366, + 506, + 411 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 415, + 426, + 430 + ], + "lines": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "spans": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "score": 0.89, + "content": "| y ( t ) - \\tilde { y } ( t ) | = | e ^ { \\lambda t } ( y ( 0 ) - \\tilde { y } ( 0 ) ) | = e ^ { R e ( \\lambda ) t } | y ( 0 ) - \\tilde { y } ( 0 ) | .", + "type": "interline_equation", + "image_path": "ea067c6dbcabf4a4ed41fcfe08e9725db146a776e5d853833f68fa6789ea306d.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 185, + 415, + 426, + 430 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 433, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 115, + 449 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 434, + 161, + 447 + ], + "score": 0.92, + "content": "R e ( \\lambda ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 433, + 505, + 449 + ], + "score": 1.0, + "content": ", then a small perturbation of the initial states would cause an exponentially exploding", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 166, + 458 + ], + "score": 1.0, + "content": "difference. If", + "type": "text" + }, + { + "bbox": [ + 167, + 445, + 216, + 457 + ], + "score": 0.93, + "content": "R e ( \\lambda ) ~ < ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 445, + 505, + 458 + ], + "score": 1.0, + "content": ", the system is stable, but the perturbation decays exponentially. The", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 456, + 342, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 292, + 469 + ], + "score": 1.0, + "content": "perturbation is preserved in the system only if", + "type": "text" + }, + { + "bbox": [ + 292, + 456, + 337, + 469 + ], + "score": 0.93, + "content": "R e ( \\lambda ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 457, + 342, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 433, + 505, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 384, + 486 + ], + "score": 1.0, + "content": "We now consider the extension of the test equation to a matrix ODE", + "type": "text" + }, + { + "bbox": [ + 385, + 473, + 446, + 485 + ], + "score": 0.92, + "content": "\\mathbf { \\boldsymbol { y } } ^ { \\prime } ( t ) = \\mathbf { \\boldsymbol { A } } \\mathbf { \\boldsymbol { y } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 472, + 506, + 486 + ], + "score": 1.0, + "content": ". The solution", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 104, + 482, + 116, + 497 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 484, + 183, + 496 + ], + "score": 0.93, + "content": "\\pmb { y } ( t ) = e ^ { \\pmb { A } t } \\pmb { y } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 482, + 338, + 497 + ], + "score": 1.0, + "content": ". To simplify the analysis, we assume", + "type": "text" + }, + { + "bbox": [ + 338, + 485, + 348, + 494 + ], + "score": 0.82, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 482, + 441, + 497 + ], + "score": 1.0, + "content": "is diagonalizable, i.e.,", + "type": "text" + }, + { + "bbox": [ + 441, + 484, + 501, + 495 + ], + "score": 0.9, + "content": "\\pmb { P } ^ { - 1 } \\pmb { A } \\pmb { P } = \\pmb { \\Lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 482, + 506, + 497 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 133, + 509 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 496, + 143, + 505 + ], + "score": 0.72, + "content": "\\pmb { \\Lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 493, + 313, + 509 + ], + "score": 1.0, + "content": "is a diagonal matrix of the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 313, + 496, + 323, + 505 + ], + "score": 0.77, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 493, + 404, + 509 + ], + "score": 1.0, + "content": "and the columns of", + "type": "text" + }, + { + "bbox": [ + 404, + 496, + 414, + 505 + ], + "score": 0.82, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "are the corresponding", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 214, + 520 + ], + "score": 1.0, + "content": "eigenvectors. If we define", + "type": "text" + }, + { + "bbox": [ + 214, + 506, + 285, + 518 + ], + "score": 0.92, + "content": "{ \\pmb w } ( t ) = { \\pmb P } ^ { - 1 } { \\pmb y } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 505, + 309, + 520 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 310, + 506, + 375, + 518 + ], + "score": 0.92, + "content": "{ \\pmb w } ^ { \\prime } ( t ) = { \\pmb \\Lambda } { \\pmb w } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 505, + 443, + 520 + ], + "score": 1.0, + "content": ". The system for", + "type": "text" + }, + { + "bbox": [ + 443, + 506, + 464, + 518 + ], + "score": 0.92, + "content": "{ \\mathbf { } } w ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "is decou-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 213, + 530 + ], + "score": 1.0, + "content": "pled: for each component", + "type": "text" + }, + { + "bbox": [ + 213, + 518, + 236, + 529 + ], + "score": 0.91, + "content": "w _ { i } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 517, + 249, + 530 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 249, + 518, + 270, + 529 + ], + "score": 0.88, + "content": "{ \\mathbf { } } w ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 517, + 371, + 530 + ], + "score": 1.0, + "content": ", we have a test equation", + "type": "text" + }, + { + "bbox": [ + 372, + 517, + 440, + 529 + ], + "score": 0.92, + "content": "w _ { i } ^ { \\prime } ( t ) \\stackrel { \\cdot } { = } \\lambda _ { i } w _ { i } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 517, + 506, + 530 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 408, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 155, + 542 + ], + "score": 1.0, + "content": "stability for", + "type": "text" + }, + { + "bbox": [ + 155, + 528, + 176, + 540 + ], + "score": 0.92, + "content": "{ \\pmb w } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 528, + 238, + 542 + ], + "score": 1.0, + "content": ", hence also for", + "type": "text" + }, + { + "bbox": [ + 239, + 529, + 257, + 540 + ], + "score": 0.91, + "content": "{ \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf } { \\mathbf { } } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 528, + 393, + 542 + ], + "score": 1.0, + "content": ", is determined by the eigenvalues", + "type": "text" + }, + { + "bbox": [ + 394, + 529, + 403, + 539 + ], + "score": 0.87, + "content": "\\lambda _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 528, + 408, + 542 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 472, + 506, + 542 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 261, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 263, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 263, + 569 + ], + "score": 1.0, + "content": "B PROOF OF A PROPOSITION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 506, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "In this section, we provide a proof of a proposition which implies that the AntisymmetricRNN and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "AntisymmetricRNN with gating satisfy the critical criterion, i.e., the eigenvalues of the Jacobian", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 603, + 387, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 387, + 615 + ], + "score": 1.0, + "content": "matrix are imaginary. The proof is adapted from Chang et al. (2018a).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 580, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 616, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 179, + 630 + ], + "score": 1.0, + "content": "Proposition 3. If", + "type": "text" + }, + { + "bbox": [ + 180, + 616, + 229, + 628 + ], + "score": 0.9, + "content": "W \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 614, + 357, + 630 + ], + "score": 1.0, + "content": "is an antisymmetric matrix and", + "type": "text" + }, + { + "bbox": [ + 357, + 616, + 403, + 627 + ], + "score": 0.92, + "content": "\\ b { D } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "is an invertible diagonal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 316, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 231, + 641 + ], + "score": 1.0, + "content": "matrix, then the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 232, + 628, + 254, + 638 + ], + "score": 0.64, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 627, + 316, + 641 + ], + "score": 1.0, + "content": "are imaginary.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 614, + 506, + 641 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 644, + 386, + 658 + ], + "lines": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "spans": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "score": 0.9, + "content": "R e ( \\lambda _ { i } ( D W ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n .", + "type": "interline_equation", + "image_path": "16e2a387b65363446063c83771c787fdf44195192b37bf05423347a42921db55.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 225, + 644, + 386, + 658 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 401, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 401, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 152, + 682 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 152, + 669, + 159, + 678 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 667, + 177, + 682 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 671, + 184, + 678 + ], + "score": 0.75, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 667, + 354, + 682 + ], + "score": 1.0, + "content": "be a pair of eigenvalue and eigenvector of", + "type": "text" + }, + { + "bbox": [ + 355, + 669, + 377, + 678 + ], + "score": 0.86, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 667, + 401, + 682 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 667, + 401, + 682 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 684, + 354, + 731 + ], + "lines": [ + { + "bbox": [ + 256, + 684, + 354, + 731 + ], + "spans": [ + { + "bbox": [ + 256, + 684, + 354, + 731 + ], + "score": 0.84, + "content": "\\begin{array} { c } { { D W v = \\lambda v , } } \\\\ { { W v = \\lambda D ^ { - 1 } v , } } \\\\ { { v ^ { * } W v = \\lambda ( v ^ { * } D ^ { - 1 } v ) , } } \\end{array}", + "type": "interline_equation", + "image_path": "94f306dff1290b5fb3463a0e647ea3cd39f3e79f2a851cc5f3e573707bbf83f1.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 256, + 684, + 354, + 707.5 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 256, + 707.5, + 354, + 731.0 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 307, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 308, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 162, + 95 + ], + "score": 1.0, + "content": "On one hand,", + "type": "text" + }, + { + "bbox": [ + 162, + 82, + 201, + 93 + ], + "score": 0.92, + "content": "{ \\pmb v } ^ { * } { \\pmb D } ^ { - 1 } { \\pmb v }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 81, + 308, + 95 + ], + "score": 1.0, + "content": "is real. On the other hand,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 99, + 376, + 113 + ], + "lines": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "spans": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "score": 0.91, + "content": "( v ^ { * } W v ) ^ { * } = v ^ { * } W ^ { * } v = - v ^ { * } W v ,", + "type": "interline_equation", + "image_path": "18ef60292eb7a3b8e94668abeb68d24533215703aa70ad3747d422df0b39624e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 506, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 133, + 131 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 120, + 140, + 128 + ], + "score": 0.76, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 118, + 327, + 131 + ], + "score": 1.0, + "content": "represents conjugate transpose. It implies that", + "type": "text" + }, + { + "bbox": [ + 327, + 119, + 358, + 129 + ], + "score": 0.9, + "content": "{ \\boldsymbol { v } } ^ { * } { \\boldsymbol { W } } { \\boldsymbol { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 118, + 458, + 131 + ], + "score": 1.0, + "content": "is imaginary. Therefore,", + "type": "text" + }, + { + "bbox": [ + 459, + 119, + 465, + 128 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 118, + 505, + 131 + ], + "score": 1.0, + "content": "has to be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 272, + 142 + ], + "score": 1.0, + "content": "imaginary. As a result, all eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 272, + 129, + 295, + 140 + ], + "score": 0.82, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 128, + 356, + 142 + ], + "score": 1.0, + "content": "are imaginary.", + "type": "text" + }, + { + "bbox": [ + 494, + 129, + 505, + 141 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 157, + 255, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 257, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 257, + 172 + ], + "score": 1.0, + "content": "C EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 181, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 122, + 195 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 183, + 132, + 192 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 181, + 242, + 195 + ], + "score": 1.0, + "content": "be the input dimension and", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 250, + 192 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 181, + 506, + 195 + ], + "score": 1.0, + "content": "be the number of hidden units. The input to hidden matrices are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 159, + 207 + ], + "score": 1.0, + "content": "initialized to", + "type": "text" + }, + { + "bbox": [ + 159, + 192, + 205, + 204 + ], + "score": 0.91, + "content": "\\bar { \\mathcal { N } } ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 192, + 399, + 207 + ], + "score": 1.0, + "content": ". The hidden to hidden matrices are initialized to", + "type": "text" + }, + { + "bbox": [ + 400, + 192, + 451, + 205 + ], + "score": 0.94, + "content": "\\bar { \\mathcal { N } } ( 0 , \\sigma _ { w } ^ { 2 } / n )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 192, + 481, + 207 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 481, + 194, + 495, + 204 + ], + "score": 0.87, + "content": "\\sigma _ { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 158, + 217 + ], + "score": 1.0, + "content": "chosen from", + "type": "text" + }, + { + "bbox": [ + 158, + 204, + 250, + 216 + ], + "score": 0.9, + "content": "\\sigma _ { w } \\in \\{ 0 , 1 , 2 , 4 , 8 , 1 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 204, + 505, + 217 + ], + "score": 1.0, + "content": ". The bias terms are initialized to zero, except the forget gate bias", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "of LSTM is initialized to 1, as suggested by Jozefowicz et al. (2015). For AntisymmetricRNNs, the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 143, + 239 + ], + "score": 1.0, + "content": "step size", + "type": "text" + }, + { + "bbox": [ + 143, + 226, + 214, + 238 + ], + "score": 0.92, + "content": "\\epsilon \\in \\{ 0 . 0 1 , 0 . 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 225, + 270, + 239 + ], + "score": 1.0, + "content": "and diffusion", + "type": "text" + }, + { + "bbox": [ + 271, + 226, + 379, + 238 + ], + "score": 0.91, + "content": "\\gamma \\in \\lbrace 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 . 0 \\rbrace", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 225, + 506, + 239 + ], + "score": 1.0, + "content": ". We use SGD with momentum", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "and Adagrad (Duchi et al., 2011) as optimizers, with batch size of 128 and learning rate chosen from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 248, + 230, + 259 + ], + "score": 0.87, + "content": "\\{ 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 , 0 . 7 5 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 248, + 505, + 259 + ], + "score": 1.0, + "content": ". On MNIST and pixel-by-pixel CIFAR-10, all the models are trained", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "for 50,000 iterations. On noise padded CIFAR-10, models are trained for 10,000 iterations. We use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "the standard train/test split of MNIST and CIFAR-10. The performance measure is the classification", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 281, + 244, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 244, + 293 + ], + "score": 1.0, + "content": "accuracy evaluated on the test set.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 284, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 286, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 286, + 323 + ], + "score": 1.0, + "content": "D ADDITIONAL VISUALIZATIONS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "score": 1.0, + "content": "In this section, we present additional visualizations that are related to the simulation study in Sec-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "tion 4. Figure 3 and 4 show the dynamics of vanilla RNNs and AntisymmetricRNNs with standard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "Gaussian random weights using different seeds. These visualizations further illustrate the random", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 441, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 441, + 378 + ], + "score": 1.0, + "content": "behavior of a vanilla RNN and the predictable dynamics of an AntisymmetricRNN.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "score": 1.0, + "content": "Figure 5 shows the dynamics of AntisymmetricRNNs with independent standard Gaussian input.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "This shows that the dynamics become noisier compared to Figure 1, but the trend remains the same.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "page_idx": 12, + "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 2019", + "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": [ + 108, + 82, + 307, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 308, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 162, + 95 + ], + "score": 1.0, + "content": "On one hand,", + "type": "text" + }, + { + "bbox": [ + 162, + 82, + 201, + 93 + ], + "score": 0.92, + "content": "{ \\pmb v } ^ { * } { \\pmb D } ^ { - 1 } { \\pmb v }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 81, + 308, + 95 + ], + "score": 1.0, + "content": "is real. On the other hand,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 308, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 99, + 376, + 113 + ], + "lines": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "spans": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "score": 0.91, + "content": "( v ^ { * } W v ) ^ { * } = v ^ { * } W ^ { * } v = - v ^ { * } W v ,", + "type": "interline_equation", + "image_path": "18ef60292eb7a3b8e94668abeb68d24533215703aa70ad3747d422df0b39624e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 233, + 99, + 376, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 506, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 133, + 131 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 120, + 140, + 128 + ], + "score": 0.76, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 118, + 327, + 131 + ], + "score": 1.0, + "content": "represents conjugate transpose. It implies that", + "type": "text" + }, + { + "bbox": [ + 327, + 119, + 358, + 129 + ], + "score": 0.9, + "content": "{ \\boldsymbol { v } } ^ { * } { \\boldsymbol { W } } { \\boldsymbol { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 118, + 458, + 131 + ], + "score": 1.0, + "content": "is imaginary. Therefore,", + "type": "text" + }, + { + "bbox": [ + 459, + 119, + 465, + 128 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 118, + 505, + 131 + ], + "score": 1.0, + "content": "has to be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 272, + 142 + ], + "score": 1.0, + "content": "imaginary. As a result, all eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 272, + 129, + 295, + 140 + ], + "score": 0.82, + "content": "\\pmb { D W }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 128, + 356, + 142 + ], + "score": 1.0, + "content": "are imaginary.", + "type": "text" + }, + { + "bbox": [ + 494, + 129, + 505, + 141 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 118, + 505, + 142 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 157, + 255, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 257, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 257, + 172 + ], + "score": 1.0, + "content": "C EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 181, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 122, + 195 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 183, + 132, + 192 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 181, + 242, + 195 + ], + "score": 1.0, + "content": "be the input dimension and", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 250, + 192 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 181, + 506, + 195 + ], + "score": 1.0, + "content": "be the number of hidden units. The input to hidden matrices are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 159, + 207 + ], + "score": 1.0, + "content": "initialized to", + "type": "text" + }, + { + "bbox": [ + 159, + 192, + 205, + 204 + ], + "score": 0.91, + "content": "\\bar { \\mathcal { N } } ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 192, + 399, + 207 + ], + "score": 1.0, + "content": ". The hidden to hidden matrices are initialized to", + "type": "text" + }, + { + "bbox": [ + 400, + 192, + 451, + 205 + ], + "score": 0.94, + "content": "\\bar { \\mathcal { N } } ( 0 , \\sigma _ { w } ^ { 2 } / n )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 192, + 481, + 207 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 481, + 194, + 495, + 204 + ], + "score": 0.87, + "content": "\\sigma _ { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 158, + 217 + ], + "score": 1.0, + "content": "chosen from", + "type": "text" + }, + { + "bbox": [ + 158, + 204, + 250, + 216 + ], + "score": 0.9, + "content": "\\sigma _ { w } \\in \\{ 0 , 1 , 2 , 4 , 8 , 1 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 204, + 505, + 217 + ], + "score": 1.0, + "content": ". The bias terms are initialized to zero, except the forget gate bias", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "of LSTM is initialized to 1, as suggested by Jozefowicz et al. (2015). For AntisymmetricRNNs, the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 143, + 239 + ], + "score": 1.0, + "content": "step size", + "type": "text" + }, + { + "bbox": [ + 143, + 226, + 214, + 238 + ], + "score": 0.92, + "content": "\\epsilon \\in \\{ 0 . 0 1 , 0 . 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 225, + 270, + 239 + ], + "score": 1.0, + "content": "and diffusion", + "type": "text" + }, + { + "bbox": [ + 271, + 226, + 379, + 238 + ], + "score": 0.91, + "content": "\\gamma \\in \\lbrace 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 . 0 \\rbrace", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 225, + 506, + 239 + ], + "score": 1.0, + "content": ". We use SGD with momentum", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "and Adagrad (Duchi et al., 2011) as optimizers, with batch size of 128 and learning rate chosen from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 248, + 230, + 259 + ], + "score": 0.87, + "content": "\\{ 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 , 0 . 7 5 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 248, + 505, + 259 + ], + "score": 1.0, + "content": ". On MNIST and pixel-by-pixel CIFAR-10, all the models are trained", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "for 50,000 iterations. On noise padded CIFAR-10, models are trained for 10,000 iterations. We use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "the standard train/test split of MNIST and CIFAR-10. The performance measure is the classification", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 281, + 244, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 244, + 293 + ], + "score": 1.0, + "content": "accuracy evaluated on the test set.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 181, + 506, + 293 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 284, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 286, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 286, + 323 + ], + "score": 1.0, + "content": "D ADDITIONAL VISUALIZATIONS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "score": 1.0, + "content": "In this section, we present additional visualizations that are related to the simulation study in Sec-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "tion 4. Figure 3 and 4 show the dynamics of vanilla RNNs and AntisymmetricRNNs with standard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "Gaussian random weights using different seeds. These visualizations further illustrate the random", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 441, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 441, + 378 + ], + "score": 1.0, + "content": "behavior of a vanilla RNN and the predictable dynamics of an AntisymmetricRNN.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 333, + 505, + 378 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 382, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "score": 1.0, + "content": "Figure 5 shows the dynamics of AntisymmetricRNNs with independent standard Gaussian input.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "This shows that the dynamics become noisier compared to Figure 1, but the trend remains the same.", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 382, + 505, + 406 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 218, + 481, + 563 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 218, + 481, + 563 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 218, + 481, + 563 + ], + "spans": [ + { + "bbox": [ + 128, + 218, + 481, + 563 + ], + "score": 0.976, + "type": "image", + "image_path": "af56ab1a9ad6434e2c42f09f694c286b94dde568787aced6f5c97395e47c7d3b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 218, + 481, + 333.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 333.0, + 481, + 448.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 448.0, + 481, + 563.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 572, + 505, + 595 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "Figure 3: Visualization of the dynamics of vanilla RNNs with standard Gaussian random weights,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 583, + 210, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 210, + 595 + ], + "score": 1.0, + "content": "using seeds from 1 to 16.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 13, + "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 2019", + "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": "image", + "bbox": [ + 128, + 218, + 481, + 563 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 218, + 481, + 563 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 218, + 481, + 563 + ], + "spans": [ + { + "bbox": [ + 128, + 218, + 481, + 563 + ], + "score": 0.976, + "type": "image", + "image_path": "af56ab1a9ad6434e2c42f09f694c286b94dde568787aced6f5c97395e47c7d3b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 218, + 481, + 333.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 333.0, + 481, + 448.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 448.0, + 481, + 563.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 572, + 505, + 595 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "Figure 3: Visualization of the dynamics of vanilla RNNs with standard Gaussian random weights,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 583, + 210, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 210, + 595 + ], + "score": 1.0, + "content": "using seeds from 1 to 16.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 110, + 481, + 453 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 110, + 481, + 453 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 110, + 481, + 453 + ], + "spans": [ + { + "bbox": [ + 128, + 110, + 481, + 453 + ], + "score": 0.975, + "type": "image", + "image_path": "9d3db63ba5e4d101e28325552839dc4269331c8b18c379d043cdb087dc6176d3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 110, + 481, + 224.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 224.33333333333331, + 481, + 338.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 338.66666666666663, + 481, + 452.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 464, + 506, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Figure 4: Visualization of the dynamics of RNN with feedback with standard Gaussian random", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 475, + 355, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 317, + 488 + ], + "score": 1.0, + "content": "weights, using seeds from 1 to 16, diffusion strength", + "type": "text" + }, + { + "bbox": [ + 318, + 476, + 351, + 487 + ], + "score": 0.91, + "content": "\\gamma = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 475, + 355, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 108, + 548, + 503, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 548, + 503, + 671 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 548, + 503, + 671 + ], + "spans": [ + { + "bbox": [ + 108, + 548, + 503, + 671 + ], + "score": 0.76, + "type": "image", + "image_path": "8ce9b81ff6e57ebb11af09e775f759cb7b8d30d4c27b2a12b1b87256b00b8379.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 108, + 548, + 503, + 589.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 589.0, + 503, + 630.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 630.0, + 503, + 671.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 679, + 506, + 703 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Figure 5: Visualization of the dynamics of RNN with feedback with independent standard Gaussian", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 690, + 134, + 705 + ], + "spans": [ + { + "bbox": [ + 104, + 690, + 134, + 705 + ], + "score": 1.0, + "content": "input.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "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": "image", + "bbox": [ + 128, + 110, + 481, + 453 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 110, + 481, + 453 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 110, + 481, + 453 + ], + "spans": [ + { + "bbox": [ + 128, + 110, + 481, + 453 + ], + "score": 0.975, + "type": "image", + "image_path": "9d3db63ba5e4d101e28325552839dc4269331c8b18c379d043cdb087dc6176d3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 110, + 481, + 224.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 224.33333333333331, + 481, + 338.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 338.66666666666663, + 481, + 452.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 464, + 506, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Figure 4: Visualization of the dynamics of RNN with feedback with standard Gaussian random", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 475, + 355, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 317, + 488 + ], + "score": 1.0, + "content": "weights, using seeds from 1 to 16, diffusion strength", + "type": "text" + }, + { + "bbox": [ + 318, + 476, + 351, + 487 + ], + "score": 0.91, + "content": "\\gamma = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 475, + 355, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 108, + 548, + 503, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 548, + 503, + 671 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 548, + 503, + 671 + ], + "spans": [ + { + "bbox": [ + 108, + 548, + 503, + 671 + ], + "score": 0.76, + "type": "image", + "image_path": "8ce9b81ff6e57ebb11af09e775f759cb7b8d30d4c27b2a12b1b87256b00b8379.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 108, + 548, + 503, + 589.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 589.0, + 503, + 630.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 630.0, + 503, + 671.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 679, + 506, + 703 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Figure 5: Visualization of the dynamics of RNN with feedback with independent standard Gaussian", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 690, + 134, + 705 + ], + "spans": [ + { + "bbox": [ + 104, + 690, + 134, + 705 + ], + "score": 1.0, + "content": "input.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ryxepo0cFX/ryxepo0cFX_model.json b/parse/train/ryxepo0cFX/ryxepo0cFX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f031393bf7c3a6c70946acb31b021230a60df6 --- /dev/null +++ b/parse/train/ryxepo0cFX/ryxepo0cFX_model.json @@ -0,0 +1,22378 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 818, + 1302, + 818, + 1302, + 1245, + 398, + 1245 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1372, + 1403, + 1372, + 1403, + 1618, + 298, + 1618 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1633, + 1404, + 1633, + 1404, + 1878, + 298, + 1878 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 301, + 218, + 1399, + 218, + 1399, + 324, + 301, + 324 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1893, + 1403, + 1893, + 1403, + 1987, + 300, + 1987 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 662, + 376, + 662, + 499, + 314, + 499 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 697, + 377, + 999, + 377, + 999, + 500, + 697, + 500 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 313, + 545, + 611, + 545, + 611, + 670, + 313, + 670 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 1036, + 377, + 1386, + 377, + 1386, + 499, + 1036, + 499 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 330, + 2005, + 840, + 2005, + 840, + 2034, + 330, + 2034 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 302, + 1303, + 573, + 1303, + 573, + 1338, + 302, + 1338 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 773, + 750, + 926, + 750, + 926, + 783, + 773, + 783 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.701 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1403.0, + 217.0, + 1403.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 271.0, + 1070.0, + 271.0, + 1070.0, + 330.0, + 292.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 841.0, + 1999.0, + 841.0, + 2039.0, + 329.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 579.0, + 1300.0, + 579.0, + 1347.0, + 294.0, + 1347.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": [ + 769.0, + 749.0, + 932.0, + 749.0, + 932.0, + 786.0, + 769.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 818.0, + 1305.0, + 818.0, + 1305.0, + 853.0, + 394.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 849.0, + 1306.0, + 849.0, + 1306.0, + 884.0, + 394.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 881.0, + 1305.0, + 881.0, + 1305.0, + 913.0, + 395.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 910.0, + 1305.0, + 910.0, + 1305.0, + 944.0, + 393.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 940.0, + 1305.0, + 940.0, + 1305.0, + 974.0, + 393.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 971.0, + 1305.0, + 971.0, + 1305.0, + 1007.0, + 394.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1002.0, + 1306.0, + 1002.0, + 1306.0, + 1037.0, + 394.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1034.0, + 1305.0, + 1034.0, + 1305.0, + 1065.0, + 393.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1063.0, + 1307.0, + 1063.0, + 1307.0, + 1098.0, + 393.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1093.0, + 1306.0, + 1093.0, + 1306.0, + 1128.0, + 394.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1122.0, + 1305.0, + 1122.0, + 1305.0, + 1157.0, + 394.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1154.0, + 1305.0, + 1154.0, + 1305.0, + 1188.0, + 394.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1182.0, + 1307.0, + 1182.0, + 1307.0, + 1223.0, + 392.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1217.0, + 559.0, + 1217.0, + 559.0, + 1250.0, + 394.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1374.0, + 1405.0, + 1374.0, + 1405.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1404.0, + 1404.0, + 1404.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1467.0, + 296.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 1403.0, + 1465.0, + 1403.0, + 1499.0, + 294.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1494.0, + 1404.0, + 1494.0, + 1404.0, + 1531.0, + 293.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1407.0, + 1525.0, + 1407.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1407.0, + 1554.0, + 1407.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1586.0, + 1134.0, + 1586.0, + 1134.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1664.0, + 1406.0, + 1664.0, + 1406.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1692.0, + 1406.0, + 1692.0, + 1406.0, + 1730.0, + 292.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1791.0, + 293.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1785.0, + 1405.0, + 1785.0, + 1405.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1815.0, + 1404.0, + 1815.0, + 1404.0, + 1853.0, + 293.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 769.0, + 1847.0, + 769.0, + 1883.0, + 293.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1890.0, + 1404.0, + 1890.0, + 1404.0, + 1930.0, + 294.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1923.0, + 1404.0, + 1923.0, + 1404.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1955.0, + 1404.0, + 1955.0, + 1404.0, + 1989.0, + 296.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 372.0, + 450.0, + 372.0, + 450.0, + 414.0, + 310.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 408.0, + 664.0, + 408.0, + 664.0, + 439.0, + 313.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 438.0, + 586.0, + 438.0, + 586.0, + 469.0, + 313.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 467.0, + 619.0, + 467.0, + 619.0, + 502.0, + 311.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 374.0, + 872.0, + 374.0, + 872.0, + 411.0, + 694.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 406.0, + 857.0, + 406.0, + 857.0, + 440.0, + 695.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 437.0, + 996.0, + 437.0, + 996.0, + 468.0, + 695.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 467.0, + 1004.0, + 467.0, + 1004.0, + 503.0, + 695.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 544.0, + 442.0, + 544.0, + 442.0, + 577.0, + 310.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 575.0, + 472.0, + 575.0, + 472.0, + 611.0, + 310.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 606.0, + 612.0, + 606.0, + 612.0, + 639.0, + 311.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 637.0, + 589.0, + 637.0, + 589.0, + 674.0, + 311.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 374.0, + 1198.0, + 374.0, + 1198.0, + 408.0, + 1034.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 407.0, + 1387.0, + 407.0, + 1387.0, + 439.0, + 1036.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 439.0, + 1306.0, + 439.0, + 1306.0, + 468.0, + 1036.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 467.0, + 1325.0, + 467.0, + 1325.0, + 502.0, + 1034.0, + 502.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1407, + 1404, + 1407, + 1404, + 1804, + 297, + 1804 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1085, + 1404, + 1085, + 1404, + 1391, + 298, + 1391 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1403, + 1820, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 414, + 298, + 414 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 429, + 1403, + 429, + 1403, + 582, + 299, + 582 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 368, + 612, + 1404, + 612, + 1404, + 958, + 368, + 958 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 300, + 1011, + 581, + 1011, + 581, + 1045, + 300, + 1045 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.707 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.136 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1009.0, + 586.0, + 1009.0, + 586.0, + 1052.0, + 292.0, + 1052.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, + 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, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1404.0, + 1440.0, + 1404.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1466.0, + 1406.0, + 1466.0, + 1406.0, + 1505.0, + 292.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1404.0, + 1530.0, + 1404.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1560.0, + 1404.0, + 1560.0, + 1404.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1626.0, + 292.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1617.0, + 1405.0, + 1617.0, + 1405.0, + 1657.0, + 292.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1649.0, + 1406.0, + 1649.0, + 1406.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1718.0, + 292.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1709.0, + 1406.0, + 1709.0, + 1406.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1743.0, + 1406.0, + 1743.0, + 1406.0, + 1779.0, + 295.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 959.0, + 1775.0, + 959.0, + 1807.0, + 295.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 1405.0, + 1084.0, + 1405.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1120.0, + 1402.0, + 1120.0, + 1402.0, + 1152.0, + 296.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1145.0, + 1405.0, + 1145.0, + 1405.0, + 1186.0, + 292.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1216.0, + 291.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1204.0, + 1406.0, + 1204.0, + 1406.0, + 1248.0, + 292.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1275.0, + 293.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 1405.0, + 1268.0, + 1405.0, + 1304.0, + 293.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 1404.0, + 1299.0, + 1404.0, + 1334.0, + 294.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1328.0, + 1405.0, + 1328.0, + 1405.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 673.0, + 1361.0, + 673.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1404.0, + 1848.0, + 1404.0, + 1884.0, + 292.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1974.0, + 1407.0, + 1974.0, + 1407.0, + 2004.0, + 292.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1408.0, + 320.0, + 1408.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 351.0, + 1407.0, + 351.0, + 1407.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 383.0, + 693.0, + 383.0, + 693.0, + 416.0, + 293.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 550.0, + 633.0, + 550.0, + 633.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 610.0, + 1404.0, + 610.0, + 1404.0, + 650.0, + 371.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 646.0, + 1035.0, + 646.0, + 1035.0, + 678.0, + 394.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 693.0, + 1404.0, + 693.0, + 1404.0, + 728.0, + 368.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 722.0, + 1404.0, + 722.0, + 1404.0, + 762.0, + 393.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 756.0, + 1404.0, + 756.0, + 1404.0, + 788.0, + 395.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 785.0, + 1020.0, + 785.0, + 1020.0, + 822.0, + 393.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 834.0, + 1404.0, + 834.0, + 1404.0, + 867.0, + 385.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 865.0, + 1404.0, + 865.0, + 1404.0, + 900.0, + 394.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 898.0, + 1404.0, + 898.0, + 1404.0, + 930.0, + 396.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 928.0, + 1364.0, + 928.0, + 1364.0, + 960.0, + 395.0, + 960.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1600, + 1405, + 1600, + 1405, + 1878, + 297, + 1878 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 851, + 1404, + 851, + 1404, + 1067, + 297, + 1067 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 307, + 1404, + 307, + 1404, + 553, + 297, + 553 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1135, + 1402, + 1135, + 1402, + 1258, + 298, + 1258 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1401, + 229, + 1401, + 293, + 296, + 293 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 293, + 723, + 1400, + 723, + 1400, + 786, + 293, + 786 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 294, + 1326, + 1400, + 1326, + 1400, + 1389, + 294, + 1389 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 716, + 1067, + 983, + 1067, + 983, + 1130, + 716, + 1130 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1397, + 1971, + 1397, + 2034, + 297, + 2034 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 632, + 1274, + 1065, + 1274, + 1065, + 1312, + 632, + 1312 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 750, + 800, + 947, + 800, + 947, + 840, + 750, + 840 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 672, + 1550, + 1027, + 1550, + 1027, + 1587, + 672, + 1587 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 710, + 1450, + 985, + 1450, + 985, + 1488, + 710, + 1488 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 1502, + 1171, + 1502, + 1171, + 1535, + 298, + 1535 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 300, + 1403, + 679, + 1403, + 679, + 1434, + 300, + 1434 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 300, + 667, + 816, + 667, + 816, + 699, + 300, + 699 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 302, + 596, + 692, + 596, + 692, + 632, + 302, + 632 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1085, + 1399, + 1085, + 1399, + 1114, + 1366, + 1114 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1278, + 1399, + 1278, + 1399, + 1307, + 1366, + 1307 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 806, + 1399, + 806, + 1399, + 835, + 1366, + 835 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 296, + 1917, + 1285, + 1917, + 1285, + 1947, + 296, + 1947 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.591 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.447 + }, + { + "category_id": 14, + "poly": [ + 629, + 1273, + 1069, + 1273, + 1069, + 1312, + 629, + 1312 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon f ( h _ { t - 1 } ) , \\quad h _ { 0 } = h ( 0 ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 715, + 1063, + 986, + 1063, + 986, + 1130, + 715, + 1130 + ], + "score": 0.94, + "latex": "\\frac { h _ { t } - h _ { t - 1 } } { \\epsilon } = f ( h _ { t - 1 } ) ." + }, + { + "category_id": 14, + "poly": [ + 751, + 799, + 946, + 799, + 946, + 840, + 751, + 840 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = f ( \\pmb { h } ( t ) ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 548, + 853, + 673, + 853, + 673, + 887, + 548, + 887 + ], + "score": 0.93, + "latex": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 726, + 853, + 887, + 853, + 887, + 884, + 726, + 884 + ], + "score": 0.92, + "latex": "f : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1165, + 1373, + 1165, + 1373, + 1199, + 1314, + 1199 + ], + "score": 0.92, + "latex": "f ( h )" + }, + { + "category_id": 13, + "poly": [ + 527, + 1358, + 586, + 1358, + 586, + 1389, + 527, + 1389 + ], + "score": 0.91, + "latex": "h _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 539, + 1037, + 597, + 1037, + 597, + 1069, + 539, + 1069 + ], + "score": 0.91, + "latex": "\\boldsymbol { h } _ { t - 1 }" + }, + { + "category_id": 14, + "poly": [ + 708, + 1448, + 990, + 1448, + 990, + 1489, + 708, + 1489 + ], + "score": 0.91, + "latex": "\\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( \\pmb { W } \\pmb { h } ( t ) \\right) ." + }, + { + "category_id": 14, + "poly": [ + 671, + 1549, + 1024, + 1549, + 1024, + 1587, + 671, + 1587 + ], + "score": 0.91, + "latex": "h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ," + }, + { + "category_id": 13, + "poly": [ + 780, + 1137, + 846, + 1137, + 846, + 1165, + 780, + 1165 + ], + "score": 0.91, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 741, + 886, + 794, + 886, + 794, + 917, + 741, + 917 + ], + "score": 0.9, + "latex": "h ( t )" + }, + { + "category_id": 13, + "poly": [ + 1337, + 853, + 1392, + 853, + 1392, + 887, + 1337, + 887 + ], + "score": 0.9, + "latex": "\\pmb { h } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 394, + 855, + 461, + 855, + 461, + 884, + 394, + 884 + ], + "score": 0.89, + "latex": "t \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1604, + 1123, + 1604, + 1123, + 1633, + 1092, + 1633 + ], + "score": 0.88, + "latex": "h _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1198, + 1119, + 1198, + 1119, + 1229, + 1099, + 1229 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 884, + 758, + 898, + 758, + 898, + 782, + 884, + 782 + ], + "score": 0.8, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 577, + 1198, + 599, + 1198, + 599, + 1224, + 577, + 1224 + ], + "score": 0.79, + "latex": "^ { h }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1363, + 747, + 1363, + 747, + 1383, + 731, + 1383 + ], + "score": 0.77, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 298, + 1636, + 311, + 1636, + 311, + 1660, + 298, + 1660 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 747, + 1638, + 763, + 1638, + 763, + 1660, + 747, + 1660 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1172, + 1188, + 1172, + 1188, + 1194, + 1172, + 1194 + ], + "score": 0.55, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 407, + 1633, + 445, + 1633, + 445, + 1661, + 407, + 1661 + ], + "score": 0.48, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 665.0, + 821.0, + 665.0, + 821.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 595.0, + 695.0, + 595.0, + 695.0, + 638.0, + 292.0, + 638.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, + 1915.0, + 1288.0, + 1915.0, + 1288.0, + 1949.0, + 295.0, + 1949.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1091.0, + 1601.0, + 1091.0, + 1638.0, + 295.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1638.0, + 1124.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1634.0, + 406.0, + 1634.0, + 406.0, + 1667.0, + 312.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1634.0, + 746.0, + 1634.0, + 746.0, + 1667.0, + 446.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1667.0, + 764.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1700.0, + 292.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1693.0, + 1405.0, + 1693.0, + 1405.0, + 1730.0, + 295.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1726.0, + 1405.0, + 1726.0, + 1405.0, + 1759.0, + 295.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1791.0, + 292.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1786.0, + 1405.0, + 1786.0, + 1405.0, + 1819.0, + 297.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1812.0, + 1405.0, + 1812.0, + 1405.0, + 1852.0, + 292.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 377.0, + 1848.0, + 377.0, + 1881.0, + 294.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 849.0, + 393.0, + 849.0, + 393.0, + 890.0, + 292.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 849.0, + 547.0, + 849.0, + 547.0, + 890.0, + 462.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 849.0, + 725.0, + 849.0, + 725.0, + 890.0, + 674.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 849.0, + 1336.0, + 849.0, + 1336.0, + 890.0, + 888.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 849.0, + 1404.0, + 849.0, + 1404.0, + 890.0, + 1393.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 886.0, + 740.0, + 886.0, + 740.0, + 917.0, + 296.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 886.0, + 1405.0, + 886.0, + 1405.0, + 917.0, + 795.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 912.0, + 1406.0, + 912.0, + 1406.0, + 952.0, + 291.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 945.0, + 1404.0, + 945.0, + 1404.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1007.0, + 1406.0, + 1007.0, + 1406.0, + 1040.0, + 292.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1034.0, + 538.0, + 1034.0, + 538.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1034.0, + 610.0, + 1034.0, + 610.0, + 1073.0, + 598.0, + 1073.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, + 337.0, + 1407.0, + 337.0, + 1407.0, + 375.0, + 292.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 368.0, + 1405.0, + 368.0, + 1405.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1407.0, + 399.0, + 1407.0, + 436.0, + 294.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 1402.0, + 429.0, + 1402.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 490.0, + 1406.0, + 490.0, + 1406.0, + 527.0, + 294.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 519.0, + 701.0, + 519.0, + 701.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1133.0, + 779.0, + 1133.0, + 779.0, + 1172.0, + 292.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1133.0, + 1406.0, + 1133.0, + 1406.0, + 1172.0, + 847.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1165.0, + 1171.0, + 1165.0, + 1171.0, + 1201.0, + 293.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1165.0, + 1313.0, + 1165.0, + 1313.0, + 1201.0, + 1189.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1165.0, + 1406.0, + 1165.0, + 1406.0, + 1201.0, + 1374.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1196.0, + 576.0, + 1196.0, + 576.0, + 1233.0, + 293.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1196.0, + 1098.0, + 1196.0, + 1098.0, + 1233.0, + 600.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1196.0, + 1406.0, + 1196.0, + 1406.0, + 1233.0, + 1120.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1123.0, + 1228.0, + 1123.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 634.0, + 260.0, + 634.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 723.0, + 1403.0, + 723.0, + 1403.0, + 760.0, + 296.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 883.0, + 755.0, + 883.0, + 788.0, + 293.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 755.0, + 1369.0, + 755.0, + 1369.0, + 788.0, + 899.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1361.0, + 296.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1356.0, + 526.0, + 1356.0, + 526.0, + 1392.0, + 296.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1356.0, + 730.0, + 1356.0, + 730.0, + 1392.0, + 587.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1356.0, + 1162.0, + 1356.0, + 1162.0, + 1392.0, + 748.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 1174.0, + 1497.0, + 1174.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 681.0, + 1401.0, + 681.0, + 1437.0, + 295.0, + 1437.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1477, + 1404, + 1477, + 1404, + 1698, + 297, + 1698 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 814, + 1404, + 814, + 1404, + 998, + 296, + 998 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1710, + 1403, + 1710, + 1403, + 1836, + 297, + 1836 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1115, + 1404, + 1115, + 1404, + 1270, + 296, + 1270 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 506, + 1404, + 506, + 1404, + 632, + 297, + 632 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 377, + 1404, + 377, + 1404, + 486, + 298, + 486 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1401, + 228, + 1401, + 294, + 294, + 294 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 659, + 1398, + 1042, + 1398, + 1042, + 1465, + 659, + 1465 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 685, + 1268, + 1013, + 1268, + 1013, + 1342, + 685, + 1342 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 1040, + 1405, + 1040, + 1405, + 1103, + 299, + 1103 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 633, + 687, + 1070, + 687, + 1070, + 739, + 633, + 739 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 307, + 1401, + 307, + 1401, + 370, + 294, + 370 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 633, + 997, + 1069, + 997, + 1069, + 1033, + 633, + 1033 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 640, + 1851, + 1060, + 1851, + 1060, + 1889, + 640, + 1889 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 558, + 1997, + 1140, + 1997, + 1140, + 2039, + 558, + 2039 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 1347, + 1131, + 1347, + 1131, + 1382, + 298, + 1382 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 291, + 1901, + 1299, + 1901, + 1299, + 1936, + 291, + 1936 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 298, + 639, + 872, + 639, + 872, + 673, + 298, + 673 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 298, + 1949, + 621, + 1949, + 621, + 1982, + 298, + 1982 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 297, + 757, + 918, + 757, + 918, + 791, + 297, + 791 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1000, + 1400, + 1000, + 1400, + 1029, + 1366, + 1029 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1290, + 1400, + 1290, + 1400, + 1319, + 1366, + 1319 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1418, + 1400, + 1418, + 1400, + 1449, + 1366, + 1449 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 693, + 1400, + 693, + 1400, + 722, + 1366, + 722 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 2004, + 1401, + 2004, + 1401, + 2033, + 1366, + 2033 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.781 + }, + { + "category_id": 14, + "poly": [ + 682, + 1265, + 1018, + 1265, + 1018, + 1342, + 682, + 1342 + ], + "score": 0.95, + "latex": "\\frac { \\mathrm { d } } { \\mathrm { d } t } \\left( \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } \\right) = \\pmb { J } ( t ) \\frac { \\partial \\pmb { h } ( t ) } { \\partial \\pmb { h } ( 0 ) } ." + }, + { + "category_id": 13, + "poly": [ + 583, + 446, + 793, + 446, + 793, + 484, + 583, + 484 + ], + "score": 0.94, + "latex": "| h ( 0 ) - \\tilde { h } ( 0 ) | \\leq \\delta" + }, + { + "category_id": 14, + "poly": [ + 654, + 1395, + 1046, + 1395, + 1046, + 1466, + 654, + 1466 + ], + "score": 0.94, + "latex": "\\frac { \\mathrm { d } \\pmb { A } ( t ) } { \\mathrm { d } t } = \\pmb { J } ( t ) \\pmb { A } ( t ) , \\quad \\pmb { A } ( 0 ) = \\pmb { I } ." + }, + { + "category_id": 13, + "poly": [ + 512, + 1772, + 660, + 1772, + 660, + 1803, + 512, + 1803 + ], + "score": 0.94, + "latex": "M ^ { T } = - M" + }, + { + "category_id": 13, + "poly": [ + 796, + 1479, + 1133, + 1479, + 1133, + 1516, + 796, + 1516 + ], + "score": 0.93, + "latex": "{ \\pmb A } ( t ) = e ^ { { \\pmb J } \\cdot t } = P e ^ { { \\pmb \\Lambda } ( J ) t } { \\pmb P } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 627, + 569, + 785, + 569, + 785, + 603, + 627, + 603 + ], + "score": 0.93, + "latex": "\\bar { \\ b { J } } ( \\bar { t } ) \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 14, + "poly": [ + 630, + 995, + 1069, + 995, + 1069, + 1034, + 630, + 1034 + ], + "score": 0.93, + "latex": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\approx 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ," + }, + { + "category_id": 13, + "poly": [ + 724, + 1348, + 969, + 1348, + 969, + 1383, + 724, + 1383 + ], + "score": 0.93, + "latex": "\\pmb { A } ( t ) = \\partial \\pmb { h } ( t ) / \\partial \\pmb { h } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 1078, + 816, + 1132, + 816, + 1132, + 850, + 1078, + 850 + ], + "score": 0.92, + "latex": "\\mathbf { } J ( t )" + }, + { + "category_id": 13, + "poly": [ + 628, + 876, + 848, + 876, + 848, + 910, + 628, + 910 + ], + "score": 0.92, + "latex": "R e ( \\lambda _ { i } ( J ( t ) ) ) \\ll 0" + }, + { + "category_id": 13, + "poly": [ + 1161, + 569, + 1218, + 569, + 1218, + 603, + 1161, + 603 + ], + "score": 0.92, + "latex": "\\lambda _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 699, + 1635, + 757, + 1635, + 757, + 1669, + 699, + 1669 + ], + "score": 0.92, + "latex": "A ( t )" + }, + { + "category_id": 13, + "poly": [ + 788, + 1208, + 845, + 1208, + 845, + 1242, + 788, + 1242 + ], + "score": 0.92, + "latex": "\\bar { \\pmb h } ( 0 )" + }, + { + "category_id": 14, + "poly": [ + 639, + 1850, + 1058, + 1850, + 1058, + 1888, + 639, + 1888 + ], + "score": 0.92, + "latex": "R e ( \\lambda _ { i } ( M ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ," + }, + { + "category_id": 14, + "poly": [ + 629, + 687, + 1071, + 687, + 1071, + 741, + 629, + 741 + ], + "score": 0.91, + "latex": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) \\leq 0 , \\quad \\forall t \\geq 0 ," + }, + { + "category_id": 13, + "poly": [ + 409, + 446, + 465, + 446, + 465, + 484, + 409, + 484 + ], + "score": 0.91, + "latex": "\\tilde { \\pmb { h } } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1743, + 1399, + 1743, + 1399, + 1772, + 1262, + 1772 + ], + "score": 0.91, + "latex": "M \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 946, + 447, + 1146, + 447, + 1146, + 484, + 946, + 484 + ], + "score": 0.91, + "latex": "| h ( t ) - \\tilde { h } ( t ) | \\leq \\epsilon ," + }, + { + "category_id": 13, + "poly": [ + 704, + 379, + 758, + 379, + 758, + 413, + 704, + 413 + ], + "score": 0.91, + "latex": "h ( t )" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1574, + 1168, + 1574, + 1168, + 1607, + 1111, + 1607 + ], + "score": 0.91, + "latex": "A ( t )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1635, + 482, + 1635, + 482, + 1669, + 298, + 1669 + ], + "score": 0.91, + "latex": "R e ( \\pmb { \\Lambda } ( \\pmb { J } ) ) \\approx 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1543, + 364, + 1543, + 364, + 1577, + 298, + 1577 + ], + "score": 0.91, + "latex": "\\pmb { \\Lambda } ( J )" + }, + { + "category_id": 14, + "poly": [ + 558, + 1996, + 1138, + 1996, + 1138, + 2040, + 558, + 2040 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { h } ^ { \\prime } ( t ) = \\operatorname { t a n h } \\left( ( \\pmb { W } _ { h } - \\pmb { W } _ { h } ^ { T } ) \\pmb { h } ( t ) + \\pmb { V } _ { h } \\pmb { x } ( t ) + \\pmb { b } _ { h } \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1088, + 411, + 1141, + 411, + 1141, + 448, + 1088, + 448 + ], + "score": 0.9, + "latex": "\\tilde { h } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1316, + 379, + 1373, + 379, + 1373, + 413, + 1316, + 413 + ], + "score": 0.9, + "latex": "\\pmb { h } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 703, + 416, + 771, + 416, + 771, + 444, + 703, + 444 + ], + "score": 0.9, + "latex": "\\delta > 0" + }, + { + "category_id": 13, + "poly": [ + 372, + 758, + 437, + 758, + 437, + 792, + 372, + 792 + ], + "score": 0.89, + "latex": "R e ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1231, + 450, + 1294, + 450, + 1294, + 481, + 1231, + 481 + ], + "score": 0.88, + "latex": "t \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 913, + 1606, + 947, + 1606, + 947, + 1635, + 913, + 1635 + ], + "score": 0.88, + "latex": "h _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1606, + 472, + 1606, + 472, + 1635, + 441, + 1635 + ], + "score": 0.87, + "latex": "h _ { t }" + }, + { + "category_id": 13, + "poly": [ + 477, + 417, + 542, + 417, + 542, + 445, + 477, + 445 + ], + "score": 0.87, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 1082, + 571, + 1101, + 571, + 1101, + 602, + 1082, + 602 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1775, + 1280, + 1775, + 1280, + 1801, + 1243, + 1801 + ], + "score": 0.84, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 924, + 1545, + 951, + 1545, + 951, + 1571, + 924, + 1571 + ], + "score": 0.83, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 464, + 1805, + 501, + 1805, + 501, + 1831, + 464, + 1831 + ], + "score": 0.83, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 867, + 510, + 884, + 510, + 884, + 536, + 867, + 536 + ], + "score": 0.82, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 669, + 1545, + 692, + 1545, + 692, + 1572, + 669, + 1572 + ], + "score": 0.79, + "latex": "\\textbf { { J } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1515, + 322, + 1515, + 322, + 1541, + 298, + 1541 + ], + "score": 0.77, + "latex": "\\textbf { { J } }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 572, + 1370, + 572, + 1370, + 597, + 1357, + 597 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 771, + 546, + 786, + 546, + 786, + 567, + 771, + 567 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 578, + 381, + 600, + 381, + 600, + 408, + 578, + 408 + ], + "score": 0.42, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1046, + 381, + 1064, + 381, + 1064, + 407, + 1046, + 407 + ], + "score": 0.39, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 845, + 642, + 869, + 642, + 869, + 675, + 845, + 675 + ], + "score": 0.32, + "latex": "i f" + }, + { + "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": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1473.0, + 795.0, + 1473.0, + 795.0, + 1520.0, + 291.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1520.0, + 1134.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1511.0, + 297.0, + 1511.0, + 297.0, + 1549.0, + 294.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1549.0, + 323.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 297.0, + 1541.0, + 297.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1541.0, + 668.0, + 1541.0, + 668.0, + 1579.0, + 365.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1541.0, + 923.0, + 1541.0, + 923.0, + 1579.0, + 693.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1541.0, + 1405.0, + 1541.0, + 1405.0, + 1579.0, + 952.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1576.0, + 1110.0, + 1576.0, + 1110.0, + 1608.0, + 296.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1608.0, + 1169.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1600.0, + 440.0, + 1600.0, + 440.0, + 1641.0, + 292.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1600.0, + 912.0, + 1600.0, + 912.0, + 1641.0, + 473.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1641.0, + 948.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 297.0, + 1633.0, + 297.0, + 1673.0, + 294.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1633.0, + 698.0, + 1633.0, + 698.0, + 1673.0, + 483.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1633.0, + 1407.0, + 1633.0, + 1407.0, + 1673.0, + 758.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1666.0, + 627.0, + 1666.0, + 627.0, + 1702.0, + 295.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 1077.0, + 816.0, + 1077.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 851.0, + 1133.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 846.0, + 1405.0, + 846.0, + 1405.0, + 882.0, + 294.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 874.0, + 627.0, + 874.0, + 627.0, + 912.0, + 291.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 874.0, + 1405.0, + 874.0, + 1405.0, + 912.0, + 849.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 907.0, + 1404.0, + 907.0, + 1404.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 938.0, + 1405.0, + 938.0, + 1405.0, + 973.0, + 294.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 969.0, + 534.0, + 969.0, + 534.0, + 1005.0, + 292.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 1403.0, + 1712.0, + 1403.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1741.0, + 1261.0, + 1741.0, + 1261.0, + 1778.0, + 290.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1741.0, + 1409.0, + 1741.0, + 1409.0, + 1778.0, + 1400.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1771.0, + 511.0, + 1771.0, + 511.0, + 1810.0, + 291.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1771.0, + 1242.0, + 1771.0, + 1242.0, + 1810.0, + 661.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1810.0, + 1281.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1801.0, + 463.0, + 1801.0, + 463.0, + 1841.0, + 292.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1801.0, + 707.0, + 1801.0, + 707.0, + 1841.0, + 502.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 1404.0, + 1117.0, + 1404.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1147.0, + 1406.0, + 1147.0, + 1406.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1171.0, + 1406.0, + 1171.0, + 1406.0, + 1218.0, + 290.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 787.0, + 1206.0, + 787.0, + 1246.0, + 293.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1206.0, + 1402.0, + 1206.0, + 1402.0, + 1246.0, + 846.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 603.0, + 1239.0, + 603.0, + 1276.0, + 294.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 507.0, + 866.0, + 507.0, + 866.0, + 542.0, + 292.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 542.0, + 885.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 540.0, + 770.0, + 540.0, + 770.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 540.0, + 1405.0, + 540.0, + 1405.0, + 573.0, + 787.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 565.0, + 626.0, + 565.0, + 626.0, + 605.0, + 291.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 565.0, + 1081.0, + 565.0, + 1081.0, + 605.0, + 786.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 565.0, + 1160.0, + 565.0, + 1160.0, + 605.0, + 1102.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 565.0, + 1356.0, + 565.0, + 1356.0, + 605.0, + 1219.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 565.0, + 1406.0, + 565.0, + 1406.0, + 605.0, + 1371.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 601.0, + 430.0, + 601.0, + 430.0, + 634.0, + 293.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 378.0, + 577.0, + 378.0, + 577.0, + 415.0, + 294.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 378.0, + 703.0, + 378.0, + 703.0, + 415.0, + 601.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 378.0, + 1045.0, + 378.0, + 1045.0, + 415.0, + 759.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 378.0, + 1315.0, + 378.0, + 1315.0, + 415.0, + 1065.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 378.0, + 1405.0, + 378.0, + 1405.0, + 415.0, + 1374.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 476.0, + 415.0, + 476.0, + 451.0, + 294.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 415.0, + 702.0, + 415.0, + 702.0, + 451.0, + 543.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 415.0, + 1087.0, + 415.0, + 1087.0, + 451.0, + 772.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 415.0, + 1405.0, + 415.0, + 1405.0, + 451.0, + 1142.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 447.0, + 408.0, + 447.0, + 408.0, + 488.0, + 293.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 447.0, + 582.0, + 447.0, + 582.0, + 488.0, + 466.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 447.0, + 945.0, + 447.0, + 945.0, + 488.0, + 794.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 447.0, + 1230.0, + 447.0, + 1230.0, + 488.0, + 1147.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 447.0, + 1305.0, + 447.0, + 1305.0, + 488.0, + 1295.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 258.0, + 1203.0, + 258.0, + 1203.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1078.0, + 290.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1070.0, + 930.0, + 1070.0, + 930.0, + 1105.0, + 294.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 1403.0, + 305.0, + 1403.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 336.0, + 982.0, + 336.0, + 982.0, + 373.0, + 293.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 723.0, + 1345.0, + 723.0, + 1387.0, + 293.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1345.0, + 1132.0, + 1345.0, + 1132.0, + 1387.0, + 970.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1900.0, + 1307.0, + 1900.0, + 1307.0, + 1941.0, + 292.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 635.0, + 844.0, + 635.0, + 844.0, + 680.0, + 293.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1949.0, + 623.0, + 1949.0, + 623.0, + 1985.0, + 297.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 754.0, + 371.0, + 754.0, + 371.0, + 796.0, + 295.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 754.0, + 918.0, + 754.0, + 918.0, + 796.0, + 438.0, + 796.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 364, + 1404, + 364, + 1404, + 552, + 297, + 552 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1801, + 1404, + 1801, + 1404, + 1958, + 297, + 1958 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1340, + 1404, + 1340, + 1404, + 1465, + 297, + 1465 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 806, + 1404, + 806, + 1404, + 934, + 297, + 934 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1614, + 1404, + 1614, + 1404, + 1709, + 298, + 1709 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 701, + 1405, + 701, + 1405, + 796, + 297, + 796 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 303, + 1027, + 1402, + 1027, + 1402, + 1123, + 303, + 1123 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1403, + 227, + 1403, + 294, + 292, + 294 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 565, + 1398, + 565, + 1398, + 629, + 296, + 629 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1252, + 1405, + 1252, + 1405, + 1316, + 298, + 1316 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 1479, + 1404, + 1479, + 1404, + 1543, + 295, + 1543 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1401, + 1971, + 1401, + 2035, + 296, + 2035 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 692, + 1191, + 1008, + 1191, + 1008, + 1242, + 692, + 1242 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 524, + 642, + 1171, + 642, + 1171, + 685, + 524, + 685 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 297, + 1130, + 1400, + 1130, + 1400, + 1192, + 297, + 1192 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 490, + 1558, + 1204, + 1558, + 1204, + 1601, + 490, + 1601 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 449, + 308, + 1250, + 308, + 1250, + 351, + 449, + 351 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 299, + 1745, + 617, + 1745, + 617, + 1777, + 299, + 1777 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1564, + 1399, + 1564, + 1399, + 1596, + 1352, + 1596 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1194, + 1399, + 1194, + 1399, + 1225, + 1352, + 1225 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 648, + 1399, + 648, + 1399, + 678, + 1352, + 678 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 315, + 1400, + 315, + 1400, + 345, + 1366, + 345 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.735 + }, + { + "category_id": 0, + "poly": [ + 299, + 970, + 1059, + 970, + 1059, + 1003, + 299, + 1003 + ], + "score": 0.564 + }, + { + "category_id": 1, + "poly": [ + 299, + 970, + 1059, + 970, + 1059, + 1003, + 299, + 1003 + ], + "score": 0.419 + }, + { + "category_id": 13, + "poly": [ + 1241, + 228, + 1374, + 228, + 1374, + 265, + 1241, + 265 + ], + "score": 0.93, + "latex": "W _ { h } - W _ { h } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 703, + 808, + 839, + 808, + 839, + 845, + 703, + 845 + ], + "score": 0.93, + "latex": "W _ { h } \\mathrm { ~ - ~ } W _ { h } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 750, + 1403, + 906, + 1403, + 906, + 1437, + 750, + 1437 + ], + "score": 0.93, + "latex": "\\left| 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) \\right|" + }, + { + "category_id": 13, + "poly": [ + 950, + 810, + 1087, + 810, + 1087, + 844, + 950, + 844 + ], + "score": 0.93, + "latex": "n ( n - 1 ) / 2" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1373, + 1180, + 1373, + 1180, + 1405, + 1105, + 1405 + ], + "score": 0.93, + "latex": "\\lambda _ { i } ( J _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 691, + 1190, + 1010, + 1190, + 1010, + 1244, + 691, + 1244 + ], + "score": 0.92, + "latex": "\\operatorname* { m a x } _ { i = 1 , 2 , \\ldots , n } | 1 + \\epsilon \\lambda _ { i } ( J _ { t } ) | \\leq 1 ," + }, + { + "category_id": 13, + "poly": [ + 840, + 703, + 961, + 703, + 961, + 733, + 840, + 733 + ], + "score": 0.92, + "latex": "\\pmb { x } _ { t } \\in \\mathbb { R } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 231, + 1114, + 231, + 1114, + 262, + 1010, + 262 + ], + "score": 0.92, + "latex": "b _ { h } \\in \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 770, + 366, + 1184, + 366, + 1184, + 401, + 770, + 401 + ], + "score": 0.92, + "latex": "R e ( \\lambda _ { i } ( \\pmb { J } ( t ) ) ) = 0 , \\forall i = 1 , 2 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 509, + 733, + 622, + 733, + 622, + 764, + 509, + 764 + ], + "score": 0.92, + "latex": "b _ { h } \\in \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1617, + 881, + 1617, + 881, + 1647, + 802, + 1647 + ], + "score": 0.92, + "latex": "\\gamma > 0" + }, + { + "category_id": 13, + "poly": [ + 1080, + 459, + 1134, + 459, + 1134, + 492, + 1080, + 492 + ], + "score": 0.92, + "latex": "\\mathbf { } J ( t )" + }, + { + "category_id": 13, + "poly": [ + 1233, + 702, + 1393, + 702, + 1393, + 734, + 1233, + 734 + ], + "score": 0.91, + "latex": "\\boldsymbol { W } _ { h } ~ \\in ~ \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 676, + 1835, + 736, + 1835, + 736, + 1867, + 676, + 1867 + ], + "score": 0.91, + "latex": "h _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 814, + 230, + 958, + 230, + 958, + 261, + 814, + 261 + ], + "score": 0.91, + "latex": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }" + }, + { + "category_id": 13, + "poly": [ + 298, + 733, + 451, + 733, + 451, + 764, + 298, + 764 + ], + "score": 0.91, + "latex": "V _ { h } \\in \\mathbb { R } ^ { n \\times m }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1482, + 1339, + 1482, + 1339, + 1513, + 1264, + 1513 + ], + "score": 0.9, + "latex": "\\gamma > 0" + }, + { + "category_id": 13, + "poly": [ + 375, + 703, + 490, + 703, + 490, + 732, + 375, + 732 + ], + "score": 0.9, + "latex": "\\ b { h _ { t } } ~ \\in ~ \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 372, + 230, + 497, + 230, + 497, + 264, + 372, + 264 + ], + "score": 0.9, + "latex": "\\ b { h } ( t ) \\in \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 734, + 1114, + 734, + 1114, + 762, + 1035, + 762 + ], + "score": 0.9, + "latex": "\\epsilon > 0" + }, + { + "category_id": 14, + "poly": [ + 526, + 641, + 1170, + 641, + 1170, + 686, + 526, + 686 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\boldsymbol { h } _ { t } = \\boldsymbol { h } _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } ) h _ { t - 1 } + V _ { h } \\boldsymbol { x } _ { t } + b _ { h } \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 592, + 841, + 639, + 841, + 639, + 872, + 592, + 872 + ], + "score": 0.9, + "latex": "W _ { h }" + }, + { + "category_id": 14, + "poly": [ + 494, + 1558, + 1201, + 1558, + 1201, + 1602, + 494, + 1602 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } \\big ( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\big ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 448, + 307, + 1249, + 307, + 1249, + 353, + 448, + 353 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\boldsymbol J ( t ) = \\mathrm { d i a g } \\left[ \\operatorname { t a n h } ^ { \\prime } \\left( ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) \\boldsymbol h ( t ) + \\boldsymbol V _ { h } \\boldsymbol x ( t ) + \\boldsymbol b \\right) \\right] ( \\boldsymbol W _ { h } - \\boldsymbol W _ { h } ^ { T } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 652, + 229, + 801, + 229, + 801, + 262, + 652, + 262 + ], + "score": 0.88, + "latex": "\\boldsymbol { W _ { h } } \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 440, + 1285, + 470, + 1285, + 470, + 1315, + 440, + 1315 + ], + "score": 0.87, + "latex": "\\boldsymbol { h } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1255, + 1148, + 1255, + 1148, + 1284, + 1119, + 1284 + ], + "score": 0.87, + "latex": "\\scriptstyle { J _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 851, + 1839, + 883, + 1839, + 883, + 1865, + 851, + 1865 + ], + "score": 0.86, + "latex": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 509, + 230, + 638, + 230, + 638, + 264, + 509, + 264 + ], + "score": 0.83, + "latex": "\\pmb { x } ( t ) \\in \\mathbb { R } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1254, + 409, + 1254, + 409, + 1287, + 372, + 1287 + ], + "score": 0.81, + "latex": "| \\cdot |" + }, + { + "category_id": 13, + "poly": [ + 374, + 1617, + 394, + 1617, + 394, + 1643, + 374, + 1643 + ], + "score": 0.77, + "latex": "\\pmb { I }" + }, + { + "category_id": 13, + "poly": [ + 728, + 1621, + 749, + 1621, + 749, + 1643, + 728, + 1643 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1302, + 428, + 1359, + 428, + 1359, + 462, + 1302, + 462 + ], + "score": 0.71, + "latex": "[ 0 , { \\bar { 1 } } ]" + }, + { + "category_id": 13, + "poly": [ + 1201, + 705, + 1215, + 705, + 1215, + 730, + 1201, + 730 + ], + "score": 0.64, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 810, + 706, + 824, + 706, + 824, + 730, + 810, + 730 + ], + "score": 0.63, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 371, + 1164, + 394, + 1164, + 394, + 1196, + 371, + 1196 + ], + "score": 0.27, + "latex": "i f" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1745.0, + 620.0, + 1745.0, + 620.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1060.0, + 970.0, + 1060.0, + 1005.0, + 295.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 367.0, + 769.0, + 367.0, + 769.0, + 403.0, + 296.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 367.0, + 1406.0, + 367.0, + 1406.0, + 403.0, + 1185.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 398.0, + 1404.0, + 398.0, + 1404.0, + 432.0, + 295.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 1301.0, + 427.0, + 1301.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 463.0, + 1360.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 459.0, + 1079.0, + 459.0, + 1079.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 495.0, + 1135.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 521.0, + 1306.0, + 521.0, + 1306.0, + 553.0, + 296.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1837.0, + 296.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1831.0, + 675.0, + 1831.0, + 675.0, + 1870.0, + 292.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1831.0, + 850.0, + 1831.0, + 850.0, + 1870.0, + 737.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1870.0, + 884.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1862.0, + 1407.0, + 1862.0, + 1407.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1893.0, + 1407.0, + 1893.0, + 1407.0, + 1930.0, + 291.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1925.0, + 663.0, + 1925.0, + 663.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 1404.0, + 1343.0, + 1404.0, + 1376.0, + 295.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1104.0, + 1373.0, + 1104.0, + 1406.0, + 294.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1373.0, + 1406.0, + 1373.0, + 1406.0, + 1406.0, + 1181.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1401.0, + 749.0, + 1401.0, + 749.0, + 1439.0, + 292.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1401.0, + 1404.0, + 1401.0, + 1404.0, + 1439.0, + 907.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 1255.0, + 1434.0, + 1255.0, + 1467.0, + 294.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 807.0, + 702.0, + 807.0, + 702.0, + 847.0, + 292.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 807.0, + 949.0, + 807.0, + 949.0, + 847.0, + 840.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 807.0, + 1406.0, + 807.0, + 1406.0, + 847.0, + 1088.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 591.0, + 840.0, + 591.0, + 874.0, + 295.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 840.0, + 1402.0, + 840.0, + 1402.0, + 874.0, + 640.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 872.0, + 1406.0, + 872.0, + 1406.0, + 906.0, + 292.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 902.0, + 1321.0, + 902.0, + 1321.0, + 934.0, + 292.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1615.0, + 373.0, + 1615.0, + 373.0, + 1649.0, + 296.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1615.0, + 727.0, + 1615.0, + 727.0, + 1649.0, + 395.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1615.0, + 801.0, + 1615.0, + 801.0, + 1649.0, + 750.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1615.0, + 1402.0, + 1615.0, + 1402.0, + 1649.0, + 882.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1646.0, + 1405.0, + 1646.0, + 1405.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1301.0, + 1677.0, + 1301.0, + 1709.0, + 293.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 696.0, + 374.0, + 696.0, + 374.0, + 736.0, + 292.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 696.0, + 809.0, + 696.0, + 809.0, + 736.0, + 491.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 696.0, + 839.0, + 696.0, + 839.0, + 736.0, + 825.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 696.0, + 1200.0, + 696.0, + 1200.0, + 736.0, + 962.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 696.0, + 1232.0, + 696.0, + 1232.0, + 736.0, + 1216.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 696.0, + 1402.0, + 696.0, + 1402.0, + 736.0, + 1394.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 297.0, + 727.0, + 297.0, + 768.0, + 294.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 727.0, + 508.0, + 727.0, + 508.0, + 768.0, + 452.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 727.0, + 1034.0, + 727.0, + 1034.0, + 768.0, + 623.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 727.0, + 1408.0, + 727.0, + 1408.0, + 768.0, + 1115.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 567.0, + 764.0, + 567.0, + 798.0, + 293.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1030.0, + 1403.0, + 1030.0, + 1403.0, + 1060.0, + 299.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1060.0, + 1405.0, + 1060.0, + 1405.0, + 1091.0, + 299.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1090.0, + 552.0, + 1090.0, + 552.0, + 1125.0, + 297.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 371.0, + 221.0, + 371.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 221.0, + 508.0, + 221.0, + 508.0, + 268.0, + 498.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 221.0, + 651.0, + 221.0, + 651.0, + 268.0, + 639.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 221.0, + 813.0, + 221.0, + 813.0, + 268.0, + 802.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 221.0, + 1009.0, + 221.0, + 1009.0, + 268.0, + 959.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 221.0, + 1240.0, + 221.0, + 1240.0, + 268.0, + 1115.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 221.0, + 1408.0, + 221.0, + 1408.0, + 268.0, + 1375.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 1086.0, + 259.0, + 1086.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 566.0, + 1403.0, + 566.0, + 1403.0, + 602.0, + 295.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 819.0, + 598.0, + 819.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 371.0, + 1249.0, + 371.0, + 1288.0, + 293.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1249.0, + 1118.0, + 1249.0, + 1118.0, + 1288.0, + 410.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1249.0, + 1406.0, + 1249.0, + 1406.0, + 1288.0, + 1149.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 439.0, + 1283.0, + 439.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1283.0, + 482.0, + 1283.0, + 482.0, + 1320.0, + 471.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1479.0, + 1263.0, + 1479.0, + 1263.0, + 1515.0, + 297.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1515.0, + 1340.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1512.0, + 1099.0, + 1512.0, + 1099.0, + 1544.0, + 297.0, + 1544.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, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1169.0, + 293.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1158.0, + 370.0, + 1158.0, + 370.0, + 1200.0, + 291.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1158.0, + 401.0, + 1158.0, + 401.0, + 1200.0, + 395.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1060.0, + 970.0, + 1060.0, + 1005.0, + 295.0, + 1005.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 453, + 1406, + 453, + 1406, + 640, + 297, + 640 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1740, + 1404, + 1740, + 1404, + 1896, + 297, + 1896 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1910, + 1403, + 1910, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 1578, + 1404, + 1578, + 1404, + 1672, + 296, + 1672 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1403, + 228, + 1403, + 294, + 294, + 294 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 471, + 306, + 1229, + 306, + 1229, + 395, + 471, + 395 + ], + "score": 0.94 + }, + { + "category_id": 3, + "poly": [ + 296, + 777, + 1403, + 777, + 1403, + 1450, + 296, + 1450 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 302, + 407, + 1141, + 407, + 1141, + 441, + 302, + 441 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.916 + }, + { + "category_id": 4, + "poly": [ + 297, + 1474, + 1403, + 1474, + 1403, + 1538, + 297, + 1538 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 357, + 1400, + 357, + 1400, + 389, + 1352, + 389 + ], + "score": 0.889 + }, + { + "category_id": 8, + "poly": [ + 412, + 1689, + 1279, + 1689, + 1279, + 1726, + 412, + 1726 + ], + "score": 0.873 + }, + { + "category_id": 0, + "poly": [ + 298, + 686, + 534, + 686, + 534, + 720, + 298, + 720 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.789 + }, + { + "category_id": 14, + "poly": [ + 471, + 303, + 1226, + 303, + 1226, + 399, + 471, + 399 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { z _ { t } = \\sigma \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { z } x _ { t } + b _ { z } \\right) , } \\\\ & { h _ { t } = h _ { t - 1 } + \\epsilon z _ { t } \\circ \\operatorname { t a n h } \\left( ( W _ { h } - W _ { h } ^ { T } - \\gamma I ) h _ { t - 1 } + V _ { h } x _ { t } + b _ { h } \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 360, + 1741, + 467, + 1741, + 467, + 1773, + 360, + 1773 + ], + "score": 0.92, + "latex": "\\boldsymbol { h } _ { t } \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 522, + 1742, + 662, + 1742, + 662, + 1773, + 522, + 1773 + ], + "score": 0.91, + "latex": "1 \\leq t \\leq T" + }, + { + "category_id": 13, + "poly": [ + 643, + 1865, + 731, + 1865, + 731, + 1893, + 643, + 1893 + ], + "score": 0.89, + "latex": "T = 5 0" + }, + { + "category_id": 13, + "poly": [ + 509, + 1690, + 747, + 1690, + 747, + 1725, + 509, + 1725 + ], + "score": 0.86, + "latex": "h _ { t } = \\operatorname { t a n h } ( W h _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 409, + 1805, + 441, + 1805, + 441, + 1834, + 409, + 1834 + ], + "score": 0.86, + "latex": "h _ { t }" + }, + { + "category_id": 13, + "poly": [ + 820, + 237, + 848, + 237, + 848, + 261, + 820, + 261 + ], + "score": 0.85, + "latex": "{ \\boldsymbol { z } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 454, + 460, + 484, + 460, + 484, + 486, + 454, + 486 + ], + "score": 0.84, + "latex": "{ \\boldsymbol { z } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1741, + 1400, + 1741, + 1400, + 1776, + 1155, + 1776 + ], + "score": 0.79, + "latex": "( 0 , 0 . 5 ) , ( - 0 . 5 , - 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 372, + 415, + 392, + 415, + 392, + 436, + 372, + 436 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 769, + 415, + 789, + 415, + 789, + 435, + 769, + 435 + ], + "score": 0.72, + "latex": "\\circ" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1079, + 1098, + 1079, + 1098, + 1105, + 1060, + 1105 + ], + "score": 0.71, + "latex": "{ } = 0" + }, + { + "category_id": 13, + "poly": [ + 1339, + 1079, + 1376, + 1079, + 1376, + 1105, + 1339, + 1105 + ], + "score": 0.67, + "latex": "= 1" + }, + { + "category_id": 13, + "poly": [ + 812, + 1689, + 1274, + 1689, + 1274, + 1725, + 812, + 1725 + ], + "score": 0.67, + "latex": "\\mathrm { f e e d b a c k : } \\ h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ." + }, + { + "category_id": 13, + "poly": [ + 347, + 1775, + 486, + 1775, + 486, + 1805, + 347, + 1805 + ], + "score": 0.65, + "latex": "( 0 . 5 , - 0 . 7 5 )" + }, + { + "category_id": 13, + "poly": [ + 612, + 1835, + 648, + 1835, + 648, + 1862, + 612, + 1862 + ], + "score": 0.48, + "latex": "W" + }, + { + "category_id": 14, + "poly": [ + 561, + 1689, + 1276, + 1689, + 1276, + 1726, + 561, + 1726 + ], + "score": 0.45, + "latex": "\\operatorname { \\mathrm { = \\ t a n h } } ( W h _ { t - 1 } ) , \\qquad { \\mathrm { f e e d b a c k } } ; h _ { t } = h _ { t - 1 } + \\epsilon \\operatorname { t a n h } ( W h _ { t - 1 } ) ." + }, + { + "category_id": 15, + "poly": [ + 315.0, + 785.0, + 348.0, + 785.0, + 348.0, + 810.0, + 315.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 791.0, + 535.0, + 791.0, + 535.0, + 805.0, + 519.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 785.0, + 628.0, + 785.0, + 628.0, + 810.0, + 593.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 785.0, + 907.0, + 785.0, + 907.0, + 810.0, + 873.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 785.0, + 1188.0, + 785.0, + 1188.0, + 810.0, + 1153.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 808.0, + 470.0, + 808.0, + 470.0, + 819.0, + 460.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 827.0, + 349.0, + 827.0, + 349.0, + 850.0, + 314.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 830.0, + 456.0, + 830.0, + 456.0, + 848.0, + 440.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 826.0, + 629.0, + 826.0, + 629.0, + 850.0, + 593.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 831.0, + 734.0, + 831.0, + 734.0, + 848.0, + 720.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 827.0, + 907.0, + 827.0, + 907.0, + 850.0, + 872.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 827.0, + 1188.0, + 827.0, + 1188.0, + 850.0, + 1151.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 868.0, + 349.0, + 868.0, + 349.0, + 892.0, + 314.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 868.0, + 628.0, + 868.0, + 628.0, + 892.0, + 593.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 868.0, + 907.0, + 868.0, + 907.0, + 892.0, + 872.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 868.0, + 1188.0, + 868.0, + 1188.0, + 892.0, + 1151.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 910.0, + 348.0, + 910.0, + 348.0, + 933.0, + 305.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 913.0, + 414.0, + 913.0, + 414.0, + 930.0, + 398.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 910.0, + 627.0, + 910.0, + 627.0, + 933.0, + 587.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 910.0, + 906.0, + 910.0, + 906.0, + 933.0, + 865.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 913.0, + 974.0, + 913.0, + 974.0, + 929.0, + 958.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 910.0, + 1186.0, + 910.0, + 1186.0, + 933.0, + 1145.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 916.0, + 1249.0, + 916.0, + 1249.0, + 927.0, + 1239.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 933.0, + 777.0, + 933.0, + 777.0, + 949.0, + 761.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 934.0, + 1056.0, + 934.0, + 1056.0, + 949.0, + 1041.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 951.0, + 348.0, + 951.0, + 348.0, + 974.0, + 305.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 952.0, + 388.0, + 952.0, + 388.0, + 970.0, + 360.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 949.0, + 629.0, + 949.0, + 629.0, + 976.0, + 585.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 952.0, + 906.0, + 952.0, + 906.0, + 975.0, + 865.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 952.0, + 1188.0, + 952.0, + 1188.0, + 975.0, + 1145.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 976.0, + 549.0, + 976.0, + 549.0, + 1005.0, + 348.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 979.0, + 746.0, + 979.0, + 746.0, + 1003.0, + 626.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 979.0, + 827.0, + 979.0, + 827.0, + 1004.0, + 750.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 977.0, + 1027.0, + 977.0, + 1027.0, + 1005.0, + 904.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 979.0, + 1066.0, + 979.0, + 1066.0, + 1003.0, + 1031.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 979.0, + 1106.0, + 979.0, + 1106.0, + 1003.0, + 1073.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 979.0, + 1302.0, + 979.0, + 1302.0, + 1004.0, + 1184.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 980.0, + 1344.0, + 980.0, + 1344.0, + 1003.0, + 1310.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 980.0, + 1384.0, + 980.0, + 1384.0, + 1003.0, + 1352.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 1404.0, + 1018.0, + 1404.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1047.0, + 541.0, + 1047.0, + 541.0, + 1079.0, + 296.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1049.0, + 814.0, + 1049.0, + 814.0, + 1080.0, + 573.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1046.0, + 1403.0, + 1046.0, + 1403.0, + 1080.0, + 853.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1077.0, + 1059.0, + 1077.0, + 1059.0, + 1108.0, + 855.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1077.0, + 1338.0, + 1077.0, + 1338.0, + 1108.0, + 1099.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1077.0, + 1396.0, + 1077.0, + 1396.0, + 1108.0, + 1377.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1124.0, + 347.0, + 1124.0, + 347.0, + 1147.0, + 315.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1125.0, + 624.0, + 1125.0, + 624.0, + 1144.0, + 596.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1121.0, + 924.0, + 1121.0, + 924.0, + 1147.0, + 875.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1124.0, + 1182.0, + 1124.0, + 1182.0, + 1145.0, + 1150.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1141.0, + 1198.0, + 1141.0, + 1198.0, + 1150.0, + 1188.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1166.0, + 347.0, + 1166.0, + 347.0, + 1189.0, + 314.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1166.0, + 626.0, + 1166.0, + 626.0, + 1189.0, + 593.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1166.0, + 905.0, + 1166.0, + 905.0, + 1189.0, + 873.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1166.0, + 1184.0, + 1166.0, + 1184.0, + 1189.0, + 1153.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1208.0, + 348.0, + 1208.0, + 348.0, + 1232.0, + 314.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1208.0, + 627.0, + 1208.0, + 627.0, + 1232.0, + 593.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1208.0, + 906.0, + 1208.0, + 906.0, + 1232.0, + 873.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1206.0, + 925.0, + 1206.0, + 925.0, + 1224.0, + 909.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1202.0, + 1072.0, + 1202.0, + 1072.0, + 1213.0, + 1063.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1200.0, + 1086.0, + 1200.0, + 1086.0, + 1218.0, + 1077.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1202.0, + 1103.0, + 1202.0, + 1103.0, + 1214.0, + 1092.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1208.0, + 1185.0, + 1208.0, + 1185.0, + 1232.0, + 1153.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1192.0, + 1217.0, + 1192.0, + 1217.0, + 1237.0, + 1188.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1193.0, + 1236.0, + 1193.0, + 1236.0, + 1237.0, + 1223.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1202.0, + 1370.0, + 1202.0, + 1370.0, + 1213.0, + 1360.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1222.0, + 922.0, + 1222.0, + 922.0, + 1238.0, + 912.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1219.0, + 1087.0, + 1219.0, + 1087.0, + 1230.0, + 1078.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1225.0, + 1202.0, + 1225.0, + 1202.0, + 1238.0, + 1190.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1250.0, + 347.0, + 1250.0, + 347.0, + 1272.0, + 306.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1250.0, + 624.0, + 1250.0, + 624.0, + 1272.0, + 585.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1250.0, + 905.0, + 1250.0, + 905.0, + 1272.0, + 865.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1250.0, + 1184.0, + 1250.0, + 1184.0, + 1272.0, + 1142.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1293.0, + 347.0, + 1293.0, + 347.0, + 1314.0, + 309.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1293.0, + 626.0, + 1293.0, + 626.0, + 1314.0, + 587.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1293.0, + 905.0, + 1293.0, + 905.0, + 1314.0, + 868.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1293.0, + 1185.0, + 1293.0, + 1185.0, + 1316.0, + 1145.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1328.0, + 384.0, + 1328.0, + 384.0, + 1342.0, + 355.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1326.0, + 427.0, + 1326.0, + 427.0, + 1344.0, + 392.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1326.0, + 465.0, + 1326.0, + 465.0, + 1345.0, + 435.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1326.0, + 506.0, + 1326.0, + 506.0, + 1345.0, + 477.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1326.0, + 549.0, + 1326.0, + 549.0, + 1345.0, + 519.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1326.0, + 667.0, + 1326.0, + 667.0, + 1342.0, + 633.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1326.0, + 707.0, + 1326.0, + 707.0, + 1344.0, + 668.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1326.0, + 744.0, + 1326.0, + 744.0, + 1345.0, + 714.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1326.0, + 787.0, + 1326.0, + 787.0, + 1345.0, + 756.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1326.0, + 828.0, + 1326.0, + 828.0, + 1345.0, + 799.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1326.0, + 945.0, + 1326.0, + 945.0, + 1344.0, + 914.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1326.0, + 987.0, + 1326.0, + 987.0, + 1344.0, + 948.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1326.0, + 1024.0, + 1326.0, + 1024.0, + 1345.0, + 993.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1326.0, + 1066.0, + 1326.0, + 1066.0, + 1345.0, + 1036.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1326.0, + 1107.0, + 1326.0, + 1107.0, + 1345.0, + 1077.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1326.0, + 1266.0, + 1326.0, + 1266.0, + 1344.0, + 1191.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1326.0, + 1302.0, + 1326.0, + 1302.0, + 1345.0, + 1272.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1326.0, + 1345.0, + 1326.0, + 1345.0, + 1345.0, + 1315.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1326.0, + 1386.0, + 1326.0, + 1386.0, + 1345.0, + 1357.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1361.0, + 1403.0, + 1361.0, + 1403.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 1406.0, + 1388.0, + 1406.0, + 1428.0, + 295.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1424.0, + 627.0, + 1424.0, + 627.0, + 1450.0, + 574.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1418.0, + 907.0, + 1418.0, + 907.0, + 1454.0, + 852.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1419.0, + 1321.0, + 1419.0, + 1321.0, + 1452.0, + 1132.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 893.5, + 721.0, + 893.5, + 721.0, + 903.5, + 694.0, + 903.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 908.5, + 711.0, + 908.5, + 711.0, + 921.5, + 672.0, + 921.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1245.5, + 920.0, + 1245.5, + 920.0, + 1256.0, + 911.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "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": [ + 292.0, + 1470.0, + 1404.0, + 1470.0, + 1404.0, + 1512.0, + 292.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1505.0, + 408.0, + 1505.0, + 408.0, + 1542.0, + 292.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 681.0, + 540.0, + 681.0, + 540.0, + 727.0, + 291.0, + 727.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": [ + 294.0, + 452.0, + 453.0, + 452.0, + 453.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 452.0, + 1406.0, + 452.0, + 1406.0, + 489.0, + 485.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 520.0, + 297.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 517.0, + 1406.0, + 517.0, + 1406.0, + 549.0, + 296.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 1406.0, + 575.0, + 1406.0, + 612.0, + 294.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 608.0, + 681.0, + 608.0, + 681.0, + 640.0, + 296.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 359.0, + 1741.0, + 359.0, + 1778.0, + 295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1741.0, + 521.0, + 1741.0, + 521.0, + 1778.0, + 468.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1741.0, + 1154.0, + 1741.0, + 1154.0, + 1778.0, + 663.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1778.0, + 1401.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1773.0, + 346.0, + 1773.0, + 346.0, + 1810.0, + 295.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1810.0, + 487.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1799.0, + 408.0, + 1799.0, + 408.0, + 1841.0, + 294.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1799.0, + 1405.0, + 1799.0, + 1405.0, + 1841.0, + 442.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1830.0, + 611.0, + 1830.0, + 611.0, + 1873.0, + 292.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1830.0, + 1404.0, + 1830.0, + 1404.0, + 1873.0, + 649.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1865.0, + 642.0, + 1865.0, + 642.0, + 1898.0, + 296.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1865.0, + 740.0, + 1865.0, + 740.0, + 1898.0, + 732.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1613.0, + 295.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1609.0, + 1404.0, + 1609.0, + 1404.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1641.0, + 792.0, + 1641.0, + 792.0, + 1675.0, + 295.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 819.0, + 229.0, + 819.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 849.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 262.0, + 376.0, + 262.0, + 376.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 404.0, + 371.0, + 404.0, + 371.0, + 445.0, + 296.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 404.0, + 768.0, + 404.0, + 768.0, + 445.0, + 393.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 404.0, + 1142.0, + 404.0, + 1142.0, + 445.0, + 790.0, + 445.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 662, + 1404, + 662, + 1404, + 1063, + 297, + 1063 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1313, + 1405, + 1313, + 1405, + 1528, + 298, + 1528 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1621, + 1404, + 1621, + 1404, + 1928, + 297, + 1928 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 416, + 298, + 416 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 428, + 1403, + 428, + 1403, + 522, + 299, + 522 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1078, + 1403, + 1078, + 1403, + 1200, + 299, + 1200 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1403, + 1949, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 346, + 533, + 1348, + 533, + 1348, + 609, + 346, + 609 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 299, + 617, + 1396, + 617, + 1396, + 651, + 299, + 651 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1245, + 557, + 1245, + 557, + 1280, + 300, + 1280 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 1564, + 661, + 1564, + 661, + 1595, + 300, + 1595 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.688 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.181 + }, + { + "category_id": 13, + "poly": [ + 784, + 664, + 1078, + 664, + 1078, + 699, + 784, + 699 + ], + "score": 0.93, + "latex": "\\lambda _ { 1 } ( W _ { + } ) = \\lambda _ { 2 } ( W _ { + } ) = 2" + }, + { + "category_id": 14, + "poly": [ + 344, + 532, + 1353, + 532, + 1353, + 610, + 344, + 610 + ], + "score": 0.93, + "latex": "W _ { + } = \\left( \\begin{array} { c c } { { 2 } } & { { - 2 } } \\\\ { { 0 } } & { { 2 } } \\end{array} \\right) , W _ { - } = \\left( \\begin{array} { c c } { { - 2 } } & { { 2 } } \\\\ { { 0 } } & { { - 2 } } \\end{array} \\right) , W _ { 0 } = \\left( \\begin{array} { c c } { { 0 } } & { { - 2 } } \\\\ { { 2 } } & { { 0 } } \\end{array} \\right) , W _ { \\mathrm { d i f f } } = \\left( \\begin{array} { c c } { { - 0 . 1 5 } } & { { - 2 } } \\\\ { { 2 } } & { { - 0 . 1 5 } } \\end{array} \\right) ." + }, + { + "category_id": 13, + "poly": [ + 297, + 381, + 578, + 381, + 578, + 417, + 297, + 417 + ], + "score": 0.91, + "latex": "0 \\leq \\mathrm { t a n h } ^ { \\prime } ( W h _ { t - 1 } ) \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 1130, + 664, + 1405, + 664, + 1405, + 699, + 1130, + 699 + ], + "score": 0.9, + "latex": "\\lambda _ { 1 } ( { \\cal W } _ { - } ) = \\lambda _ { 2 } ( { \\cal W } _ { - } ) =" + }, + { + "category_id": 13, + "poly": [ + 590, + 1684, + 681, + 1684, + 681, + 1713, + 590, + 1713 + ], + "score": 0.9, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1746, + 1101, + 1746, + 1101, + 1773, + 1013, + 1773 + ], + "score": 0.9, + "latex": "m = 1" + }, + { + "category_id": 13, + "poly": [ + 767, + 941, + 874, + 941, + 874, + 971, + 767, + 971 + ], + "score": 0.9, + "latex": "\\gamma = 0 . 1 5" + }, + { + "category_id": 13, + "poly": [ + 865, + 1375, + 904, + 1375, + 904, + 1406, + 865, + 1406 + ], + "score": 0.89, + "latex": "h _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 941, + 1192, + 941, + 1192, + 970, + 1125, + 970 + ], + "score": 0.89, + "latex": "W _ { \\mathrm { d i f f } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1775, + 405, + 1775, + 405, + 1803, + 297, + 1803 + ], + "score": 0.89, + "latex": "T = 7 8 4" + }, + { + "category_id": 13, + "poly": [ + 1127, + 727, + 1172, + 727, + 1172, + 758, + 1127, + 758 + ], + "score": 0.88, + "latex": "W _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 738, + 757, + 926, + 757, + 926, + 791, + 738, + 791 + ], + "score": 0.88, + "latex": "\\lambda _ { 2 } ( \\mathbf { W } _ { 0 } ) = - 2 i" + }, + { + "category_id": 13, + "poly": [ + 1303, + 619, + 1389, + 619, + 1389, + 648, + 1303, + 648 + ], + "score": 0.88, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 556, + 757, + 723, + 757, + 723, + 790, + 556, + 790 + ], + "score": 0.86, + "latex": "\\lambda _ { 1 } ( W _ { 0 } ) = 2 i" + }, + { + "category_id": 13, + "poly": [ + 297, + 970, + 587, + 970, + 587, + 1004, + 297, + 1004 + ], + "score": 0.85, + "latex": "\\lambda _ { 1 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 + 2 i" + }, + { + "category_id": 13, + "poly": [ + 297, + 1977, + 366, + 1977, + 366, + 2005, + 297, + 2005 + ], + "score": 0.85, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1950, + 1238, + 1950, + 1238, + 1976, + 1170, + 1976 + ], + "score": 0.85, + "latex": "9 8 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1318, + 2005, + 1387, + 2005, + 1387, + 2032, + 1318, + 2032 + ], + "score": 0.83, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1218, + 2006, + 1287, + 2006, + 1287, + 2032, + 1218, + 2032 + ], + "score": 0.81, + "latex": "9 2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 598, + 970, + 886, + 970, + 886, + 1004, + 598, + 1004 + ], + "score": 0.79, + "latex": "\\lambda _ { 2 } ( W _ { \\mathrm { d i f f } } ) = - 0 . 1 5 - 2 i" + }, + { + "category_id": 13, + "poly": [ + 1167, + 914, + 1189, + 914, + 1189, + 941, + 1167, + 941 + ], + "score": 0.78, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 298, + 697, + 336, + 697, + 336, + 727, + 298, + 727 + ], + "score": 0.77, + "latex": "- 2" + }, + { + "category_id": 13, + "poly": [ + 834, + 323, + 872, + 323, + 872, + 351, + 834, + 351 + ], + "score": 0.68, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 629, + 230, + 718, + 230, + 718, + 264, + 629, + 264 + ], + "score": 0.66, + "latex": "\\operatorname { t a n h } ( { \\cdot } )" + }, + { + "category_id": 13, + "poly": [ + 515, + 728, + 564, + 728, + 564, + 758, + 515, + 758 + ], + "score": 0.4, + "latex": "1 ( \\mathrm { g } )" + }, + { + "category_id": 13, + "poly": [ + 660, + 461, + 696, + 461, + 696, + 488, + 660, + 488 + ], + "score": 0.35, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1079, + 1246, + 1079, + 1246, + 1111, + 1197, + 1111 + ], + "score": 0.31, + "latex": "1 ( \\mathrm { g } )" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1944.0, + 1169.0, + 1944.0, + 1169.0, + 1983.0, + 331.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1944.0, + 1407.0, + 1944.0, + 1407.0, + 1983.0, + 1239.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 296.0, + 1975.0, + 296.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1975.0, + 1408.0, + 1975.0, + 1408.0, + 2009.0, + 367.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 1217.0, + 2004.0, + 1217.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 2004.0, + 1317.0, + 2004.0, + 1317.0, + 2035.0, + 1288.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2035.0, + 1388.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1242.0, + 561.0, + 1242.0, + 561.0, + 1286.0, + 292.0, + 1286.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": [ + 295.0, + 1563.0, + 664.0, + 1563.0, + 664.0, + 1599.0, + 295.0, + 1599.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": [ + 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, + 664.0, + 783.0, + 664.0, + 783.0, + 701.0, + 295.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 664.0, + 1129.0, + 664.0, + 1129.0, + 701.0, + 1079.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 733.0, + 337.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 514.0, + 727.0, + 514.0, + 762.0, + 294.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 727.0, + 1126.0, + 727.0, + 1126.0, + 762.0, + 565.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 762.0, + 1173.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 757.0, + 555.0, + 757.0, + 555.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 757.0, + 737.0, + 757.0, + 737.0, + 793.0, + 724.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 757.0, + 1404.0, + 757.0, + 1404.0, + 793.0, + 927.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1405.0, + 789.0, + 1405.0, + 822.0, + 294.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 819.0, + 1404.0, + 819.0, + 1404.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 848.0, + 1404.0, + 848.0, + 1404.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 877.0, + 1404.0, + 877.0, + 1404.0, + 915.0, + 292.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 909.0, + 1166.0, + 909.0, + 1166.0, + 946.0, + 294.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 909.0, + 1406.0, + 909.0, + 1406.0, + 946.0, + 1190.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 937.0, + 766.0, + 937.0, + 766.0, + 975.0, + 294.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 937.0, + 1124.0, + 937.0, + 1124.0, + 975.0, + 875.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 937.0, + 1406.0, + 937.0, + 1406.0, + 975.0, + 1193.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 969.0, + 597.0, + 969.0, + 597.0, + 1006.0, + 588.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 969.0, + 1406.0, + 969.0, + 1406.0, + 1006.0, + 887.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 998.0, + 1406.0, + 998.0, + 1406.0, + 1037.0, + 292.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1029.0, + 575.0, + 1029.0, + 575.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1349.0, + 296.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 1407.0, + 1345.0, + 1407.0, + 1380.0, + 295.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1374.0, + 864.0, + 1374.0, + 864.0, + 1409.0, + 292.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1374.0, + 1407.0, + 1374.0, + 1407.0, + 1409.0, + 905.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1433.0, + 1405.0, + 1433.0, + 1405.0, + 1472.0, + 291.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 1406.0, + 1467.0, + 1406.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1498.0, + 787.0, + 1498.0, + 787.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1622.0, + 1404.0, + 1622.0, + 1404.0, + 1657.0, + 294.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1688.0, + 292.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1683.0, + 589.0, + 1683.0, + 589.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1683.0, + 1406.0, + 1683.0, + 1406.0, + 1719.0, + 682.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1012.0, + 1743.0, + 1012.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1781.0, + 1102.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1771.0, + 296.0, + 1771.0, + 296.0, + 1813.0, + 291.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1813.0, + 406.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1408.0, + 1832.0, + 1408.0, + 1874.0, + 292.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 1406.0, + 1862.0, + 1406.0, + 1906.0, + 292.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 989.0, + 1894.0, + 989.0, + 1932.0, + 294.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 628.0, + 229.0, + 628.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 719.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 1403.0, + 292.0, + 1403.0, + 325.0, + 296.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 833.0, + 321.0, + 833.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 355.0, + 873.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 378.0, + 296.0, + 378.0, + 296.0, + 419.0, + 293.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 378.0, + 591.0, + 378.0, + 591.0, + 419.0, + 579.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 1403.0, + 429.0, + 1403.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 460.0, + 659.0, + 460.0, + 659.0, + 494.0, + 295.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 460.0, + 1404.0, + 460.0, + 1404.0, + 494.0, + 697.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 639.0, + 489.0, + 639.0, + 527.0, + 294.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 1196.0, + 1078.0, + 1196.0, + 1114.0, + 294.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1078.0, + 1407.0, + 1078.0, + 1407.0, + 1114.0, + 1247.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1146.0, + 292.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1174.0, + 295.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 758.0, + 1170.0, + 758.0, + 1201.0, + 295.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 616.0, + 1302.0, + 616.0, + 1302.0, + 655.0, + 296.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 616.0, + 1400.0, + 616.0, + 1400.0, + 655.0, + 1390.0, + 655.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1613, + 1404, + 1613, + 1404, + 1979, + 298, + 1979 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 378, + 224, + 1324, + 224, + 1324, + 506, + 378, + 506 + ], + "score": 0.979, + "html": "
methodMNISTpMNIST#units# params
LSTM (Arjovsky et al., 2016)197.3%92.6%12868k
FC uRNN(Wisdom et al., 2016)92.8%92.1%11616k
FC uRNN (Wisdom et al., 2016)96.9%94.1%512270k
Soft orthogonal (Vorontsov et al., 2017)94.1%91.4%12818k
KRU (Jose et al., 2017)96.4%94.5%51211k
AntisymmetricRNN98.0%95.8%12810k
AntisymmetricRNN w/ gating98.8%93.1%12810k
" + }, + { + "category_id": 5, + "poly": [ + 364, + 1253, + 1337, + 1253, + 1337, + 1442, + 364, + 1442 + ], + "score": 0.976, + "html": "
methodpixel-by-pixelnoise padded#units# params
LSTM59.7%11.6%12869k
Ablation model54.6%46.2%19642k
AntisymmetricRNN58.7%48.3%25636k
AntisymmetricRNN w/ gating62.2%54.7%25637k
" + }, + { + "category_id": 1, + "poly": [ + 298, + 932, + 1403, + 932, + 1403, + 1054, + 298, + 1054 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 621, + 1405, + 621, + 1405, + 835, + 297, + 835 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 1069, + 1402, + 1069, + 1402, + 1224, + 299, + 1224 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 299, + 1554, + 680, + 1554, + 680, + 1586, + 299, + 1586 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 327, + 2004, + 1249, + 2004, + 1249, + 2034, + 327, + 2034 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 874, + 696, + 874, + 696, + 904, + 301, + 904 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.808 + }, + { + "category_id": 6, + "poly": [ + 363, + 1464, + 1335, + 1464, + 1335, + 1497, + 363, + 1497 + ], + "score": 0.731 + }, + { + "category_id": 6, + "poly": [ + 408, + 528, + 1286, + 528, + 1286, + 561, + 408, + 561 + ], + "score": 0.712 + }, + { + "category_id": 13, + "poly": [ + 961, + 1024, + 1077, + 1024, + 1077, + 1052, + 961, + 1052 + ], + "score": 0.9, + "latex": "T = 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1766, + 1148, + 1766, + 1148, + 1794, + 1024, + 1794 + ], + "score": 0.9, + "latex": "T = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 594, + 1025, + 672, + 1025, + 672, + 1052, + 594, + 1052 + ], + "score": 0.9, + "latex": "m = 3" + }, + { + "category_id": 13, + "poly": [ + 449, + 1767, + 549, + 1767, + 549, + 1794, + 449, + 1794 + ], + "score": 0.9, + "latex": "m = 9 6" + }, + { + "category_id": 13, + "poly": [ + 616, + 963, + 715, + 963, + 715, + 992, + 616, + 992 + ], + "score": 0.9, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 863, + 1162, + 939, + 1162, + 939, + 1191, + 863, + 1191 + ], + "score": 0.87, + "latex": "4 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1173, + 2005, + 1241, + 2005, + 1241, + 2032, + 1173, + 2032 + ], + "score": 0.83, + "latex": "4 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 2005, + 777, + 2005, + 777, + 2032, + 709, + 2032 + ], + "score": 0.82, + "latex": "3 5 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 938, + 2005, + 1004, + 2005, + 1004, + 2032, + 938, + 2032 + ], + "score": 0.82, + "latex": "3 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 486, + 2005, + 553, + 2005, + 553, + 2032, + 486, + 2032 + ], + "score": 0.81, + "latex": "3 3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1189, + 652, + 1235, + 652, + 1235, + 684, + 1189, + 684 + ], + "score": 0.59, + "latex": "1 / 7" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 685.0, + 1551.0, + 685.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2000.0, + 485.0, + 2000.0, + 485.0, + 2037.0, + 329.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 2000.0, + 708.0, + 2000.0, + 708.0, + 2037.0, + 554.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 2000.0, + 937.0, + 2000.0, + 937.0, + 2037.0, + 778.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 2000.0, + 1172.0, + 2000.0, + 1172.0, + 2037.0, + 1005.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 2000.0, + 1252.0, + 2000.0, + 1252.0, + 2037.0, + 1242.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 700.0, + 873.0, + 700.0, + 908.0, + 295.0, + 908.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": [ + 355.0, + 1461.0, + 1340.0, + 1461.0, + 1340.0, + 1502.0, + 355.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 525.0, + 1288.0, + 525.0, + 1288.0, + 565.0, + 410.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1610.0, + 1406.0, + 1610.0, + 1406.0, + 1649.0, + 293.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1642.0, + 1405.0, + 1642.0, + 1405.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1672.0, + 1405.0, + 1672.0, + 1405.0, + 1711.0, + 292.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1705.0, + 1406.0, + 1705.0, + 1406.0, + 1739.0, + 293.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 1406.0, + 1735.0, + 1406.0, + 1769.0, + 294.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1766.0, + 448.0, + 1766.0, + 448.0, + 1800.0, + 294.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1766.0, + 1023.0, + 1766.0, + 1023.0, + 1800.0, + 550.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1766.0, + 1404.0, + 1766.0, + 1404.0, + 1800.0, + 1149.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1795.0, + 1404.0, + 1795.0, + 1404.0, + 1831.0, + 293.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1404.0, + 1826.0, + 1404.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1922.0, + 293.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1953.0, + 293.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1948.0, + 558.0, + 1948.0, + 558.0, + 1984.0, + 295.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 1404.0, + 929.0, + 1404.0, + 966.0, + 293.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 963.0, + 615.0, + 963.0, + 615.0, + 995.0, + 296.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 963.0, + 1403.0, + 963.0, + 1403.0, + 995.0, + 716.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1028.0, + 294.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 593.0, + 1024.0, + 593.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1024.0, + 960.0, + 1024.0, + 960.0, + 1055.0, + 673.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1024.0, + 1088.0, + 1024.0, + 1088.0, + 1055.0, + 1078.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 619.0, + 1405.0, + 619.0, + 1405.0, + 657.0, + 294.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 649.0, + 1188.0, + 649.0, + 1188.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 688.0, + 1236.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 681.0, + 1406.0, + 681.0, + 1406.0, + 718.0, + 292.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 1403.0, + 713.0, + 1403.0, + 748.0, + 295.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 778.0, + 294.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 771.0, + 1403.0, + 771.0, + 1403.0, + 810.0, + 294.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 803.0, + 1156.0, + 803.0, + 1156.0, + 841.0, + 294.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1071.0, + 1404.0, + 1071.0, + 1404.0, + 1104.0, + 297.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1129.0, + 1406.0, + 1129.0, + 1406.0, + 1169.0, + 292.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 862.0, + 1157.0, + 862.0, + 1198.0, + 293.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1157.0, + 1406.0, + 1157.0, + 1406.0, + 1198.0, + 940.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1186.0, + 689.0, + 1186.0, + 689.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 772, + 1404, + 772, + 1404, + 1169, + 298, + 1169 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1650, + 1403, + 1650, + 1403, + 1895, + 298, + 1895 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1270, + 1403, + 1270, + 1403, + 1421, + 298, + 1421 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1401, + 1911, + 1401, + 2033, + 299, + 2033 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 523, + 231, + 1163, + 231, + 1163, + 610, + 523, + 610 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 1439, + 1400, + 1439, + 1400, + 1531, + 298, + 1531 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 295, + 647, + 1402, + 647, + 1402, + 710, + 295, + 710 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1579, + 543, + 1579, + 543, + 1614, + 299, + 1614 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 1212, + 577, + 1212, + 577, + 1241, + 300, + 1241 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.785 + }, + { + "category_id": 13, + "poly": [ + 363, + 834, + 663, + 834, + 663, + 866, + 363, + 866 + ], + "score": 0.88, + "latex": "T \\in \\{ 1 0 0 , 2 0 0 , 4 0 0 , 8 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 367, + 866, + 719, + 866, + 719, + 898, + 367, + 898 + ], + "score": 0.86, + "latex": "\\gamma \\in \\{ 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 , 5 , 1 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 647, + 1113, + 669, + 1113, + 669, + 1141, + 647, + 1141 + ], + "score": 0.8, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 409, + 1053, + 429, + 1053, + 429, + 1079, + 409, + 1079 + ], + "score": 0.77, + "latex": "\\gamma" + }, + { + "category_id": 14, + "poly": [ + 988, + 300, + 1152, + 300, + 1152, + 524, + 988, + 524 + ], + "score": 0.47, + "latex": "\\begin{array}{c} { \\begin{array} { r l } { } & { { \\mathsf { A S R N N , } } , { \\mathsf { 0 } } { \\mathsf { 0 } } } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { + } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ & { \\leq } \\\\ { } \\end{array} } \\end{array} " + }, + { + "category_id": 15, + "poly": [ + 555.0, + 237.0, + 601.0, + 237.0, + 601.0, + 271.0, + 555.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 241.0, + 744.0, + 241.0, + 744.0, + 297.0, + 727.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 244.0, + 833.0, + 244.0, + 833.0, + 269.0, + 815.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 245.0, + 919.0, + 245.0, + 919.0, + 263.0, + 903.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 265.0, + 656.0, + 265.0, + 656.0, + 279.0, + 643.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 284.0, + 829.0, + 284.0, + 829.0, + 294.0, + 820.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 257.0, + 919.0, + 257.0, + 919.0, + 275.0, + 904.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 267.0, + 1056.0, + 267.0, + 1056.0, + 298.0, + 987.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 317.0, + 917.0, + 317.0, + 917.0, + 331.0, + 904.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 302.0, + 1165.0, + 302.0, + 1165.0, + 331.0, + 1153.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 330.0, + 561.0, + 330.0, + 561.0, + 464.0, + 521.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 332.0, + 1158.0, + 332.0, + 1158.0, + 364.0, + 1153.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 387.0, + 661.0, + 387.0, + 661.0, + 414.0, + 638.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 551.0, + 918.0, + 551.0, + 918.0, + 563.0, + 904.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 559.0, + 670.0, + 559.0, + 670.0, + 589.0, + 628.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 559.0, + 759.0, + 559.0, + 759.0, + 589.0, + 715.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 559.0, + 844.0, + 559.0, + 844.0, + 589.0, + 802.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 560.0, + 931.0, + 560.0, + 931.0, + 589.0, + 890.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 582.0, + 842.0, + 582.0, + 842.0, + 615.0, + 719.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 326.0, + 606.0, + 326.0, + 606.0, + 358.0, + 540.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.25, + 415.5, + 602.25, + 415.5, + 602.25, + 447.5, + 542.25, + 447.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 501.5, + 606.0, + 501.5, + 606.0, + 536.5, + 539.0, + 536.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 647.0, + 1402.0, + 647.0, + 1402.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 677.0, + 1403.0, + 677.0, + 1403.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1575.0, + 548.0, + 1575.0, + 548.0, + 1623.0, + 292.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1210.0, + 582.0, + 1210.0, + 582.0, + 1246.0, + 295.0, + 1246.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": [ + 295.0, + 771.0, + 1405.0, + 771.0, + 1405.0, + 810.0, + 295.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 841.0, + 293.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 832.0, + 362.0, + 832.0, + 362.0, + 871.0, + 292.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 832.0, + 1407.0, + 832.0, + 1407.0, + 871.0, + 664.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 863.0, + 366.0, + 863.0, + 366.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 863.0, + 1405.0, + 863.0, + 1405.0, + 899.0, + 720.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 894.0, + 1404.0, + 894.0, + 1404.0, + 929.0, + 292.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1402.0, + 924.0, + 1402.0, + 960.0, + 294.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 993.0, + 293.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 985.0, + 1405.0, + 985.0, + 1405.0, + 1025.0, + 292.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1047.0, + 408.0, + 1047.0, + 408.0, + 1083.0, + 293.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1047.0, + 1405.0, + 1047.0, + 1405.0, + 1083.0, + 430.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1114.0, + 293.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1108.0, + 646.0, + 1108.0, + 646.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1108.0, + 1403.0, + 1108.0, + 1403.0, + 1145.0, + 670.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1139.0, + 919.0, + 1139.0, + 919.0, + 1174.0, + 295.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1683.0, + 1404.0, + 1683.0, + 1404.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1745.0, + 1404.0, + 1745.0, + 1404.0, + 1775.0, + 294.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1407.0, + 1772.0, + 1407.0, + 1810.0, + 293.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 1407.0, + 1832.0, + 1407.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1863.0, + 526.0, + 1863.0, + 526.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1301.0, + 1404.0, + 1301.0, + 1404.0, + 1334.0, + 296.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 1404.0, + 1332.0, + 1404.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1400.0, + 292.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 786.0, + 1391.0, + 786.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2006.0, + 558.0, + 2006.0, + 558.0, + 2034.0, + 294.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1475.0, + 291.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1205.0, + 1499.0, + 1205.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 106, + 299, + 106 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 262, + 299, + 262 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 295, + 859, + 1400, + 859, + 1400, + 925, + 295, + 925 + ], + "score": 0.553 + }, + { + "category_id": 1, + "poly": [ + 297, + 776, + 1399, + 776, + 1399, + 842, + 297, + 842 + ], + "score": 0.551 + }, + { + "category_id": 1, + "poly": [ + 297, + 527, + 1403, + 527, + 1403, + 592, + 297, + 592 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 297, + 693, + 1400, + 693, + 1400, + 759, + 297, + 759 + ], + "score": 0.546 + }, + { + "category_id": 1, + "poly": [ + 296, + 610, + 1401, + 610, + 1401, + 676, + 296, + 676 + ], + "score": 0.54 + }, + { + "category_id": 1, + "poly": [ + 297, + 942, + 1400, + 942, + 1400, + 1038, + 297, + 1038 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 298, + 1334, + 1399, + 1334, + 1399, + 1401, + 298, + 1401 + ], + "score": 0.517 + }, + { + "category_id": 1, + "poly": [ + 295, + 443, + 1403, + 443, + 1403, + 510, + 295, + 510 + ], + "score": 0.513 + }, + { + "category_id": 1, + "poly": [ + 299, + 278, + 1401, + 278, + 1401, + 344, + 299, + 344 + ], + "score": 0.513 + }, + { + "category_id": 1, + "poly": [ + 298, + 1139, + 1401, + 1139, + 1401, + 1236, + 298, + 1236 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1397, + 1971, + 1397, + 2034, + 298, + 2034 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 297, + 360, + 1401, + 360, + 1401, + 427, + 297, + 427 + ], + "score": 0.492 + }, + { + "category_id": 1, + "poly": [ + 297, + 1502, + 1396, + 1502, + 1396, + 1567, + 297, + 1567 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 292, + 1056, + 1401, + 1056, + 1401, + 1121, + 292, + 1121 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 299, + 1585, + 1242, + 1585, + 1242, + 1621, + 299, + 1621 + ], + "score": 0.483 + }, + { + "category_id": 1, + "poly": [ + 296, + 1419, + 1398, + 1419, + 1398, + 1485, + 296, + 1485 + ], + "score": 0.481 + }, + { + "category_id": 1, + "poly": [ + 297, + 1722, + 1399, + 1722, + 1399, + 1786, + 297, + 1786 + ], + "score": 0.478 + }, + { + "category_id": 1, + "poly": [ + 297, + 1637, + 1394, + 1637, + 1394, + 1704, + 297, + 1704 + ], + "score": 0.465 + }, + { + "category_id": 1, + "poly": [ + 295, + 1252, + 1400, + 1252, + 1400, + 1318, + 295, + 1318 + ], + "score": 0.455 + }, + { + "category_id": 1, + "poly": [ + 298, + 1804, + 1397, + 1804, + 1397, + 1870, + 298, + 1870 + ], + "score": 0.451 + }, + { + "category_id": 1, + "poly": [ + 298, + 1888, + 1395, + 1888, + 1395, + 1953, + 298, + 1953 + ], + "score": 0.436 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 295.0, + 109.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": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 1404.0, + 860.0, + 1404.0, + 896.0, + 295.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 891.0, + 932.0, + 891.0, + 932.0, + 924.0, + 323.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 777.0, + 1404.0, + 777.0, + 1404.0, + 812.0, + 293.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 808.0, + 1162.0, + 808.0, + 1162.0, + 843.0, + 322.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 566.0, + 292.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 558.0, + 612.0, + 558.0, + 612.0, + 592.0, + 321.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 696.0, + 1402.0, + 696.0, + 1402.0, + 729.0, + 298.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 726.0, + 1214.0, + 726.0, + 1214.0, + 758.0, + 325.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 608.0, + 1403.0, + 608.0, + 1403.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 642.0, + 1107.0, + 642.0, + 1107.0, + 675.0, + 321.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 943.0, + 1405.0, + 943.0, + 1405.0, + 978.0, + 296.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 973.0, + 1405.0, + 973.0, + 1405.0, + 1013.0, + 321.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1003.0, + 517.0, + 1003.0, + 517.0, + 1039.0, + 323.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1336.0, + 1401.0, + 1336.0, + 1401.0, + 1373.0, + 296.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1368.0, + 735.0, + 1368.0, + 735.0, + 1400.0, + 323.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1403.0, + 441.0, + 1403.0, + 482.0, + 294.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 475.0, + 1101.0, + 475.0, + 1101.0, + 512.0, + 319.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 279.0, + 1405.0, + 279.0, + 1405.0, + 315.0, + 295.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 311.0, + 653.0, + 311.0, + 653.0, + 343.0, + 324.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1138.0, + 1403.0, + 1138.0, + 1403.0, + 1176.0, + 296.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1207.0, + 321.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1200.0, + 1094.0, + 1200.0, + 1094.0, + 1236.0, + 323.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1403.0, + 1968.0, + 1403.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2001.0, + 533.0, + 2001.0, + 533.0, + 2034.0, + 324.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 1405.0, + 361.0, + 1405.0, + 397.0, + 296.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 392.0, + 963.0, + 392.0, + 963.0, + 427.0, + 322.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1400.0, + 1501.0, + 1400.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1533.0, + 709.0, + 1533.0, + 709.0, + 1568.0, + 323.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1056.0, + 1403.0, + 1056.0, + 1403.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1089.0, + 911.0, + 1089.0, + 911.0, + 1122.0, + 323.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1240.0, + 1584.0, + 1240.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1422.0, + 1403.0, + 1422.0, + 1403.0, + 1455.0, + 296.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1451.0, + 1343.0, + 1451.0, + 1343.0, + 1486.0, + 322.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1717.0, + 1405.0, + 1717.0, + 1405.0, + 1760.0, + 292.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1750.0, + 560.0, + 1750.0, + 560.0, + 1786.0, + 322.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1634.0, + 1399.0, + 1634.0, + 1399.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1669.0, + 1026.0, + 1669.0, + 1026.0, + 1704.0, + 322.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1251.0, + 1404.0, + 1251.0, + 1404.0, + 1290.0, + 293.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1285.0, + 660.0, + 1285.0, + 660.0, + 1317.0, + 322.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1798.0, + 1403.0, + 1798.0, + 1403.0, + 1847.0, + 292.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1834.0, + 741.0, + 1834.0, + 741.0, + 1869.0, + 322.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 1399.0, + 1888.0, + 1399.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1920.0, + 1302.0, + 1920.0, + 1302.0, + 1953.0, + 324.0, + 1953.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 106, + 299, + 106 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 863, + 2087, + 863, + 2113, + 836, + 2113 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 293, + 121, + 1409, + 121, + 1409, + 2035, + 293, + 2035 + ], + "score": 0.688 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 295.0, + 109.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": [ + 294.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 258.0, + 576.0, + 258.0, + 576.0, + 299.0, + 314.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 306.0, + 1408.0, + 306.0, + 1408.0, + 356.0, + 290.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 340.0, + 1028.0, + 340.0, + 1028.0, + 384.0, + 317.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 394.0, + 1408.0, + 394.0, + 1408.0, + 434.0, + 294.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 424.0, + 612.0, + 424.0, + 612.0, + 461.0, + 317.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 512.0, + 296.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 505.0, + 944.0, + 505.0, + 944.0, + 543.0, + 317.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 560.0, + 1406.0, + 560.0, + 1406.0, + 593.0, + 296.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 587.0, + 1106.0, + 587.0, + 1106.0, + 625.0, + 317.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 1408.0, + 640.0, + 1408.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 669.0, + 830.0, + 669.0, + 830.0, + 709.0, + 319.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 723.0, + 1404.0, + 723.0, + 1404.0, + 757.0, + 296.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 755.0, + 1191.0, + 755.0, + 1191.0, + 788.0, + 321.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 801.0, + 1402.0, + 801.0, + 1402.0, + 841.0, + 294.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 837.0, + 638.0, + 837.0, + 638.0, + 870.0, + 321.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 887.0, + 1400.0, + 887.0, + 1400.0, + 921.0, + 296.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 973.0, + 296.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 971.0, + 1043.0, + 971.0, + 1043.0, + 1005.0, + 321.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1019.0, + 1406.0, + 1019.0, + 1406.0, + 1059.0, + 296.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1053.0, + 1161.0, + 1053.0, + 1161.0, + 1086.0, + 321.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1103.0, + 1404.0, + 1103.0, + 1404.0, + 1137.0, + 298.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1130.0, + 1404.0, + 1130.0, + 1404.0, + 1170.0, + 319.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1185.0, + 1406.0, + 1185.0, + 1406.0, + 1219.0, + 296.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1212.0, + 1195.0, + 1212.0, + 1195.0, + 1252.0, + 319.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1267.0, + 1404.0, + 1267.0, + 1404.0, + 1300.0, + 298.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1298.0, + 1375.0, + 1298.0, + 1375.0, + 1332.0, + 319.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1342.0, + 1404.0, + 1342.0, + 1404.0, + 1384.0, + 289.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1374.0, + 399.0, + 1374.0, + 399.0, + 1416.0, + 317.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1428.0, + 1404.0, + 1428.0, + 1404.0, + 1468.0, + 294.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1458.0, + 714.0, + 1458.0, + 714.0, + 1498.0, + 319.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1406.0, + 1510.0, + 1406.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1544.0, + 800.0, + 1544.0, + 800.0, + 1577.0, + 321.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1588.0, + 1408.0, + 1588.0, + 1408.0, + 1634.0, + 292.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1623.0, + 1026.0, + 1623.0, + 1026.0, + 1663.0, + 321.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1672.0, + 1406.0, + 1672.0, + 1406.0, + 1714.0, + 289.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1707.0, + 878.0, + 1707.0, + 878.0, + 1743.0, + 317.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1753.0, + 1404.0, + 1753.0, + 1404.0, + 1798.0, + 292.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1787.0, + 1282.0, + 1787.0, + 1282.0, + 1827.0, + 317.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1837.0, + 1406.0, + 1837.0, + 1406.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1869.0, + 1121.0, + 1869.0, + 1121.0, + 1909.0, + 319.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1921.0, + 1337.0, + 1921.0, + 1337.0, + 1955.0, + 296.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1965.0, + 1411.0, + 1965.0, + 1411.0, + 2016.0, + 290.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 2001.0, + 1235.0, + 2001.0, + 1235.0, + 2041.0, + 319.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1017, + 1404, + 1017, + 1404, + 1141, + 297, + 1141 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1208, + 1405, + 1208, + 1405, + 1302, + 298, + 1302 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1612, + 1406, + 1612, + 1406, + 1707, + 298, + 1707 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 1314, + 1405, + 1314, + 1405, + 1503, + 296, + 1503 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 938, + 1402, + 938, + 1402, + 1003, + 298, + 1003 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 713, + 1904, + 985, + 1904, + 985, + 2028, + 713, + 2028 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 1713, + 1401, + 1713, + 1401, + 1778, + 294, + 1778 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 515, + 1154, + 1181, + 1154, + 1181, + 1197, + 515, + 1197 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 295, + 1857, + 1114, + 1857, + 1114, + 1891, + 295, + 1891 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 628, + 1789, + 1072, + 1789, + 1072, + 1828, + 628, + 1828 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 299, + 873, + 894, + 873, + 894, + 907, + 299, + 907 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 302, + 1545, + 726, + 1545, + 726, + 1579, + 302, + 1579 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1161, + 1399, + 1161, + 1399, + 1191, + 1353, + 1191 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 293, + 226, + 1409, + 226, + 1409, + 819, + 293, + 819 + ], + "score": 0.733 + }, + { + "category_id": 13, + "poly": [ + 1086, + 1018, + 1241, + 1018, + 1241, + 1052, + 1086, + 1052 + ], + "score": 0.93, + "latex": "y ^ { \\prime } ( t ) = \\lambda y ( t )" + }, + { + "category_id": 13, + "poly": [ + 813, + 1269, + 938, + 1269, + 938, + 1303, + 813, + 1303 + ], + "score": 0.93, + "latex": "R e ( \\lambda ) = 0" + }, + { + "category_id": 13, + "poly": [ + 910, + 1077, + 1094, + 1077, + 1094, + 1113, + 910, + 1113 + ], + "score": 0.93, + "latex": "y ( t ) \\stackrel { \\bullet } { = } e ^ { \\lambda t } y ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 325, + 1345, + 510, + 1345, + 510, + 1380, + 325, + 1380 + ], + "score": 0.93, + "latex": "\\pmb { y } ( t ) = e ^ { \\pmb { A } t } \\pmb { y } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 464, + 1238, + 602, + 1238, + 602, + 1272, + 464, + 1272 + ], + "score": 0.93, + "latex": "R e ( \\lambda ) ~ < ~ 0" + }, + { + "category_id": 13, + "poly": [ + 862, + 1407, + 1044, + 1407, + 1044, + 1440, + 862, + 1440 + ], + "score": 0.92, + "latex": "{ \\pmb w } ^ { \\prime } ( t ) = { \\pmb \\Lambda } { \\pmb w } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1437, + 1223, + 1437, + 1223, + 1471, + 1034, + 1471 + ], + "score": 0.92, + "latex": "w _ { i } ^ { \\prime } ( t ) \\stackrel { \\cdot } { = } \\lambda _ { i } w _ { i } ( t )" + }, + { + "category_id": 13, + "poly": [ + 323, + 1208, + 449, + 1208, + 449, + 1242, + 323, + 1242 + ], + "score": 0.92, + "latex": "R e ( \\lambda ) > 0" + }, + { + "category_id": 13, + "poly": [ + 596, + 1406, + 794, + 1406, + 794, + 1440, + 596, + 1440 + ], + "score": 0.92, + "latex": "{ \\pmb w } ( t ) = { \\pmb P } ^ { - 1 } { \\pmb y } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1079, + 1304, + 1079, + 1304, + 1113, + 1255, + 1113 + ], + "score": 0.92, + "latex": "\\tilde { y } ( t )" + }, + { + "category_id": 13, + "poly": [ + 433, + 1468, + 490, + 1468, + 490, + 1502, + 433, + 1502 + ], + "score": 0.92, + "latex": "{ \\pmb w } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1316, + 1241, + 1316, + 1241, + 1349, + 1070, + 1349 + ], + "score": 0.92, + "latex": "\\mathbf { \\boldsymbol { y } } ^ { \\prime } ( t ) = \\mathbf { \\boldsymbol { A } } \\mathbf { \\boldsymbol { y } } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1407, + 1291, + 1407, + 1291, + 1440, + 1233, + 1440 + ], + "score": 0.92, + "latex": "{ \\mathbf { } } w ( t )" + }, + { + "category_id": 13, + "poly": [ + 994, + 1713, + 1122, + 1713, + 1122, + 1743, + 994, + 1743 + ], + "score": 0.92, + "latex": "\\ b { D } \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 664, + 1470, + 715, + 1470, + 715, + 1502, + 664, + 1502 + ], + "score": 0.91, + "latex": "{ \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } } { \\mathbf } { } \\mathbf { } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf { } \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf { } } { \\mathbf } { \\mathbf } { \\mathbf { } } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } { \\mathbf \\mathbf { } \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf { \\mathbf \\mathbf } \\mathbf \\mathbf { \\mathbf } \\mathbf \\mathbf \\mathbf " + }, + { + "category_id": 13, + "poly": [ + 594, + 1440, + 656, + 1440, + 656, + 1470, + 594, + 1470 + ], + "score": 0.91, + "latex": "w _ { i } ( t )" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1079, + 1197, + 1079, + 1197, + 1113, + 1148, + 1113 + ], + "score": 0.91, + "latex": "y ( t )" + }, + { + "category_id": 13, + "poly": [ + 500, + 1713, + 637, + 1713, + 637, + 1745, + 500, + 1745 + ], + "score": 0.9, + "latex": "W \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 14, + "poly": [ + 625, + 1789, + 1074, + 1789, + 1074, + 1828, + 625, + 1828 + ], + "score": 0.9, + "latex": "R e ( \\lambda _ { i } ( D W ) ) = 0 , \\quad \\forall i = 1 , 2 , \\ldots , n ." + }, + { + "category_id": 13, + "poly": [ + 1226, + 1345, + 1393, + 1345, + 1393, + 1375, + 1226, + 1375 + ], + "score": 0.9, + "latex": "\\pmb { P } ^ { - 1 } \\pmb { A } \\pmb { P } = \\pmb { \\Lambda }" + }, + { + "category_id": 14, + "poly": [ + 516, + 1153, + 1184, + 1153, + 1184, + 1196, + 516, + 1196 + ], + "score": 0.89, + "latex": "| y ( t ) - \\tilde { y } ( t ) | = | e ^ { \\lambda t } ( y ( 0 ) - \\tilde { y } ( 0 ) ) | = e ^ { R e ( \\lambda ) t } | y ( 0 ) - \\tilde { y } ( 0 ) | ." + }, + { + "category_id": 13, + "poly": [ + 694, + 1439, + 750, + 1439, + 750, + 1470, + 694, + 1470 + ], + "score": 0.88, + "latex": "{ \\mathbf { } } w ( t )" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1018, + 1402, + 1018, + 1402, + 1048, + 1327, + 1048 + ], + "score": 0.87, + "latex": "\\lambda \\in \\mathbb { C }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1472, + 1122, + 1472, + 1122, + 1499, + 1095, + 1499 + ], + "score": 0.87, + "latex": "\\lambda _ { i }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1859, + 1049, + 1859, + 1049, + 1886, + 987, + 1886 + ], + "score": 0.86, + "latex": "\\pmb { D W }" + }, + { + "category_id": 14, + "poly": [ + 712, + 1900, + 986, + 1900, + 986, + 2031, + 712, + 2031 + ], + "score": 0.84, + "latex": "\\begin{array} { c } { { D W v = \\lambda v , } } \\\\ { { W v = \\lambda D ^ { - 1 } v , } } \\\\ { { v ^ { * } W v = \\lambda ( v ^ { * } D ^ { - 1 } v ) , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 424, + 1861, + 444, + 1861, + 444, + 1886, + 424, + 1886 + ], + "score": 0.83, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1378, + 1152, + 1378, + 1152, + 1404, + 1124, + 1404 + ], + "score": 0.82, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 581, + 1050, + 601, + 1050, + 601, + 1076, + 581, + 1076 + ], + "score": 0.82, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 941, + 1348, + 968, + 1348, + 968, + 1374, + 941, + 1374 + ], + "score": 0.82, + "latex": "\\pmb { A }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1114, + 1002, + 1114, + 1002, + 1137, + 989, + 1137 + ], + "score": 0.81, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 872, + 1378, + 898, + 1378, + 898, + 1404, + 872, + 1404 + ], + "score": 0.77, + "latex": "\\pmb { A }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1864, + 513, + 1864, + 513, + 1886, + 494, + 1886 + ], + "score": 0.75, + "latex": "\\textbf { { v } }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1380, + 398, + 1380, + 398, + 1404, + 373, + 1404 + ], + "score": 0.72, + "latex": "\\pmb { \\Lambda }" + }, + { + "category_id": 13, + "poly": [ + 645, + 1746, + 708, + 1746, + 708, + 1774, + 645, + 1774 + ], + "score": 0.64, + "latex": "\\pmb { D W }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 871.0, + 896.0, + 871.0, + 896.0, + 911.0, + 295.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 731.0, + 1543.0, + 731.0, + 1583.0, + 294.0, + 1583.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": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1017.0, + 1085.0, + 1017.0, + 1085.0, + 1053.0, + 295.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1017.0, + 1326.0, + 1017.0, + 1326.0, + 1053.0, + 1242.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1017.0, + 1406.0, + 1017.0, + 1406.0, + 1053.0, + 1403.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1047.0, + 580.0, + 1047.0, + 580.0, + 1083.0, + 292.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1047.0, + 1406.0, + 1047.0, + 1406.0, + 1083.0, + 602.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 909.0, + 1078.0, + 909.0, + 1114.0, + 294.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1078.0, + 1147.0, + 1078.0, + 1147.0, + 1114.0, + 1095.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1078.0, + 1254.0, + 1078.0, + 1254.0, + 1114.0, + 1198.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1114.0, + 1305.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1111.0, + 988.0, + 1111.0, + 988.0, + 1143.0, + 296.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1111.0, + 1033.0, + 1111.0, + 1033.0, + 1143.0, + 1003.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1203.0, + 322.0, + 1203.0, + 322.0, + 1248.0, + 291.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1248.0, + 450.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1237.0, + 463.0, + 1237.0, + 463.0, + 1274.0, + 295.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1237.0, + 1403.0, + 1237.0, + 1403.0, + 1274.0, + 603.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1270.0, + 812.0, + 1270.0, + 812.0, + 1305.0, + 293.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1270.0, + 951.0, + 1270.0, + 951.0, + 1305.0, + 939.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1642.0, + 1403.0, + 1642.0, + 1403.0, + 1677.0, + 296.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1675.0, + 1077.0, + 1675.0, + 1077.0, + 1709.0, + 295.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1313.0, + 1069.0, + 1313.0, + 1069.0, + 1350.0, + 294.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1313.0, + 1406.0, + 1313.0, + 1406.0, + 1350.0, + 1242.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1341.0, + 324.0, + 1341.0, + 324.0, + 1381.0, + 291.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1341.0, + 940.0, + 1341.0, + 940.0, + 1381.0, + 511.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1341.0, + 1225.0, + 1341.0, + 1225.0, + 1381.0, + 969.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1341.0, + 1406.0, + 1341.0, + 1406.0, + 1381.0, + 1394.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1370.0, + 372.0, + 1370.0, + 372.0, + 1415.0, + 291.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1370.0, + 871.0, + 1370.0, + 871.0, + 1415.0, + 399.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1370.0, + 1123.0, + 1370.0, + 1123.0, + 1415.0, + 899.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1415.0, + 1153.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 595.0, + 1405.0, + 595.0, + 1445.0, + 293.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1405.0, + 861.0, + 1405.0, + 861.0, + 1445.0, + 795.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1405.0, + 1232.0, + 1405.0, + 1232.0, + 1445.0, + 1045.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1445.0, + 1292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 593.0, + 1437.0, + 593.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1437.0, + 693.0, + 1437.0, + 693.0, + 1473.0, + 657.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1437.0, + 1033.0, + 1437.0, + 1033.0, + 1473.0, + 751.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1473.0, + 1224.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 432.0, + 1467.0, + 432.0, + 1507.0, + 293.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1467.0, + 663.0, + 1467.0, + 663.0, + 1507.0, + 491.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1467.0, + 1094.0, + 1467.0, + 1094.0, + 1507.0, + 716.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1467.0, + 1136.0, + 1467.0, + 1136.0, + 1507.0, + 1123.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 941.0, + 1403.0, + 941.0, + 1403.0, + 973.0, + 296.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 972.0, + 781.0, + 972.0, + 781.0, + 1004.0, + 294.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 499.0, + 1708.0, + 499.0, + 1751.0, + 293.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1708.0, + 993.0, + 1708.0, + 993.0, + 1751.0, + 638.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1708.0, + 1406.0, + 1708.0, + 1406.0, + 1751.0, + 1123.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1743.0, + 644.0, + 1743.0, + 644.0, + 1783.0, + 293.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1743.0, + 878.0, + 1743.0, + 878.0, + 1783.0, + 709.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1855.0, + 423.0, + 1855.0, + 423.0, + 1895.0, + 296.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1855.0, + 493.0, + 1855.0, + 493.0, + 1895.0, + 445.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1855.0, + 986.0, + 1855.0, + 986.0, + 1895.0, + 514.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1855.0, + 1116.0, + 1855.0, + 1116.0, + 1895.0, + 1050.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1402.0, + 230.0, + 1402.0, + 269.0, + 295.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 263.0, + 1062.0, + 263.0, + 1062.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 308.0, + 1402.0, + 308.0, + 1402.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 343.0, + 955.0, + 343.0, + 955.0, + 379.0, + 323.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 391.0, + 1406.0, + 391.0, + 1406.0, + 433.0, + 292.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 424.0, + 1405.0, + 424.0, + 1405.0, + 464.0, + 322.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 458.0, + 775.0, + 458.0, + 775.0, + 489.0, + 323.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 503.0, + 1406.0, + 503.0, + 1406.0, + 545.0, + 291.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 539.0, + 706.0, + 539.0, + 706.0, + 572.0, + 320.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 587.0, + 1406.0, + 587.0, + 1406.0, + 627.0, + 292.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 622.0, + 818.0, + 622.0, + 818.0, + 655.0, + 323.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 668.0, + 1406.0, + 668.0, + 1406.0, + 709.0, + 291.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 700.0, + 961.0, + 700.0, + 961.0, + 740.0, + 322.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 751.0, + 1406.0, + 751.0, + 1406.0, + 793.0, + 291.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 782.0, + 962.0, + 782.0, + 962.0, + 821.0, + 320.0, + 821.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 505, + 1405, + 505, + 1405, + 812, + 297, + 812 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 925, + 1403, + 925, + 1403, + 1049, + 298, + 1049 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 329, + 1407, + 329, + 1407, + 393, + 297, + 393 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 1063, + 1398, + 1063, + 1398, + 1128, + 296, + 1128 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 651, + 276, + 1047, + 276, + 1047, + 314, + 651, + 314 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 854, + 228, + 854, + 262, + 300, + 262 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 301, + 858, + 791, + 858, + 791, + 892, + 301, + 892 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 437, + 710, + 437, + 710, + 472, + 300, + 472 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.837 + }, + { + "category_id": 13, + "poly": [ + 1112, + 536, + 1253, + 536, + 1253, + 571, + 1112, + 571 + ], + "score": 0.94, + "latex": "\\bar { \\mathcal { N } } ( 0 , \\sigma _ { w } ^ { 2 } / n )" + }, + { + "category_id": 13, + "poly": [ + 452, + 229, + 559, + 229, + 559, + 259, + 452, + 259 + ], + "score": 0.92, + "latex": "{ \\pmb v } ^ { * } { \\pmb D } ^ { - 1 } { \\pmb v }" + }, + { + "category_id": 13, + "poly": [ + 399, + 628, + 597, + 628, + 597, + 662, + 399, + 662 + ], + "score": 0.92, + "latex": "\\epsilon \\in \\{ 0 . 0 1 , 0 . 1 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 443, + 536, + 572, + 536, + 572, + 569, + 443, + 569 + ], + "score": 0.91, + "latex": "\\bar { \\mathcal { N } } ( 0 , 1 / m )" + }, + { + "category_id": 13, + "poly": [ + 753, + 628, + 1054, + 628, + 1054, + 662, + 753, + 662 + ], + "score": 0.91, + "latex": "\\gamma \\in \\lbrace 0 . 0 0 1 , 0 . 0 1 , 0 . 1 , 1 . 0 \\rbrace" + }, + { + "category_id": 14, + "poly": [ + 649, + 277, + 1047, + 277, + 1047, + 315, + 649, + 315 + ], + "score": 0.91, + "latex": "( v ^ { * } W v ) ^ { * } = v ^ { * } W ^ { * } v = - v ^ { * } W v ," + }, + { + "category_id": 13, + "poly": [ + 911, + 331, + 995, + 331, + 995, + 359, + 911, + 359 + ], + "score": 0.9, + "latex": "{ \\boldsymbol { v } } ^ { * } { \\boldsymbol { W } } { \\boldsymbol { v } }" + }, + { + "category_id": 13, + "poly": [ + 440, + 568, + 696, + 568, + 696, + 600, + 440, + 600 + ], + "score": 0.9, + "latex": "\\sigma _ { w } \\in \\{ 0 , 1 , 2 , 4 , 8 , 1 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 1338, + 541, + 1375, + 541, + 1375, + 568, + 1338, + 568 + ], + "score": 0.87, + "latex": "\\sigma _ { w }" + }, + { + "category_id": 13, + "poly": [ + 298, + 689, + 641, + 689, + 641, + 722, + 298, + 722 + ], + "score": 0.87, + "latex": "\\{ 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 , 0 . 7 5 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 757, + 361, + 820, + 361, + 820, + 389, + 757, + 389 + ], + "score": 0.82, + "latex": "\\pmb { D W }" + }, + { + "category_id": 13, + "poly": [ + 1275, + 332, + 1294, + 332, + 1294, + 358, + 1275, + 358 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 675, + 512, + 695, + 512, + 695, + 534, + 675, + 534 + ], + "score": 0.78, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 340, + 511, + 368, + 511, + 368, + 535, + 340, + 535 + ], + "score": 0.77, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 371, + 336, + 391, + 336, + 391, + 358, + 371, + 358 + ], + "score": 0.76, + "latex": "^ *" + }, + { + "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": [ + 293.0, + 854.0, + 797.0, + 854.0, + 797.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 433.0, + 715.0, + 433.0, + 715.0, + 479.0, + 293.0, + 479.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": [ + 292.0, + 505.0, + 339.0, + 505.0, + 339.0, + 542.0, + 292.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 505.0, + 674.0, + 505.0, + 674.0, + 542.0, + 369.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 505.0, + 1406.0, + 505.0, + 1406.0, + 542.0, + 696.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 534.0, + 442.0, + 534.0, + 442.0, + 577.0, + 292.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 534.0, + 1111.0, + 534.0, + 1111.0, + 577.0, + 573.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 534.0, + 1337.0, + 534.0, + 1337.0, + 577.0, + 1254.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 534.0, + 1407.0, + 534.0, + 1407.0, + 577.0, + 1376.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 567.0, + 439.0, + 567.0, + 439.0, + 603.0, + 295.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 603.0, + 697.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 595.0, + 1405.0, + 595.0, + 1405.0, + 634.0, + 292.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 627.0, + 398.0, + 627.0, + 398.0, + 665.0, + 292.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 627.0, + 752.0, + 627.0, + 752.0, + 665.0, + 598.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 627.0, + 1406.0, + 627.0, + 1406.0, + 665.0, + 1055.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 722.0, + 642.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 750.0, + 1406.0, + 750.0, + 1406.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 679.0, + 781.0, + 679.0, + 816.0, + 295.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 926.0, + 1402.0, + 926.0, + 1402.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 1405.0, + 958.0, + 1405.0, + 990.0, + 294.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1019.0, + 1227.0, + 1019.0, + 1227.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 329.0, + 370.0, + 329.0, + 370.0, + 365.0, + 296.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 329.0, + 910.0, + 329.0, + 910.0, + 365.0, + 392.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 329.0, + 1274.0, + 329.0, + 1274.0, + 365.0, + 996.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 329.0, + 1405.0, + 329.0, + 1405.0, + 365.0, + 1295.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 358.0, + 756.0, + 358.0, + 756.0, + 397.0, + 294.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 358.0, + 989.0, + 358.0, + 989.0, + 397.0, + 821.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 361.0, + 1405.0, + 361.0, + 1405.0, + 392.0, + 1374.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1402.0, + 1063.0, + 1402.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1405.0, + 1093.0, + 1405.0, + 1130.0, + 295.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 451.0, + 226.0, + 451.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 226.0, + 857.0, + 226.0, + 857.0, + 266.0, + 560.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 356, + 606, + 1338, + 606, + 1338, + 1565, + 356, + 1565 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 293, + 1589, + 1405, + 1589, + 1405, + 1655, + 293, + 1655 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.846 + }, + { + "category_id": 15, + "poly": [ + 374.0, + 612.0, + 414.0, + 612.0, + 414.0, + 642.0, + 374.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 629.0, + 921.0, + 629.0, + 921.0, + 639.0, + 910.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 652.0, + 414.0, + 652.0, + 414.0, + 686.0, + 372.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 650.0, + 485.0, + 650.0, + 485.0, + 662.0, + 467.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 656.0, + 507.0, + 656.0, + 507.0, + 667.0, + 498.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 660.0, + 527.0, + 660.0, + 527.0, + 679.0, + 509.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 651.0, + 764.0, + 651.0, + 764.0, + 678.0, + 749.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 647.0, + 934.0, + 647.0, + 934.0, + 658.0, + 924.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 662.0, + 1003.0, + 662.0, + 1003.0, + 678.0, + 988.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 663.0, + 1240.0, + 663.0, + 1240.0, + 677.0, + 1227.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 680.0, + 760.0, + 680.0, + 760.0, + 691.0, + 751.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 693.0, + 416.0, + 693.0, + 416.0, + 728.0, + 371.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 688.0, + 767.0, + 688.0, + 767.0, + 712.0, + 750.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 686.0, + 781.0, + 686.0, + 781.0, + 695.0, + 770.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 695.0, + 1251.0, + 695.0, + 1251.0, + 734.0, + 1223.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 733.0, + 416.0, + 733.0, + 416.0, + 769.0, + 359.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 744.0, + 485.0, + 744.0, + 485.0, + 761.0, + 466.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 743.0, + 724.0, + 743.0, + 724.0, + 763.0, + 706.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 743.0, + 963.0, + 743.0, + 963.0, + 763.0, + 945.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 745.0, + 1200.0, + 745.0, + 1200.0, + 761.0, + 1185.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 753.0, + 598.0, + 753.0, + 598.0, + 768.0, + 586.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 775.0, + 418.0, + 775.0, + 418.0, + 810.0, + 358.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 771.0, + 566.0, + 771.0, + 566.0, + 787.0, + 552.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 780.0, + 767.0, + 780.0, + 767.0, + 793.0, + 753.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 771.0, + 805.0, + 771.0, + 805.0, + 787.0, + 791.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 779.0, + 934.0, + 779.0, + 934.0, + 799.0, + 915.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 767.0, + 1018.0, + 767.0, + 1018.0, + 776.0, + 1008.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 771.0, + 1045.0, + 771.0, + 1045.0, + 793.0, + 1027.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 784.0, + 1079.0, + 784.0, + 1079.0, + 793.0, + 1070.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 768.0, + 1284.0, + 768.0, + 1284.0, + 788.0, + 1266.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 848.0, + 416.0, + 848.0, + 416.0, + 882.0, + 372.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 871.0, + 1181.0, + 871.0, + 1181.0, + 934.0, + 1163.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 873.0, + 1244.0, + 873.0, + 1244.0, + 884.0, + 1232.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 889.0, + 416.0, + 889.0, + 416.0, + 966.0, + 371.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 899.0, + 528.0, + 899.0, + 528.0, + 918.0, + 510.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 899.0, + 766.0, + 899.0, + 766.0, + 919.0, + 748.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 928.0, + 981.0, + 928.0, + 981.0, + 938.0, + 971.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 899.0, + 1005.0, + 899.0, + 1005.0, + 919.0, + 987.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 939.0, + 1076.0, + 939.0, + 1076.0, + 951.0, + 1066.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 899.0, + 1243.0, + 899.0, + 1243.0, + 919.0, + 1225.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 906.0, + 1295.0, + 906.0, + 1295.0, + 967.0, + 1272.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 947.0, + 932.0, + 947.0, + 932.0, + 960.0, + 913.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 952.0, + 944.0, + 952.0, + 944.0, + 963.0, + 935.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 974.0, + 415.0, + 974.0, + 415.0, + 1007.0, + 360.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 982.0, + 485.0, + 982.0, + 485.0, + 1001.0, + 467.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 969.0, + 517.0, + 969.0, + 517.0, + 982.0, + 508.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 983.0, + 724.0, + 983.0, + 724.0, + 1001.0, + 705.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 983.0, + 963.0, + 983.0, + 963.0, + 1001.0, + 945.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 962.0, + 1302.0, + 962.0, + 1302.0, + 1003.0, + 1286.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1012.0, + 416.0, + 1012.0, + 416.0, + 1049.0, + 360.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1009.0, + 566.0, + 1009.0, + 566.0, + 1025.0, + 552.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1006.0, + 806.0, + 1006.0, + 806.0, + 1025.0, + 790.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1007.0, + 1045.0, + 1007.0, + 1045.0, + 1026.0, + 1027.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1011.0, + 1248.0, + 1011.0, + 1248.0, + 1030.0, + 1220.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1000.0, + 1301.0, + 1000.0, + 1301.0, + 1018.0, + 1290.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1088.0, + 416.0, + 1088.0, + 416.0, + 1122.0, + 371.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1101.0, + 928.0, + 1101.0, + 928.0, + 1111.0, + 917.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1108.0, + 1274.0, + 1108.0, + 1274.0, + 1128.0, + 1256.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1129.0, + 416.0, + 1129.0, + 416.0, + 1164.0, + 371.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1133.0, + 1246.0, + 1133.0, + 1246.0, + 1143.0, + 1237.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1139.0, + 528.0, + 1139.0, + 528.0, + 1156.0, + 509.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1138.0, + 1005.0, + 1138.0, + 1005.0, + 1157.0, + 987.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1138.0, + 1244.0, + 1138.0, + 1244.0, + 1157.0, + 1226.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1166.0, + 528.0, + 1166.0, + 528.0, + 1198.0, + 512.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1170.0, + 416.0, + 1170.0, + 416.0, + 1204.0, + 371.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1196.0, + 511.0, + 1196.0, + 511.0, + 1206.0, + 502.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1210.0, + 416.0, + 1210.0, + 416.0, + 1246.0, + 359.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1220.0, + 485.0, + 1220.0, + 485.0, + 1240.0, + 467.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1220.0, + 724.0, + 1220.0, + 724.0, + 1240.0, + 706.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1222.0, + 961.0, + 1222.0, + 961.0, + 1237.0, + 946.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1220.0, + 1201.0, + 1220.0, + 1201.0, + 1240.0, + 1184.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1242.0, + 1210.0, + 1242.0, + 1210.0, + 1252.0, + 1201.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1253.0, + 415.0, + 1253.0, + 415.0, + 1286.0, + 360.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1248.0, + 566.0, + 1248.0, + 566.0, + 1262.0, + 552.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1256.0, + 989.0, + 1256.0, + 989.0, + 1266.0, + 979.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1246.0, + 1045.0, + 1246.0, + 1045.0, + 1265.0, + 1027.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1254.0, + 1209.0, + 1254.0, + 1209.0, + 1269.0, + 1194.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1246.0, + 1284.0, + 1246.0, + 1284.0, + 1265.0, + 1266.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1325.0, + 416.0, + 1325.0, + 416.0, + 1359.0, + 372.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1367.0, + 416.0, + 1367.0, + 416.0, + 1403.0, + 371.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1375.0, + 527.0, + 1375.0, + 527.0, + 1395.0, + 509.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1376.0, + 766.0, + 1376.0, + 766.0, + 1396.0, + 748.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1376.0, + 1005.0, + 1376.0, + 1005.0, + 1397.0, + 987.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1378.0, + 1241.0, + 1378.0, + 1241.0, + 1394.0, + 1227.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1408.0, + 416.0, + 1408.0, + 416.0, + 1443.0, + 371.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1422.0, + 525.0, + 1422.0, + 525.0, + 1431.0, + 511.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1405.0, + 552.0, + 1405.0, + 552.0, + 1413.0, + 543.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1402.0, + 1289.0, + 1402.0, + 1289.0, + 1411.0, + 1280.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1430.0, + 511.0, + 1430.0, + 511.0, + 1438.0, + 502.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1430.0, + 695.0, + 1430.0, + 695.0, + 1447.0, + 676.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1452.0, + 415.0, + 1452.0, + 415.0, + 1484.0, + 360.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1460.0, + 485.0, + 1460.0, + 485.0, + 1478.0, + 467.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1460.0, + 724.0, + 1460.0, + 724.0, + 1478.0, + 706.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1459.0, + 963.0, + 1459.0, + 963.0, + 1478.0, + 945.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1462.0, + 1200.0, + 1462.0, + 1200.0, + 1477.0, + 1185.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1451.0, + 1214.0, + 1451.0, + 1214.0, + 1460.0, + 1205.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1485.0, + 567.0, + 1485.0, + 567.0, + 1504.0, + 551.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1485.0, + 806.0, + 1485.0, + 806.0, + 1504.0, + 790.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1485.0, + 1045.0, + 1485.0, + 1045.0, + 1504.0, + 1027.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1485.0, + 1284.0, + 1485.0, + 1284.0, + 1503.0, + 1266.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1494.0, + 414.0, + 1494.0, + 414.0, + 1523.0, + 360.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1528.0, + 620.0, + 1528.0, + 620.0, + 1557.0, + 412.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1531.0, + 857.0, + 1531.0, + 857.0, + 1556.0, + 645.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1528.0, + 1097.0, + 1528.0, + 1097.0, + 1557.0, + 884.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1531.0, + 1333.0, + 1531.0, + 1333.0, + 1556.0, + 1122.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.25, + 645.0, + 447.25, + 645.0, + 447.25, + 670.0, + 441.25, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.25, + 713.5, + 462.25, + 713.5, + 462.25, + 756.0, + 420.25, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 891.0, + 1279.0, + 891.0, + 1279.0, + 902.0, + 1264.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 905.0, + 740.0, + 905.0, + 740.0, + 921.5, + 709.0, + 921.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.25, + 920.0, + 526.25, + 920.0, + 526.25, + 971.0, + 515.25, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 983.5, + 800.0, + 983.5, + 800.0, + 995.5, + 784.0, + 995.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1407.5, + 839.0, + 1407.5, + 839.0, + 1426.5, + 796.0, + 1426.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1416.5, + 1000.0, + 1416.5, + 1000.0, + 1432.0, + 982.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.75, + 1415.5, + 802.75, + 1415.5, + 802.75, + 1430.5, + 754.75, + 1430.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1586.0, + 1406.0, + 1586.0, + 1406.0, + 1627.0, + 292.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 584.0, + 1621.0, + 584.0, + 1654.0, + 293.0, + 1654.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": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 358, + 306, + 1338, + 306, + 1338, + 1261, + 358, + 1261 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 297, + 1290, + 1406, + 1290, + 1406, + 1355, + 297, + 1355 + ], + "score": 0.928 + }, + { + "category_id": 4, + "poly": [ + 294, + 1888, + 1407, + 1888, + 1407, + 1953, + 294, + 1953 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 3, + "poly": [ + 301, + 1524, + 1398, + 1524, + 1398, + 1864, + 301, + 1864 + ], + "score": 0.76 + }, + { + "category_id": 13, + "poly": [ + 884, + 1323, + 976, + 1323, + 976, + 1354, + 884, + 1354 + ], + "score": 0.91, + "latex": "\\gamma = 0 . 1" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 316.0, + 411.0, + 316.0, + 411.0, + 341.0, + 377.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 356.0, + 413.0, + 356.0, + 413.0, + 386.0, + 374.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 397.0, + 413.0, + 397.0, + 413.0, + 427.0, + 374.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 417.0, + 825.0, + 417.0, + 825.0, + 428.0, + 814.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 439.0, + 411.0, + 439.0, + 411.0, + 467.0, + 363.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 482.0, + 410.0, + 482.0, + 410.0, + 506.0, + 368.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 555.0, + 411.0, + 555.0, + 411.0, + 580.0, + 377.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 596.0, + 411.0, + 596.0, + 411.0, + 622.0, + 376.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 602.0, + 1183.0, + 602.0, + 1183.0, + 610.0, + 1160.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 600.0, + 1214.0, + 600.0, + 1214.0, + 608.0, + 1184.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 620.0, + 1154.0, + 620.0, + 1154.0, + 625.0, + 1148.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 637.0, + 411.0, + 637.0, + 411.0, + 663.0, + 376.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 643.0, + 852.0, + 643.0, + 852.0, + 650.0, + 844.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 678.0, + 411.0, + 678.0, + 411.0, + 705.0, + 363.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 721.0, + 410.0, + 721.0, + 410.0, + 745.0, + 369.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 794.0, + 411.0, + 794.0, + 411.0, + 820.0, + 377.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 832.0, + 413.0, + 832.0, + 413.0, + 863.0, + 374.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 874.0, + 413.0, + 874.0, + 413.0, + 904.0, + 376.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 917.0, + 411.0, + 917.0, + 411.0, + 945.0, + 365.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 960.0, + 410.0, + 960.0, + 410.0, + 984.0, + 367.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1032.0, + 411.0, + 1032.0, + 411.0, + 1057.0, + 377.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1073.0, + 411.0, + 1073.0, + 411.0, + 1100.0, + 377.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1114.0, + 411.0, + 1114.0, + 411.0, + 1140.0, + 377.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1154.0, + 413.0, + 1154.0, + 413.0, + 1184.0, + 367.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1198.0, + 411.0, + 1198.0, + 411.0, + 1222.0, + 367.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1235.0, + 617.0, + 1235.0, + 617.0, + 1256.0, + 415.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1235.0, + 856.0, + 1235.0, + 856.0, + 1256.0, + 652.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1235.0, + 1094.0, + 1235.0, + 1094.0, + 1256.0, + 892.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1235.0, + 1333.0, + 1235.0, + 1333.0, + 1256.0, + 1129.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.75, + 373.5, + 528.75, + 373.5, + 528.75, + 382.5, + 495.75, + 382.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 589.5, + 534.0, + 589.5, + 534.0, + 597.5, + 513.0, + 597.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 582.5, + 1215.0, + 582.5, + 1215.0, + 595.5, + 1173.0, + 595.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 585.0, + 1261.0, + 585.0, + 1261.0, + 599.0, + 1222.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 852.5, + 1015.0, + 852.5, + 1015.0, + 865.5, + 997.0, + 865.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.75, + 1094.5, + 759.75, + 1094.5, + 759.75, + 1101.0, + 736.75, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1289.0, + 1404.0, + 1289.0, + 1404.0, + 1325.0, + 295.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1320.0, + 883.0, + 1320.0, + 883.0, + 1356.0, + 295.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1320.0, + 987.0, + 1320.0, + 987.0, + 1356.0, + 977.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1919.0, + 373.0, + 1919.0, + 373.0, + 1959.0, + 291.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.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, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1536.0, + 347.0, + 1536.0, + 347.0, + 1560.0, + 315.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1536.0, + 626.0, + 1536.0, + 626.0, + 1560.0, + 594.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1538.0, + 906.0, + 1538.0, + 906.0, + 1560.0, + 873.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1538.0, + 1184.0, + 1538.0, + 1184.0, + 1560.0, + 1152.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1579.0, + 348.0, + 1579.0, + 348.0, + 1647.0, + 312.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1579.0, + 628.0, + 1579.0, + 628.0, + 1647.0, + 591.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1585.0, + 742.0, + 1585.0, + 742.0, + 1623.0, + 724.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1579.0, + 906.0, + 1579.0, + 906.0, + 1645.0, + 873.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1585.0, + 1049.0, + 1585.0, + 1049.0, + 1647.0, + 1029.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1592.0, + 1063.0, + 1592.0, + 1063.0, + 1622.0, + 1050.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1637.0, + 1106.0, + 1637.0, + 1106.0, + 1647.0, + 1096.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1579.0, + 1185.0, + 1579.0, + 1185.0, + 1645.0, + 1152.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1601.0, + 1211.0, + 1601.0, + 1211.0, + 1631.0, + 1195.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1630.0, + 1227.0, + 1630.0, + 1227.0, + 1648.0, + 1214.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1641.0, + 1330.0, + 1641.0, + 1330.0, + 1652.0, + 1318.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1648.0, + 926.0, + 1648.0, + 926.0, + 1679.0, + 903.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1654.0, + 1200.0, + 1654.0, + 1200.0, + 1664.0, + 1191.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1662.0, + 348.0, + 1662.0, + 348.0, + 1689.0, + 305.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1663.0, + 628.0, + 1663.0, + 628.0, + 1689.0, + 583.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1663.0, + 907.0, + 1663.0, + 907.0, + 1689.0, + 862.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1670.0, + 973.0, + 1670.0, + 973.0, + 1683.0, + 962.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1663.0, + 1186.0, + 1663.0, + 1186.0, + 1689.0, + 1141.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1662.0, + 1206.0, + 1662.0, + 1206.0, + 1671.0, + 1196.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1690.0, + 778.0, + 1690.0, + 778.0, + 1708.0, + 765.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1693.0, + 1056.0, + 1693.0, + 1056.0, + 1705.0, + 1045.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1693.0, + 1336.0, + 1693.0, + 1336.0, + 1704.0, + 1326.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1705.0, + 348.0, + 1705.0, + 348.0, + 1731.0, + 303.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1705.0, + 628.0, + 1705.0, + 628.0, + 1731.0, + 583.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1705.0, + 907.0, + 1705.0, + 907.0, + 1731.0, + 862.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1705.0, + 1186.0, + 1705.0, + 1186.0, + 1731.0, + 1141.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1737.0, + 431.0, + 1737.0, + 431.0, + 1760.0, + 346.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1738.0, + 467.0, + 1738.0, + 467.0, + 1760.0, + 432.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1738.0, + 509.0, + 1738.0, + 509.0, + 1760.0, + 477.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1738.0, + 550.0, + 1738.0, + 550.0, + 1760.0, + 518.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1735.0, + 832.0, + 1735.0, + 832.0, + 1763.0, + 624.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1735.0, + 1111.0, + 1735.0, + 1111.0, + 1763.0, + 903.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1735.0, + 1389.0, + 1735.0, + 1389.0, + 1763.0, + 1182.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1775.0, + 1406.0, + 1775.0, + 1406.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1802.0, + 1404.0, + 1802.0, + 1404.0, + 1839.0, + 296.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1835.0, + 628.0, + 1835.0, + 628.0, + 1866.0, + 573.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1835.0, + 908.0, + 1835.0, + 908.0, + 1866.0, + 852.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1832.0, + 1323.0, + 1832.0, + 1323.0, + 1868.0, + 1131.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1538.0, + 414.0, + 1538.0, + 414.0, + 1548.5, + 411.0, + 1548.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1569.5, + 446.0, + 1569.5, + 446.0, + 1580.5, + 432.0, + 1580.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.25, + 1542.0, + 1026.25, + 1542.0, + 1026.25, + 1563.5, + 983.25, + 1563.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1538.0, + 953.0, + 1538.0, + 953.0, + 1550.0, + 921.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1563.5, + 928.0, + 1563.5, + 928.0, + 1572.0, + 898.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.75, + 1566.0, + 994.75, + 1566.0, + 994.75, + 1586.5, + 930.75, + 1586.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1653.5, + 736.0, + 1653.5, + 736.0, + 1659.0, + 733.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1677.5, + 437.0, + 1677.5, + 437.0, + 1698.0, + 405.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1693.5, + 495.0, + 1693.5, + 495.0, + 1704.5, + 492.0, + 1704.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1644.0, + 736.0, + 1644.0, + 736.0, + 1659.0, + 666.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1702.5, + 462.0, + 1702.5, + 462.0, + 1716.5, + 444.0, + 1716.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/5qsptDcsdEj/0.png b/vlm/train/5qsptDcsdEj/0.png new file mode 100644 index 0000000000000000000000000000000000000000..171a06d4c0aa1d6c369ba0e2b7232afd3bd023ce --- /dev/null +++ b/vlm/train/5qsptDcsdEj/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6641ee63e19f54f5b263f57a20fff78839c77413129751d374df9d42c254cd24 +size 402546 diff --git a/vlm/train/5qsptDcsdEj/1.png b/vlm/train/5qsptDcsdEj/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc66be4f61fc1bad193ba911ba25c66738e8196 --- /dev/null +++ b/vlm/train/5qsptDcsdEj/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef751e785b9afeea9611cc7f601ed2151caff813392a95075ac8c34451acfdb7 +size 596157 diff --git a/vlm/train/5qsptDcsdEj/10.png b/vlm/train/5qsptDcsdEj/10.png new file mode 100644 index 0000000000000000000000000000000000000000..269055f2c28de68e423dc4550f4fdbc7d1787b4e --- /dev/null +++ b/vlm/train/5qsptDcsdEj/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488f105c3e8699826b841c7569a205bc4db93c70cb16572756c13b1b6313fd70 +size 610266 diff --git a/vlm/train/5qsptDcsdEj/11.png b/vlm/train/5qsptDcsdEj/11.png new file mode 100644 index 0000000000000000000000000000000000000000..73ef1c4ad6798a812e778b10076d645cce64c1a3 --- /dev/null +++ b/vlm/train/5qsptDcsdEj/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bb58d63bd6e59a0f6726989579983858665c181c54d5206776549ea482e878 +size 596363 diff --git a/vlm/train/5qsptDcsdEj/12.png b/vlm/train/5qsptDcsdEj/12.png new file mode 100644 index 0000000000000000000000000000000000000000..391c2027a35336a991ddac28995539ff1371fd3d --- /dev/null +++ b/vlm/train/5qsptDcsdEj/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b54ad0feb2bfbac14dcb0df63681165d32fec74acb84326e47c452a47ab646 +size 628856 diff --git a/vlm/train/5qsptDcsdEj/13.png b/vlm/train/5qsptDcsdEj/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0f2d291e34896abe2d6b61e8dc028ac9e1d19f --- /dev/null +++ b/vlm/train/5qsptDcsdEj/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb3d76599133f5ab2f7656b5e5ee4b78dffb560b432fecda6eb1a607456aac6 +size 606654 diff --git a/vlm/train/5qsptDcsdEj/14.png b/vlm/train/5qsptDcsdEj/14.png new file mode 100644 index 0000000000000000000000000000000000000000..07c4224e5ef7cf00e58e6e1deb39b56e8f859a6f --- /dev/null +++ b/vlm/train/5qsptDcsdEj/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5c5b1e56036d31ad11bcb5efff497d6524db91a14c11918a739a327a592539 +size 391784 diff --git a/vlm/train/5qsptDcsdEj/2.png b/vlm/train/5qsptDcsdEj/2.png new file mode 100644 index 0000000000000000000000000000000000000000..64b451caaef98fd1bca43bcee5c52068fe055b1e --- /dev/null +++ b/vlm/train/5qsptDcsdEj/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20ede4c1820989e885f7100072c71f6fcf36ee8abdbdd0538af0d5c894cec4 +size 658732 diff --git a/vlm/train/5qsptDcsdEj/3.png b/vlm/train/5qsptDcsdEj/3.png new file mode 100644 index 0000000000000000000000000000000000000000..778150d2aca69e4baa553cbf816e17ed2fc1be0c --- /dev/null +++ b/vlm/train/5qsptDcsdEj/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35c19af8b0740fbcd0a8eac117fee3fbc161a4c9a1e63cf44843e0352ea69b1 +size 491689 diff --git a/vlm/train/5qsptDcsdEj/4.png b/vlm/train/5qsptDcsdEj/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5bbb1a4009f81560745df3217a99b9a4448a6db --- /dev/null +++ b/vlm/train/5qsptDcsdEj/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31eb9c3ee96b84759d8e2bd611e809d35513db8d903c43d45c5a47a548de8d8 +size 718826 diff --git a/vlm/train/5qsptDcsdEj/5.png b/vlm/train/5qsptDcsdEj/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bfeb8695eb05f2f2381277725c5b07d7138eeb1f --- /dev/null +++ b/vlm/train/5qsptDcsdEj/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715634d216af8e06af782a5c2a5ef2cacbbb3be869ee27f61ba5ea7e5f6e1d11 +size 538766 diff --git a/vlm/train/5qsptDcsdEj/6.png b/vlm/train/5qsptDcsdEj/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2b86dcb9a718f87b93f7143dcf6e1dfa4345ec4e --- /dev/null +++ b/vlm/train/5qsptDcsdEj/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39fc5acb7618266a7a40b9588252ac363594c67e8675a34d15c76ff62b44101 +size 604733 diff --git a/vlm/train/5qsptDcsdEj/7.png b/vlm/train/5qsptDcsdEj/7.png new file mode 100644 index 0000000000000000000000000000000000000000..65c1a0849f62c380172b3169ef581d47108f4811 --- /dev/null +++ b/vlm/train/5qsptDcsdEj/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c63b2302c11c62ded3a4dff5266ccf31b32ed61497ca4d3edd39c78c0d91755 +size 627093 diff --git a/vlm/train/5qsptDcsdEj/8.png b/vlm/train/5qsptDcsdEj/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d14e2bfcd9a772ba340be30ceaff2ac3456b2008 --- /dev/null +++ b/vlm/train/5qsptDcsdEj/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189bcf6025ce12645beba0edfd185d60f4f950e71619263e2e411d702c840b76 +size 654612 diff --git a/vlm/train/5qsptDcsdEj/9.png b/vlm/train/5qsptDcsdEj/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b4c1882c9f65aa7603220ad657d3406807eaa7ca --- /dev/null +++ b/vlm/train/5qsptDcsdEj/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e5c728872fc90843350560d814d64445e1097eb0053a0da278a458f1424532 +size 501758 diff --git a/vlm/train/7Yhok3vJpU/0.png b/vlm/train/7Yhok3vJpU/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4582eb9d09320d2272ffc52dddd972470ba3208d --- /dev/null +++ b/vlm/train/7Yhok3vJpU/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50d31ccf546101cdc5ce1851fb0d7fbb2b73df2788feed9c4d8684dfbd34376 +size 490572 diff --git a/vlm/train/7Yhok3vJpU/1.png b/vlm/train/7Yhok3vJpU/1.png new file mode 100644 index 0000000000000000000000000000000000000000..12e7b21e9abbf989d8364d33baee54eeede415b8 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d836f32f2d3d0c3611cb4e0c89947d164257bba6a2d74843e35310afb159eb +size 486745 diff --git a/vlm/train/7Yhok3vJpU/10.png b/vlm/train/7Yhok3vJpU/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ddf5f4a9cbb50a6e8dc95a524830b97d1dfe70d6 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f635c2f9a3d9d89d3515e88cfb92af5c04f6866d48ee529ef5ec74f0611c7df +size 518420 diff --git a/vlm/train/7Yhok3vJpU/11.png b/vlm/train/7Yhok3vJpU/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7e05f4985064326ef3755c25d772623a0f901649 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34242e4bf110df71d82ffe391f888cb6a72bacba0e0d631929be0a68708628a +size 333401 diff --git a/vlm/train/7Yhok3vJpU/12.png b/vlm/train/7Yhok3vJpU/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fb778d3bff26373ffe4c0d2a56f94e0300f8e86e --- /dev/null +++ b/vlm/train/7Yhok3vJpU/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f926e644b5da520d7a3afe9fcf4d7f3351eedf4fb94f6f2fe00da2222390643 +size 407988 diff --git a/vlm/train/7Yhok3vJpU/13.png b/vlm/train/7Yhok3vJpU/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b85df231017bcc5966c8637762231226e6401333 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc5e087ed836722d7a5af61f0aa95776a116aa4d58cb6717fc0ba2eda311789 +size 462748 diff --git a/vlm/train/7Yhok3vJpU/14.png b/vlm/train/7Yhok3vJpU/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c62845975bd68bb7577e87f1a16a77e9cbc44271 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f638afa992489d67c344fee65d4710e5d9ff2029108514faf3b568c3d4c7fa +size 358270 diff --git a/vlm/train/7Yhok3vJpU/15.png b/vlm/train/7Yhok3vJpU/15.png new file mode 100644 index 0000000000000000000000000000000000000000..07c86fd6ba9276bb894773fc58349571c5daf3cf --- /dev/null +++ b/vlm/train/7Yhok3vJpU/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2acd8ed7ab2f9988b75ff87d370000dcfeddc8e9ee37c80b3602b7b23739d9 +size 110578 diff --git a/vlm/train/7Yhok3vJpU/2.png b/vlm/train/7Yhok3vJpU/2.png new file mode 100644 index 0000000000000000000000000000000000000000..125412b0806fa94b9d809fa5f03a020bd080581a --- /dev/null +++ b/vlm/train/7Yhok3vJpU/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1255d283dfe65adfa88d576bd237770daeea7720d38efe7e184a916ffc668031 +size 599868 diff --git a/vlm/train/7Yhok3vJpU/3.png b/vlm/train/7Yhok3vJpU/3.png new file mode 100644 index 0000000000000000000000000000000000000000..767417c9ffd01c4e91dfcde7f3e4d0843afd5138 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d93a448698305cf74447a7d8da59bb2948e4e62946fc3fa0f4fbcc307dc2777 +size 527103 diff --git a/vlm/train/7Yhok3vJpU/4.png b/vlm/train/7Yhok3vJpU/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4dc5c7be17e9ecf032e80e7e3cb1bf825570dad2 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03959fc1d8e586b2c99fcdfdf267795e8f9c3d5f4db18bb882a2f79e5efbfdfb +size 513555 diff --git a/vlm/train/7Yhok3vJpU/5.png b/vlm/train/7Yhok3vJpU/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b1b0ac6d542d15ba300a7e211e0734e07396f6fe --- /dev/null +++ b/vlm/train/7Yhok3vJpU/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351c7a4ea0c96e6d72d9d84f0d80026a97f9c41da64f7e73080a5684fc2c2e4e +size 529057 diff --git a/vlm/train/7Yhok3vJpU/6.png b/vlm/train/7Yhok3vJpU/6.png new file mode 100644 index 0000000000000000000000000000000000000000..56a4383e06ccc3de61ab89831826a860f74080c2 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e613f6644a35587e0b82a18f31d7c3ad0aeffcf479f1ff311e8d1fa365bbe67b +size 462569 diff --git a/vlm/train/7Yhok3vJpU/7.png b/vlm/train/7Yhok3vJpU/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f445dbeeb29512bdf891bc79b3e5a1d36ad64657 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8f9a1847bafbca78da922f2147272937cd9b5dc6a3474a959355b0eb64e55f +size 498032 diff --git a/vlm/train/7Yhok3vJpU/8.png b/vlm/train/7Yhok3vJpU/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd71d98542204d21a0ffe3d26a64888a6c95954 --- /dev/null +++ b/vlm/train/7Yhok3vJpU/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa25af58fb337ce940c4245c54cedac40f17b3426c60d128955ca31303f3cafa +size 550265 diff --git a/vlm/train/7Yhok3vJpU/9.png b/vlm/train/7Yhok3vJpU/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b87b6aeee93ea756bc82368f9af6362b8048becd --- /dev/null +++ b/vlm/train/7Yhok3vJpU/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58fd96f1f2742ffd026a7c1981ec964516b0b493c2a81b51a26ba31985f8a4c6 +size 537222 diff --git a/vlm/train/B1uvH_gC-/0.png b/vlm/train/B1uvH_gC-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a82b0f44828e0d0409d7ce9c4c9aba3d08e6aa72 --- /dev/null +++ b/vlm/train/B1uvH_gC-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0bf8153a5ddbc851f273411f74f35b28b2bd849b6771eba406c3c52bd42369 +size 493996 diff --git a/vlm/train/B1uvH_gC-/1.png b/vlm/train/B1uvH_gC-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..154add4b5449d04f9748d3d77ebd164cecbe7241 --- /dev/null +++ b/vlm/train/B1uvH_gC-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f42e9c5c7a0522a33dbbe6299e4a5f536809c27d2a9efc403dcaec0ac9558b +size 636181 diff --git a/vlm/train/B1uvH_gC-/10.png b/vlm/train/B1uvH_gC-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6aa6ba04879a50ec668fd0f9cb073fe39585b2 --- /dev/null +++ b/vlm/train/B1uvH_gC-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e82c7f998b6f3f6292d515a09476fdd3064b20b00b2d12a5fd27092c17144fe4 +size 370513 diff --git a/vlm/train/B1uvH_gC-/2.png b/vlm/train/B1uvH_gC-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3bd0f0b2d5a4ec8b290d08e29a73f4cb2825f97 --- /dev/null +++ b/vlm/train/B1uvH_gC-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb163442192dbd70fd3aa277a80d9487c7859b92d2cfb1fa17009c1b01f58456 +size 567923 diff --git a/vlm/train/B1uvH_gC-/3.png b/vlm/train/B1uvH_gC-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a61d516dadad528366dab891c4e66aea91c7cd43 --- /dev/null +++ b/vlm/train/B1uvH_gC-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffce4e9bae45b84c63a815ddfd74c201a08b2384f902c9545770ad18afd587e +size 390022 diff --git a/vlm/train/B1uvH_gC-/4.png b/vlm/train/B1uvH_gC-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f50785255458303e728ca7afab933faea8e60a5 --- /dev/null +++ b/vlm/train/B1uvH_gC-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775b2b9f3bbd1e9c38c7dba45d7ab27ba8711fe27356354e47ee8f8446996a02 +size 611360 diff --git a/vlm/train/B1uvH_gC-/5.png b/vlm/train/B1uvH_gC-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..19d2699c1f4a19a2c5e2cc00019fc8e8d88b6f99 --- /dev/null +++ b/vlm/train/B1uvH_gC-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617c810ac9b6e6c309e900b18b107a65e5c9e88672ffbe4f5f5f5291f05b7969 +size 471086 diff --git a/vlm/train/B1uvH_gC-/6.png b/vlm/train/B1uvH_gC-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..28ffb4a93d8ca8222dadc7e445ea62d8f6a883e7 --- /dev/null +++ b/vlm/train/B1uvH_gC-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f56b22496196edb30cbfbedcff9c89a8e90df5c5208dd84f7ebd1c5a01ca34e +size 552377 diff --git a/vlm/train/B1uvH_gC-/7.png b/vlm/train/B1uvH_gC-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e11e6e4e29a2618118e31bc6f6ba7febfaeca7 --- /dev/null +++ b/vlm/train/B1uvH_gC-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c821a4c38b7fcee6079f4cf9cb6c8797984a8fb43fd1e96ef17c5b7bf4dcabf +size 602847 diff --git a/vlm/train/B1uvH_gC-/8.png b/vlm/train/B1uvH_gC-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d46f4e95b57940f720e1b435ea9e4243c75f8dbb --- /dev/null +++ b/vlm/train/B1uvH_gC-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1263b046c66aef6c7746a038448d55a993abc1ab3464d8220375e94a862ccaf +size 572034 diff --git a/vlm/train/B1uvH_gC-/9.png b/vlm/train/B1uvH_gC-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5856668513bb33c1fbc5ae12bccc2d2e33b54c26 --- /dev/null +++ b/vlm/train/B1uvH_gC-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ece18082929fd723c0c334935f084694a4395123e534a97c84aa2490e8438d4 +size 522219 diff --git a/vlm/train/BJ0Ee8cxx/0.png b/vlm/train/BJ0Ee8cxx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..46a3da9d0a0af4f7cf0d48fb2964c0fd62030012 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f37ebecf60119b3bfde144d42497c462318a118bb0ebbc9e2a9a96ac7f2b8b1 +size 453914 diff --git a/vlm/train/BJ0Ee8cxx/1.png b/vlm/train/BJ0Ee8cxx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc7e32d2977dceb5263aea43298dd5accf5fb2f7 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8f89051cf3734ad906f56e2261ae342dbd33a0e2b109bc87ebb7e8bc9203a6 +size 541189 diff --git a/vlm/train/BJ0Ee8cxx/2.png b/vlm/train/BJ0Ee8cxx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..97bbe60ca9c44cc37915332d0cfea4c7452fb9d2 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4330ed7b51b85928d5b8f0eade86abb271cf513d055991e1e32dcf491db9fe6c +size 522749 diff --git a/vlm/train/BJ0Ee8cxx/3.png b/vlm/train/BJ0Ee8cxx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..57563d520a43906f009682a05ae266d72354de8f --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4b7351f25de36bdd1e70bf56748122ca7d6edcec99d41f7a4825cd6010df75 +size 556090 diff --git a/vlm/train/BJ0Ee8cxx/4.png b/vlm/train/BJ0Ee8cxx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6031e984c11f9771bb60f8e7c92e858cd1551248 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cbc0e2ac7e84da58fafd2299ef5983d0019de6d8663fed601a27748d259ae9 +size 510620 diff --git a/vlm/train/BJ0Ee8cxx/5.png b/vlm/train/BJ0Ee8cxx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..72ea77bd7756de67fcf5b162386dd1a9913cdb88 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877ee706c7b267a978de5e08a533fcf5c7324960e1a8973bb58bd31f8038dbb1 +size 580169 diff --git a/vlm/train/BJ0Ee8cxx/6.png b/vlm/train/BJ0Ee8cxx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..403254cf115b883fc5dfa409196a2d4c81fb66d9 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77a26d01f48a58d26d2a0229e5e0c63cafc4cb73b4056b1e2a3860fdc29f1f6 +size 473435 diff --git a/vlm/train/BJ0Ee8cxx/7.png b/vlm/train/BJ0Ee8cxx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0ca9ae4033d8cc506276b7117cca5a5ed23704b4 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab320cf7837b59c0707c6bcbc653641dce656f7546a01d70d1cda7a8de6b773 +size 497157 diff --git a/vlm/train/BJ0Ee8cxx/8.png b/vlm/train/BJ0Ee8cxx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0cc9117b1d549a1cb757b192a1cd1903d06a6a --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5451c62b9e8041332050af5077514f73328a5ebdd0dffdb123879abe5a806d8b +size 464729 diff --git a/vlm/train/BJ0Ee8cxx/9.png b/vlm/train/BJ0Ee8cxx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7d16ccc2b78cfe9a365c7e26386cd38d90bf37a4 --- /dev/null +++ b/vlm/train/BJ0Ee8cxx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1305b861ae2c0b6d23bc67d3adad96d17ccd45b74fff10644087850e83bb4353 +size 373147 diff --git a/vlm/train/BJ46w6Ule/4.png b/vlm/train/BJ46w6Ule/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f5c69cf35c32e69c07b817414be269b5a712e0 --- /dev/null +++ b/vlm/train/BJ46w6Ule/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e220e6c12832d1e140c943ac3a50731a078697c4f239b164029f90956b15f8ff +size 389105 diff --git a/vlm/train/BJ46w6Ule/5.png b/vlm/train/BJ46w6Ule/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bfcbd18535c36dd52dd2cfd006fcdb8101ac301d --- /dev/null +++ b/vlm/train/BJ46w6Ule/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a5b46aba53c1da1c33276e361023a4f6e0b8cf0b3b538831ff4ab6ecd67e09 +size 1042014 diff --git a/vlm/train/BJ46w6Ule/7.png b/vlm/train/BJ46w6Ule/7.png new file mode 100644 index 0000000000000000000000000000000000000000..74d5a3769796dc114431d365176404cdff2431aa --- /dev/null +++ b/vlm/train/BJ46w6Ule/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3897993def23cd4f51db45b6cecd5d0037cd6af822c2513998d21d8325b8de49 +size 977792 diff --git a/vlm/train/BJ46w6Ule/8.png b/vlm/train/BJ46w6Ule/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f98de124e003a2aa00411f150e8ee50184e6a75a --- /dev/null +++ b/vlm/train/BJ46w6Ule/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9956c467622bda9b46de3131d82beb9be5ec5582b6540bae162bacb146caee7 +size 514822 diff --git a/vlm/train/BJe0Gn0cY7/10.png b/vlm/train/BJe0Gn0cY7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d4bf90589442be5950260a31d2dc46a12bd941a6 --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90c7e87b4c977f7ef6c0af0032924a8ccef3d5aa2fb7c844dcaef4a58411037 +size 568862 diff --git a/vlm/train/BJe0Gn0cY7/17.png b/vlm/train/BJe0Gn0cY7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a2961aca54e9f16d2ff9541ee701537636eff59b --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9712184c09e23fd74259def31b32614930febc0fa175ac6951579f113b8cd2d1 +size 914303 diff --git a/vlm/train/BJe0Gn0cY7/2.png b/vlm/train/BJe0Gn0cY7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6079fb66e154b63402eaafc95ff29215414c21d9 --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea61dc1229eea18b4d007919b91eb17c02def9174ee6ca5a6e61e8f959378654 +size 524612 diff --git a/vlm/train/BJe0Gn0cY7/21.png b/vlm/train/BJe0Gn0cY7/21.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1ac165a3e652df86663a8c61e138bbeaba294c --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f85540672b399f339b96399dd7a9ddbd082f0fa3fb9655e24ef28c3dfcd3b8d4 +size 255719 diff --git a/vlm/train/BJe0Gn0cY7/23.png b/vlm/train/BJe0Gn0cY7/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c6398ab8750aaa25d9518d1133d68b8462d2b01c --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09836f0154f5ee49e2896ce2a4ab9d23a104db8d4b9bc53e848d856865a8536d +size 238980 diff --git a/vlm/train/BJe0Gn0cY7/3.png b/vlm/train/BJe0Gn0cY7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..606a6bb18ee56f41283cea1d55b5ae35627681e6 --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217aacce98062935d775205871ee19f0e6587ac3dda5321faee1c785eef4d032 +size 539085 diff --git a/vlm/train/BJe0Gn0cY7/6.png b/vlm/train/BJe0Gn0cY7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6d1bb777dd15dd5875934a8c85ef8118968503 --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436ceafdc2445521f0d2346d5d150e37c58e0d3a522cea476b8ccd9a676ca51f +size 825384 diff --git a/vlm/train/BJe0Gn0cY7/9.png b/vlm/train/BJe0Gn0cY7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fcaf2ffce5db59ee2e484212ee036f74da3d1411 --- /dev/null +++ b/vlm/train/BJe0Gn0cY7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8406d7670a1011d4d81473c917d5d5cbde6c7a33a6e8426fc4268070a4e8ed35 +size 555306 diff --git a/vlm/train/BJgza6VtPB/0.png b/vlm/train/BJgza6VtPB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0f23b1c175ae0a12b3689060714cc0a9930c22da --- /dev/null +++ b/vlm/train/BJgza6VtPB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3b0908906d663e38e9017c7e74926dbc800bd3394e3e68ed75403b1f47d58b +size 463364 diff --git a/vlm/train/BJgza6VtPB/1.png b/vlm/train/BJgza6VtPB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..15a6386af354229a5bade80db51de1a47d3c9274 --- /dev/null +++ b/vlm/train/BJgza6VtPB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524cff304dda3edc4d47c44a3dbd6ec53363a85bed61a0150fae895ebe59344b +size 503440 diff --git a/vlm/train/BJgza6VtPB/11.png b/vlm/train/BJgza6VtPB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0ac3b9a305caf5c2df6afe458708a0267d20ad2b --- /dev/null +++ b/vlm/train/BJgza6VtPB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29267e0fd48f2494b5f6ffca3e17a8078fdbf0de3b872443adfa7d6897d9a362 +size 525299 diff --git a/vlm/train/BJgza6VtPB/12.png b/vlm/train/BJgza6VtPB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1f46a10f66623ed5dd5c0f85da7ca231927f72a5 --- /dev/null +++ b/vlm/train/BJgza6VtPB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d92ffb47be63f24279ead5222d2c04a2a739fd4b46902c8bebf949d80d2640 +size 491350 diff --git a/vlm/train/BJgza6VtPB/13.png b/vlm/train/BJgza6VtPB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4f1420699166d8f5156a076da86916d09743838d --- /dev/null +++ b/vlm/train/BJgza6VtPB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c99dc2b739f3c855ce0c217fef707e2ae5819d5d5e63808ee89ea06f537ced +size 415749 diff --git a/vlm/train/BJgza6VtPB/15.png b/vlm/train/BJgza6VtPB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f8a1c6422e3365d422d331351a637df53405b69e --- /dev/null +++ b/vlm/train/BJgza6VtPB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8420c6b28ea2587c75a8bbda0b55568fcccac6dc2b34ecb574630052eee6ba +size 280860 diff --git a/vlm/train/BJgza6VtPB/16.png b/vlm/train/BJgza6VtPB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..228f808258f68905863a96da3238a7315eef4acf --- /dev/null +++ b/vlm/train/BJgza6VtPB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:971025596d7e1a0391034ff9906f0e2ef16061b7ee6b6d80745aeeec89049ad8 +size 270363 diff --git a/vlm/train/BJgza6VtPB/4.png b/vlm/train/BJgza6VtPB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cf0444e70a2c9bef5c0cc8220aa313cce82a3e6b --- /dev/null +++ b/vlm/train/BJgza6VtPB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4df70687b623caf220a97fce5b2ce0847338419bc1fdca81b8456fb71cc88d9 +size 546570 diff --git a/vlm/train/BJgza6VtPB/5.png b/vlm/train/BJgza6VtPB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5f1535bb9aa293ad5a59cc9b65aada046c5dced5 --- /dev/null +++ b/vlm/train/BJgza6VtPB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b558565a5c866f98bff29632e2f13b84a590e030f6294da589bdb64ec751955b +size 563100 diff --git a/vlm/train/BJgza6VtPB/7.png b/vlm/train/BJgza6VtPB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..55fa1c41d5a3b8cbf0af3fd7bbdf88cfc039e266 --- /dev/null +++ b/vlm/train/BJgza6VtPB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e45b48b05d83102961cfece534feea5c8861155ba0e5146d2e6994592970777 +size 498497 diff --git a/vlm/train/BJgza6VtPB/8.png b/vlm/train/BJgza6VtPB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f4121a445cd937f47036fb34011c14bfc44819 --- /dev/null +++ b/vlm/train/BJgza6VtPB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec1692b303d4244e3e5044973da9e8eb79a7a84d9a36f981f2280a046e255d +size 561836 diff --git a/vlm/train/BJlAzTEKwS/0.png b/vlm/train/BJlAzTEKwS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2dc22c3ed9b78c4c50b58c32d04f608ef32a8ada --- /dev/null +++ b/vlm/train/BJlAzTEKwS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee47b337ad9f9ccef80b1dba8d2c5e54ff6be4d3de09197ac67c06e289f6dba +size 521384 diff --git a/vlm/train/BJlAzTEKwS/1.png b/vlm/train/BJlAzTEKwS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..11b9989cd1c65619dc9554fb9632b65293333f23 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc8b83ed1544ce89d0cfb9eff884fc1930eed0c54230b5ac83b0138442ce2d3 +size 521378 diff --git a/vlm/train/BJlAzTEKwS/10.png b/vlm/train/BJlAzTEKwS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8e6d56598372a312ce304ef3a60859de823ab969 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14701bed1af01e642f018d6205dec4942ed14bceaa024e17426e682b2fc2d73e +size 453445 diff --git a/vlm/train/BJlAzTEKwS/11.png b/vlm/train/BJlAzTEKwS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..af321a1031e52fa8e6284f72f2bc1031043a9e27 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9652d8f7ed853a22e8c450ea4de78aad9e9c30d1b8dfd669f7f992818ba940c8 +size 398636 diff --git a/vlm/train/BJlAzTEKwS/12.png b/vlm/train/BJlAzTEKwS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0760b8d40312afcaeb9c730b250e241cb9c9a5 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d8b01ca4e07f5d8d2064f92f094cd4eb49c4fd6721436f305824807bd13de3 +size 481801 diff --git a/vlm/train/BJlAzTEKwS/13.png b/vlm/train/BJlAzTEKwS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7bcceca0efd68e4ab50ce01e72308199c2fba4 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9ac66981503f868641dbf9ec09d2d12af0e2898aae3eb122732552782642c0 +size 176877 diff --git a/vlm/train/BJlAzTEKwS/14.png b/vlm/train/BJlAzTEKwS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..56cd215d58845441cd74d8a58a413f2c29d2febe --- /dev/null +++ b/vlm/train/BJlAzTEKwS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e1b0201e8e0b5bb6896647dab4e48cbac6f2f4be8ed8a2513841251afc9290 +size 267351 diff --git a/vlm/train/BJlAzTEKwS/15.png b/vlm/train/BJlAzTEKwS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d1cfd2d438a708a02ff19d75c821bfde06c80d28 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd4a67c3f13c8850e853632b5e6c57a8bbe817261a922a4ccca00dfe9d06d46 +size 162901 diff --git a/vlm/train/BJlAzTEKwS/16.png b/vlm/train/BJlAzTEKwS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d4efe2cac803eeaf8b567c81db793bf2f792cf66 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ddab1044332573a8528423b318dc2e4a8906131e355165a7fdb6e16deadf0a +size 540768 diff --git a/vlm/train/BJlAzTEKwS/17.png b/vlm/train/BJlAzTEKwS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..12be0cc439fa1dc79bdc4ea8ebd98094a989f35c --- /dev/null +++ b/vlm/train/BJlAzTEKwS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92bd0c1edaf739fb20b82eccd682c53b6be1ba67edeff151d46e071aeece56f5 +size 159271 diff --git a/vlm/train/BJlAzTEKwS/18.png b/vlm/train/BJlAzTEKwS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4fb88005bf85a8fb9d58a5b1ae35d55736c0d472 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666489fd8427d1262b28af1cdf3f4a806c15a93f13a97c906418193051e56031 +size 267424 diff --git a/vlm/train/BJlAzTEKwS/19.png b/vlm/train/BJlAzTEKwS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..465dd533ddd42b16f55e8d3946a19f790716ebcd --- /dev/null +++ b/vlm/train/BJlAzTEKwS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df471d76e29ac3a29ea58938c29df4423b00601b280e3f2bf6172f56b126583c +size 213439 diff --git a/vlm/train/BJlAzTEKwS/2.png b/vlm/train/BJlAzTEKwS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea1d1ed01cdde4d4d3a53fc5ddc068c766d3296 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3dfb4b2b6b59bb6d1f5c689c7fbe0a5c37d58f559735110e531fedca559413 +size 441057 diff --git a/vlm/train/BJlAzTEKwS/3.png b/vlm/train/BJlAzTEKwS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca7ad9edf099927161973c8e79299df9216e03c8 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56ad441b2ce10dac4ef2d635b9af059840ce9713dbc79089c670f486093682d +size 526387 diff --git a/vlm/train/BJlAzTEKwS/4.png b/vlm/train/BJlAzTEKwS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0876d5a6d3defdba59b3800d7e91368cf2b8cb --- /dev/null +++ b/vlm/train/BJlAzTEKwS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81ac6e68a3709567e3171afcf38644271adb757bfe2eed66f5d4e8194893fae +size 524507 diff --git a/vlm/train/BJlAzTEKwS/5.png b/vlm/train/BJlAzTEKwS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7c8ba60965b89668a5a9c7d2dad3831f421235e0 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6319ba9b4cd14b14ca52e1c858ab6cb5a67326ff97235e21c450ed9b33800b44 +size 645786 diff --git a/vlm/train/BJlAzTEKwS/6.png b/vlm/train/BJlAzTEKwS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1176393d89370dc0a58b055aa2c2bcccb2a8d5a3 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea6431826cc078c66fc1ef77eff0492d79df723881ac7914e48549f1b2533e1 +size 566943 diff --git a/vlm/train/BJlAzTEKwS/7.png b/vlm/train/BJlAzTEKwS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa7f33127ba18845258ce8f2d04feb1aaff9d09 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89119e25f4cf66f63f39c2b8bf2d3aa08010ec34c06996e36bfbd20cc6454558 +size 556394 diff --git a/vlm/train/BJlAzTEKwS/8.png b/vlm/train/BJlAzTEKwS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5c42112498b17e576427a3d726aacf187e454d38 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cc0835c700480eb42255ae2df546d0243828e53be48a778a29893ffde82246 +size 548228 diff --git a/vlm/train/BJlAzTEKwS/9.png b/vlm/train/BJlAzTEKwS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d746ef6981644872311d916ea0be1c66b7c52b86 --- /dev/null +++ b/vlm/train/BJlAzTEKwS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8379ddb04ebc1543d3ffa864ee09633978acc6d8432c236c335e0e88665c75 +size 452747 diff --git a/vlm/train/ByOvsIqeg/0.png b/vlm/train/ByOvsIqeg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..284b88304eeb95556803be41c3fe7b2f2b25955e --- /dev/null +++ b/vlm/train/ByOvsIqeg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d12b3f8b4e013d5057989beb56734f479fbd54ea9d04b6ef757ec135f10854d +size 519493 diff --git a/vlm/train/ByOvsIqeg/1.png b/vlm/train/ByOvsIqeg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..595f7bd43c1662989d37ec77b281549965045e41 --- /dev/null +++ b/vlm/train/ByOvsIqeg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494f6bb552150d4baff9a4e78028ea81bb12316223cab53f72d266c5762a4517 +size 561650 diff --git a/vlm/train/ByOvsIqeg/10.png b/vlm/train/ByOvsIqeg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..29e09dcbde12ed57a3c43af97fddee4688d69828 --- /dev/null +++ b/vlm/train/ByOvsIqeg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2a75deafd22f3883ed04acb7d767b05deceeb9c8b03cf8976b9c7a80cafc1f +size 306006 diff --git a/vlm/train/ByOvsIqeg/2.png b/vlm/train/ByOvsIqeg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7800f04797f007d6a3d95975034b2bb1e7825a8a --- /dev/null +++ b/vlm/train/ByOvsIqeg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf33ad2725ff465e3935797d8472c4a408c59c149aa2b8967d1c91934cd23c85 +size 388385 diff --git a/vlm/train/ByOvsIqeg/3.png b/vlm/train/ByOvsIqeg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e48ab3c2fd379e515332b5cae386bd09862fe916 --- /dev/null +++ b/vlm/train/ByOvsIqeg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e122bfd585ed9def2559776a17b88be4b5f862d3d2da6761c43b7228bf8eb9 +size 388689 diff --git a/vlm/train/ByOvsIqeg/4.png b/vlm/train/ByOvsIqeg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..221302cc734391f2fce414ec57d3e1c6d20abc7d --- /dev/null +++ b/vlm/train/ByOvsIqeg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66030e46769e5b12e34791606b193a4790d00aacaf25be0b9da8bf77c3fc5746 +size 425141 diff --git a/vlm/train/ByOvsIqeg/5.png b/vlm/train/ByOvsIqeg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dcacc8239b589c5a330fec56c7490aca479837c3 --- /dev/null +++ b/vlm/train/ByOvsIqeg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fca2962cf31090868458a5b9ce27245cc5b3fe8ffafc9d0901c9e271e4ba87f +size 423066 diff --git a/vlm/train/ByOvsIqeg/6.png b/vlm/train/ByOvsIqeg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c012b2f1d7fc25377822b7df6d3137f43da0113c --- /dev/null +++ b/vlm/train/ByOvsIqeg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c451c8c8a95230c28d684a8e1c16e191737253ae6b74bfe2bbdaf6a18c6ec85 +size 447098 diff --git a/vlm/train/ByOvsIqeg/7.png b/vlm/train/ByOvsIqeg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9d52c050f8772a04b111de83ae7952c5d2ff4a0e --- /dev/null +++ b/vlm/train/ByOvsIqeg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cb88bbb42a63003b6fee1883fc0c6c539723a452e9b3a247e365f17941c888 +size 486127 diff --git a/vlm/train/ByOvsIqeg/8.png b/vlm/train/ByOvsIqeg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0deef0927ad7564833e56c6d323a2f705966516a --- /dev/null +++ b/vlm/train/ByOvsIqeg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b1ce0723d1f7198ce2d678e0c34b31ed9fa06eb2d4cca537f81383d0cee80b +size 471867 diff --git a/vlm/train/ByOvsIqeg/9.png b/vlm/train/ByOvsIqeg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4b507efd8770a381a4b66c122265138d321d01 --- /dev/null +++ b/vlm/train/ByOvsIqeg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e205e00b54a7623ef9a6a8f68721930517884e32f8cb78a2198bd550aa9a546 +size 495920 diff --git a/vlm/train/CU0APx9LMaL/0.png b/vlm/train/CU0APx9LMaL/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ece0a736541c431aacb5f07f4d870ef0e5f147b9 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5229016d662c212669920a70f36d2732d7f6f2347badb2e9ba521a5004c3059e +size 506942 diff --git a/vlm/train/CU0APx9LMaL/1.png b/vlm/train/CU0APx9LMaL/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0270d386dc2b31dc6bcbdd681ac984b05dbf0b14 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0002056cdd4593c83d7e7297668525047f997a7c530700ff7e995166b59316 +size 628230 diff --git a/vlm/train/CU0APx9LMaL/10.png b/vlm/train/CU0APx9LMaL/10.png new file mode 100644 index 0000000000000000000000000000000000000000..228f1970b1e6204851bf68c3c091dd77818a98fd --- /dev/null +++ b/vlm/train/CU0APx9LMaL/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204253561d7864f3ab8df3f9d95d9b69a8fe32ebc3b2195f51037d4dfe31e9dc +size 516925 diff --git a/vlm/train/CU0APx9LMaL/11.png b/vlm/train/CU0APx9LMaL/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd0726e6914d0b328f31427ae029c3a63094bb6 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910c950147098c4c63389e9e9ab34f94695cc6dedfa2a89e7b8fb75660b22d17 +size 173637 diff --git a/vlm/train/CU0APx9LMaL/12.png b/vlm/train/CU0APx9LMaL/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7423af96ae5c5e548292ddb9ba4760c4cc217fcc --- /dev/null +++ b/vlm/train/CU0APx9LMaL/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100e37f34edda438da4cf42d65c888c8b10676f79c5b52892f633b6d9c1afc89 +size 389999 diff --git a/vlm/train/CU0APx9LMaL/13.png b/vlm/train/CU0APx9LMaL/13.png new file mode 100644 index 0000000000000000000000000000000000000000..50543bfeadc586854427b5fe5dd4be8a9d765a62 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55563ee6bf40582b845f7fa0b95e9c9500759dc8d70bc1b93086e11c340f17fb +size 506788 diff --git a/vlm/train/CU0APx9LMaL/14.png b/vlm/train/CU0APx9LMaL/14.png new file mode 100644 index 0000000000000000000000000000000000000000..27cb4927085620ddc4740bcc5b9f370a2c65439f --- /dev/null +++ b/vlm/train/CU0APx9LMaL/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c826849e3f18f97093b0144d966e40e90e0ae629de1fef8f7cd2a7c5613536d +size 164160 diff --git a/vlm/train/CU0APx9LMaL/2.png b/vlm/train/CU0APx9LMaL/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2578c9f81dd5762c69443875cec545a8cf05897c --- /dev/null +++ b/vlm/train/CU0APx9LMaL/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2203fc968a670303954467e2b5926c78f4f9521bc5d4df24186158a49166aed4 +size 637778 diff --git a/vlm/train/CU0APx9LMaL/3.png b/vlm/train/CU0APx9LMaL/3.png new file mode 100644 index 0000000000000000000000000000000000000000..32b8f34fbd0b01e8af3a575c7207070084fc890d --- /dev/null +++ b/vlm/train/CU0APx9LMaL/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fa1698eef46525115b2b0be48484d21aa9cdef72f2f59cd9b6e2e04aeb27c5 +size 625415 diff --git a/vlm/train/CU0APx9LMaL/4.png b/vlm/train/CU0APx9LMaL/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e9ad765826f98f892d9cb0d06a85d8667da48c8 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06df292342d6198a9b2ba0f53cd31b3634ca9620045232cc951c8e9f4117c34e +size 584767 diff --git a/vlm/train/CU0APx9LMaL/5.png b/vlm/train/CU0APx9LMaL/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a198dee2ac4bc96707aecbe32da3644998e235 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aaed94d973c94e63ba385e03ad40473b16985046fbc56a905f1f25a1da986eb +size 480278 diff --git a/vlm/train/CU0APx9LMaL/6.png b/vlm/train/CU0APx9LMaL/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bb033079c9a81eff8b62b5ad036d57c0ab24c4b8 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58be6d5b4e845208d8e9c66c825bae9fd9bec8a910920c2c26a3900039078e3 +size 612571 diff --git a/vlm/train/CU0APx9LMaL/7.png b/vlm/train/CU0APx9LMaL/7.png new file mode 100644 index 0000000000000000000000000000000000000000..02cf5abd0b07bba8b97443a78165c1dac4fb1303 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1973c3732fe0fd0a65fad441ac949c2efebef20fa183028b680aea9e785c2389 +size 633287 diff --git a/vlm/train/CU0APx9LMaL/8.png b/vlm/train/CU0APx9LMaL/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b996f9f9a60545e2a6e18161a60640b3f0b0f4f --- /dev/null +++ b/vlm/train/CU0APx9LMaL/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d775a0877cda899d6a31b9436a0fb7ddce67a3c216d07823f55a8845052f9c9 +size 659361 diff --git a/vlm/train/CU0APx9LMaL/9.png b/vlm/train/CU0APx9LMaL/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5ae6c39f3cd77ddfa9e3295d414382454d64fe44 --- /dev/null +++ b/vlm/train/CU0APx9LMaL/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199a54d3e76d9e0e17a25ad8c998235a031120224a7f2beb1cb1d107fb6f521f +size 535657 diff --git a/vlm/train/H1gEP6NFwr/0.png b/vlm/train/H1gEP6NFwr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c30e2cfa3393b086a2a7a8b3f10936b92dd8800d --- /dev/null +++ b/vlm/train/H1gEP6NFwr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b1eefed464e6d80035de1f25207a51f59edfde86888be84ec6b9d985748218 +size 509059 diff --git a/vlm/train/H1gEP6NFwr/1.png b/vlm/train/H1gEP6NFwr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..70e85b0d34f8a9544c92cfa0c114f1bcc2e7ef3d --- /dev/null +++ b/vlm/train/H1gEP6NFwr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2050e464b8cf9e5b183abba74ffaff9dd0a96c084e039c54ae3cf097a98deff7 +size 485576 diff --git a/vlm/train/H1gEP6NFwr/10.png b/vlm/train/H1gEP6NFwr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ab2aeca126c4ee1ad24915ef6806f300597182 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c604cde3830f0c940205e5303f0ca97f4a56732c5c4ca8b7614d4d535731a9 +size 468680 diff --git a/vlm/train/H1gEP6NFwr/11.png b/vlm/train/H1gEP6NFwr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..89ee5e4437d88931459c4967753fdf598fc4d134 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe19de718249fb0d8403c808cdf4d1060f8b2aa30a53bdf1525e9a0509998ce +size 536128 diff --git a/vlm/train/H1gEP6NFwr/12.png b/vlm/train/H1gEP6NFwr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..63b3e420631901e8e64b40521c6bdf059e3ce941 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d5299c7a92b86099ce5ccfd6ea6443996b0ae4cba1f9b8a6b03b6cbf22b2a9 +size 235894 diff --git a/vlm/train/H1gEP6NFwr/13.png b/vlm/train/H1gEP6NFwr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..1d80c3c695a5a450320056f98c54c01ebcf12af3 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b332c1e236eb2aae65f017b6c15590334c52bcca8eee43d44c16a56290a5f9c4 +size 210912 diff --git a/vlm/train/H1gEP6NFwr/14.png b/vlm/train/H1gEP6NFwr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5dba615ff628412a92fb6961796d526a73b441bc --- /dev/null +++ b/vlm/train/H1gEP6NFwr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121b4a8547337adc2fbc4c9b897e53a5863920dd96694b5b97be7ba4f538c4a5 +size 217324 diff --git a/vlm/train/H1gEP6NFwr/15.png b/vlm/train/H1gEP6NFwr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8cbe696261093762eec43a6a81d251ab081d95e7 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf897f36d7b0b207e2c2a7e1b8633b39caa67438f8ee8bdb05c243acade08d1 +size 200837 diff --git a/vlm/train/H1gEP6NFwr/16.png b/vlm/train/H1gEP6NFwr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..39d3287ea7368f3d2a2dcbea5b903a57170348dc --- /dev/null +++ b/vlm/train/H1gEP6NFwr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82817cd03e6625a67203b29df9e772bd910bae95dd9d5f242eacf402235710b5 +size 218524 diff --git a/vlm/train/H1gEP6NFwr/2.png b/vlm/train/H1gEP6NFwr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..218d09610cf7c621c3179846a8b1f008482e41cb --- /dev/null +++ b/vlm/train/H1gEP6NFwr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d092ca04e0dec80d9d2d572645d5ca10760607411c87afd000049ed8ddf638 +size 465151 diff --git a/vlm/train/H1gEP6NFwr/3.png b/vlm/train/H1gEP6NFwr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..494e79655e46d84f61b53de3a3133e60a5954db0 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b92ec165f05bd1b72adce66bbea8a8f8022499b86a660076a48dbc73d9050d8 +size 577655 diff --git a/vlm/train/H1gEP6NFwr/4.png b/vlm/train/H1gEP6NFwr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a2cf878c5d3830eff276198a14e32389bf58bee9 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85749ea998b861aeab47451980b8cdf59363f95192a4cd72f6fb9a5a6e8b217 +size 499017 diff --git a/vlm/train/H1gEP6NFwr/5.png b/vlm/train/H1gEP6NFwr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8116217c65d0519860d8e628bad69d2a422d12c0 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9b4da3e7ed53792701968e06d73bbde4fa97e2690c27c03b1ef209c51e3db5 +size 605413 diff --git a/vlm/train/H1gEP6NFwr/6.png b/vlm/train/H1gEP6NFwr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..833343c009854b4255e22f159b45f9dbc1a9ba7d --- /dev/null +++ b/vlm/train/H1gEP6NFwr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5bda778838b3a13a9cbdb961f5a52ad987d4317fcf38e39c46f446823c869c +size 574259 diff --git a/vlm/train/H1gEP6NFwr/7.png b/vlm/train/H1gEP6NFwr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8684a3985e0f57a97dc49f52165dfd943e1d6f --- /dev/null +++ b/vlm/train/H1gEP6NFwr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b72132eb1145024d0e06999feb7cbdcec033f5abaed737e7cda07276b9f4913 +size 292731 diff --git a/vlm/train/H1gEP6NFwr/8.png b/vlm/train/H1gEP6NFwr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b9441246a776e302b48bd698ef3b1444b0e9549 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a63050a500b3f58b50e5398f1416419d8650eb11dd82292a7bfa7a3eb35d71 +size 564006 diff --git a/vlm/train/H1gEP6NFwr/9.png b/vlm/train/H1gEP6NFwr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d6570c3b1b49daed8712d06b5258b34401db5116 --- /dev/null +++ b/vlm/train/H1gEP6NFwr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44965e095cd39b22606274754027a779010bea85d432b091a2135528c8ace2ec +size 597838 diff --git a/vlm/train/HJGkisCcKm/10.png b/vlm/train/HJGkisCcKm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a496090a69547eb7736304d22b32728f8620d0a9 --- /dev/null +++ b/vlm/train/HJGkisCcKm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95509ef9b0b6846c5c3ec5f46e88b5d940a4321fa65d50645ebf732b918be064 +size 494434 diff --git a/vlm/train/HJGkisCcKm/6.png b/vlm/train/HJGkisCcKm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4a7757a54017e37fcea36240c0f2d4818d5f9ca9 --- /dev/null +++ b/vlm/train/HJGkisCcKm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204df12a95c45e4596629a624115b1d4b7d386ead22500caee52e9f49d2ba54a +size 531824 diff --git a/vlm/train/HJSA_e1AW/0.png b/vlm/train/HJSA_e1AW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f65657af1ac2b14f88823517ec275af7b9b74a30 --- /dev/null +++ b/vlm/train/HJSA_e1AW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2070dd43588609882872babb1035bf2b1a10ee465cc3fe0eb64584b795347d97 +size 539273 diff --git a/vlm/train/HJSA_e1AW/1.png b/vlm/train/HJSA_e1AW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..68d074d0ef5bb7a96855ad1339eb17957119a54f --- /dev/null +++ b/vlm/train/HJSA_e1AW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b05113835cb0f5fd56dc0c9e0da1029cb3d484ed6a1cc2d6b54e505cba1ce27 +size 453567 diff --git a/vlm/train/HJSA_e1AW/10.png b/vlm/train/HJSA_e1AW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..998e71feeaa951a596815e34827951f91dd9b9a5 --- /dev/null +++ b/vlm/train/HJSA_e1AW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8ef42228a6b99bb10615c6819b9cdf49e7bf5c0c3799d883c0f77f9284c64a +size 359147 diff --git a/vlm/train/HJSA_e1AW/11.png b/vlm/train/HJSA_e1AW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..35ab97e807bb0f9bb080057215f8bac0b8579350 --- /dev/null +++ b/vlm/train/HJSA_e1AW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01ebf3721f8e07e7a38864561137d021f24fdc744a891e34636271a02a0ca8d +size 499088 diff --git a/vlm/train/HJSA_e1AW/12.png b/vlm/train/HJSA_e1AW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b16425912aa8e132402e9192cad82d93e49a8ec2 --- /dev/null +++ b/vlm/train/HJSA_e1AW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ce98c50d63e1bc80d8fd72b85ecc3367f5741b3bb6a2188a5729d55f357bc0 +size 406009 diff --git a/vlm/train/HJSA_e1AW/2.png b/vlm/train/HJSA_e1AW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..491cdd75470c6b6d86917209595892040fb8aa20 --- /dev/null +++ b/vlm/train/HJSA_e1AW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3b73fea04c951fc40650731f231029885cf254106a184a069605e9855e9efc +size 506942 diff --git a/vlm/train/HJSA_e1AW/3.png b/vlm/train/HJSA_e1AW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9e82f946e2e7bd79c26525f1e1b297201720300e --- /dev/null +++ b/vlm/train/HJSA_e1AW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595c4f74020a3515524c129c20baa488690a2c3294913615fee0e229493b97cb +size 387826 diff --git a/vlm/train/HJSA_e1AW/4.png b/vlm/train/HJSA_e1AW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1116d8c4ece89644a6eba455265d88ec138cdb00 --- /dev/null +++ b/vlm/train/HJSA_e1AW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1ea3d8ea05a1d6df37491594dfa5fa55b3c0245b05298f8a8af420aae1184f +size 493019 diff --git a/vlm/train/HJSA_e1AW/5.png b/vlm/train/HJSA_e1AW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ff9af83a61740d5eddaef05cd22ad20246b0dae9 --- /dev/null +++ b/vlm/train/HJSA_e1AW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e8376fb7884cd4160def183ceb2f092aef84d511b60d1574f1b9863f0c302c +size 548073 diff --git a/vlm/train/HJSA_e1AW/6.png b/vlm/train/HJSA_e1AW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6d6b0fda31349eb35e2f4044588b46e9a34aaee4 --- /dev/null +++ b/vlm/train/HJSA_e1AW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1756eed07c371e239588ef0991009e72510ca5e046e79318ebd19ba95b443a12 +size 472132 diff --git a/vlm/train/HJSA_e1AW/7.png b/vlm/train/HJSA_e1AW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bfbc989497eaa1aca518a6a4bfd36ddf7c8f3f28 --- /dev/null +++ b/vlm/train/HJSA_e1AW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5014cb50c41dd5efc344209e87b8da224bbeb7481c360ad721d89ffaa8b5ef07 +size 496516 diff --git a/vlm/train/HJSA_e1AW/8.png b/vlm/train/HJSA_e1AW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..02ccc81101952a817d6cc6f46a2481d95acce2ce --- /dev/null +++ b/vlm/train/HJSA_e1AW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c5942f1923b39d64164c4f9993347338bff4c675f1b353a4757230d24f13c3 +size 598495 diff --git a/vlm/train/HJSA_e1AW/9.png b/vlm/train/HJSA_e1AW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cde29ad355a2b18e476c4a8a3341ddc10f42eb3c --- /dev/null +++ b/vlm/train/HJSA_e1AW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb0a83235e1647b7e93ed13a2856b41c4b4fcd4f404060359b7b6ed7713fd8d +size 580010 diff --git a/vlm/train/HkIQH7qel/0.png b/vlm/train/HkIQH7qel/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5ddd497c7dd210c1b2b2655bd46258ead756c2c3 --- /dev/null +++ b/vlm/train/HkIQH7qel/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9bb3450f2b277d9206dfb0644f09ca5ca7d68cd8e679a8269e8ada5ea4aa4ab +size 495056 diff --git a/vlm/train/HkIQH7qel/1.png b/vlm/train/HkIQH7qel/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c2583cd2aeae8899fcd1d55ce07d301cff42fcaf --- /dev/null +++ b/vlm/train/HkIQH7qel/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640c310efd65c4606058a080e5f50c01844b4eae86b5244bd8dea6acd10ab2ef +size 552996 diff --git a/vlm/train/HkIQH7qel/10.png b/vlm/train/HkIQH7qel/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8e1ca66866c3931cda1c774b038a9b0059ff0742 --- /dev/null +++ b/vlm/train/HkIQH7qel/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53702104e1f83df210ead17e828638e1c22861f64706ad9b79a137b26403479b +size 125370 diff --git a/vlm/train/HkIQH7qel/2.png b/vlm/train/HkIQH7qel/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ca025178c7e9cb5e46ff464ccf9ba7a46956cb25 --- /dev/null +++ b/vlm/train/HkIQH7qel/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db786d6f75a471aafeede9ccee6a4ed6dd667b74e124f546dff9ce060ffeca5f +size 518897 diff --git a/vlm/train/HkIQH7qel/3.png b/vlm/train/HkIQH7qel/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b3fcdafbfa69c21b39d5937c68d379afe208561c --- /dev/null +++ b/vlm/train/HkIQH7qel/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41fd71f75fe9703a68258104d0c2de345796f3301a12d18a020091c2579d539 +size 435797 diff --git a/vlm/train/HkIQH7qel/4.png b/vlm/train/HkIQH7qel/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b313296b604b0bd2a99d5bfd3c52dbc98cef4c --- /dev/null +++ b/vlm/train/HkIQH7qel/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e7f7de1cffd4716b33bdbd44f5885e719756cd1b087fdf2b9dd6825e2427cb +size 533281 diff --git a/vlm/train/HkIQH7qel/5.png b/vlm/train/HkIQH7qel/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7b72f1a17c41b701113519d4a75cafd8d93d35df --- /dev/null +++ b/vlm/train/HkIQH7qel/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c5c5ebce98c1a6f7d1b007e2cc19bdfed79f1f4dc2a141a0fef8075fa77f8a +size 516018 diff --git a/vlm/train/HkIQH7qel/6.png b/vlm/train/HkIQH7qel/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c9139c7660957aec19e023feed9c852d29cd1c4f --- /dev/null +++ b/vlm/train/HkIQH7qel/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2647c4ae6ff28617c872300d5a338f1c413a6171306a7f24f95899b52dca876 +size 545510 diff --git a/vlm/train/HkIQH7qel/7.png b/vlm/train/HkIQH7qel/7.png new file mode 100644 index 0000000000000000000000000000000000000000..98e9ddfe3613eed01854759674d619f9e97617bd --- /dev/null +++ b/vlm/train/HkIQH7qel/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3969e95c3db0efb02840ffa0f58e60bf56e9fac1a757d9a6d083727f5d951a9 +size 512885 diff --git a/vlm/train/HkIQH7qel/8.png b/vlm/train/HkIQH7qel/8.png new file mode 100644 index 0000000000000000000000000000000000000000..42d58c62e3ccd5bfcb0c0a0984abfec54b14fb27 --- /dev/null +++ b/vlm/train/HkIQH7qel/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66cc48fc6b7acc084a292b9ee00ea13548274e26d84b35cc153f2defa0de052 +size 453889 diff --git a/vlm/train/HkIQH7qel/9.png b/vlm/train/HkIQH7qel/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f946a4e73e584957c0537bb106e63f83732f3f99 --- /dev/null +++ b/vlm/train/HkIQH7qel/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f247b48d657ff89563bf09c59471edcd3b989a7a8f5e33a888a99a6f037ee8e6 +size 502252 diff --git a/vlm/train/HkxAS6VFDB/0.png b/vlm/train/HkxAS6VFDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ef13cc5dc505fa7c492ed07fd44c6032bf656fb3 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5f0c9b4e0f49e75479fe26e12945271b0bd62b6c8e47c3a60b175a1a7f82ed +size 504863 diff --git a/vlm/train/HkxAS6VFDB/1.png b/vlm/train/HkxAS6VFDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7858c76414f6f4a7afd267c33bac4911d203a4e9 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1c87557983d98c2db8aece9f7d8278447847c2c313925a3c245ca15ecf4c25 +size 514514 diff --git a/vlm/train/HkxAS6VFDB/10.png b/vlm/train/HkxAS6VFDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1bfe4131a22068d39da1054288726bf3c14a19eb --- /dev/null +++ b/vlm/train/HkxAS6VFDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c68b82bdfaf9d1ff9ccdece884189d662137a29e7e0602ac5782aa656b60af4 +size 564760 diff --git a/vlm/train/HkxAS6VFDB/11.png b/vlm/train/HkxAS6VFDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..736c95b305eff08e8f02d42c2c29f65e49ad0618 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b179752dd0146f279e866e5f0d5432aaa00266545c1f662dcd6962da0681a08 +size 574407 diff --git a/vlm/train/HkxAS6VFDB/12.png b/vlm/train/HkxAS6VFDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3cdbad7f8884cc335df4b326d7a2659692811778 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6659a843371c408d436e5f7703cd62566248c7cfc02dc666545d1ccae7965a7 +size 341359 diff --git a/vlm/train/HkxAS6VFDB/13.png b/vlm/train/HkxAS6VFDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0fd6dc3fd74fb52d3ff23189ab4ed449326a30f3 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40c02aff90d1e1bf4d78c8feb7b6593556d498d7e8771ba964153e467871f8e +size 466240 diff --git a/vlm/train/HkxAS6VFDB/14.png b/vlm/train/HkxAS6VFDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4e939ffa048fd4d27b09869e247694c69fd79a63 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63aad5886936507c1c6f89b8542cb9f56896cdf5ecd2fce42a7abf73b9b0556 +size 313371 diff --git a/vlm/train/HkxAS6VFDB/15.png b/vlm/train/HkxAS6VFDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b0ce12dc3561e70cdc954189531e4740045e9bea --- /dev/null +++ b/vlm/train/HkxAS6VFDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419c8e6bb8a3572543d3c5b3ac543d685610411eecfdb9d7558de8862bba4dd8 +size 255076 diff --git a/vlm/train/HkxAS6VFDB/2.png b/vlm/train/HkxAS6VFDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f8db0da31121f2c070b922faa831ac06f0c0bdf5 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad620fe1aad44265629da29d791a4470ccde295bbd21410260b8b75d43cbaba6 +size 507085 diff --git a/vlm/train/HkxAS6VFDB/3.png b/vlm/train/HkxAS6VFDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b38cde8bcd055f24bc324b048578d64ff5cb30d9 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8dc4919ed33064eb07fcab9b9091b836e6d14e6e602c036055ef3a530d339c +size 438422 diff --git a/vlm/train/HkxAS6VFDB/4.png b/vlm/train/HkxAS6VFDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..eae693bd25a1f6b9c29084bcb7538ad69ddbf7bd --- /dev/null +++ b/vlm/train/HkxAS6VFDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4904dfffb0dd5802a608807992631f5a1ab4a7c82a9c81db42c65c2a760342 +size 539721 diff --git a/vlm/train/HkxAS6VFDB/5.png b/vlm/train/HkxAS6VFDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b88eb5d6ce86c80bea1f216bf258f27ef6d5aa41 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ef9d798379dd0b7e0b221eace906b2790bcbb4bc1bfbf784dbd121b748aa2d +size 569726 diff --git a/vlm/train/HkxAS6VFDB/6.png b/vlm/train/HkxAS6VFDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..75967a62b2ce692b748a3e84f61441e58d51da76 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9067cfc1354623c138a8942872194d3fe3acb048bd870c8881b7fd2400ddcb26 +size 553597 diff --git a/vlm/train/HkxAS6VFDB/7.png b/vlm/train/HkxAS6VFDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3a48e971d12a8b46cfbbb944aee9d939f6a1e501 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3c1fb6f74677ea3bcf190c6634540c6d2aa0255d79684e97ba195f690d8d1b +size 563759 diff --git a/vlm/train/HkxAS6VFDB/8.png b/vlm/train/HkxAS6VFDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe1e9144674bab9b9ae710f7bd21965b5411652 --- /dev/null +++ b/vlm/train/HkxAS6VFDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fcfd1b665dc0a1a930b2e2f9efab9c0c043391a2eabb143e33edc8ba28d3927 +size 445354 diff --git a/vlm/train/HkxAS6VFDB/9.png b/vlm/train/HkxAS6VFDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2273d99ab118895fe3064007c18b732cb16818fb --- /dev/null +++ b/vlm/train/HkxAS6VFDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f882191f6696ef93e3cb585d9ce6dd17792d25a56a163983f275a99f4319999 +size 580119 diff --git a/vlm/train/JiYq3eqTKY/0.png b/vlm/train/JiYq3eqTKY/0.png new file mode 100644 index 0000000000000000000000000000000000000000..103ae1ac9ca518ab9a496d37dde20829f8fa4238 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c7d1b025d7cffa5e4b24e038d2360873fcf6e49b9bd1039477eb19935a6890 +size 549986 diff --git a/vlm/train/JiYq3eqTKY/1.png b/vlm/train/JiYq3eqTKY/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0465641dadb7779ca1f9e195785d53961669cc --- /dev/null +++ b/vlm/train/JiYq3eqTKY/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2083ec08e7c4ff91656d587637d1d96d0711c57bee8df029b3ae6dac85fe122 +size 549879 diff --git a/vlm/train/JiYq3eqTKY/10.png b/vlm/train/JiYq3eqTKY/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2e58b2394df1413a39bbf8570b704f3153c3a4 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b709aee09833e9192f496ea6ec1cee80a0175601b68c7806420c6b7d5c7f865b +size 595664 diff --git a/vlm/train/JiYq3eqTKY/11.png b/vlm/train/JiYq3eqTKY/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7479fb03183bf18522b63cf5a632b9977d141612 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132cfd2a4bd2dd4293193c83253fd620250383526805f31e82b3594a58234d71 +size 620503 diff --git a/vlm/train/JiYq3eqTKY/12.png b/vlm/train/JiYq3eqTKY/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac6c43454f90921515c20898e947b20dfc39f84 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f4ab67be6370b1b47603ca32fe8cea63e49d37172ac693d3d8ebb7dd319331 +size 375584 diff --git a/vlm/train/JiYq3eqTKY/13.png b/vlm/train/JiYq3eqTKY/13.png new file mode 100644 index 0000000000000000000000000000000000000000..329f2bfbc58c6cfcc312097bfb4fe8c101f98b4f --- /dev/null +++ b/vlm/train/JiYq3eqTKY/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fe14e095a286fe77fba5b308e1c5ed6cb097c8227d8eb7e02a0853b7705fb2 +size 316360 diff --git a/vlm/train/JiYq3eqTKY/14.png b/vlm/train/JiYq3eqTKY/14.png new file mode 100644 index 0000000000000000000000000000000000000000..891ec248dca8862c9fa5e8b8dc967a737abad4be --- /dev/null +++ b/vlm/train/JiYq3eqTKY/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bf9b1faaca9d269860cfbc1a1f28b426de3e121d895af9e6df72670f3cbdc6 +size 341841 diff --git a/vlm/train/JiYq3eqTKY/15.png b/vlm/train/JiYq3eqTKY/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fda87f0adf1c6e35a19b5408b5f48a9ee66a804c --- /dev/null +++ b/vlm/train/JiYq3eqTKY/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b8f5ec423219a43343864c7c3593be5038f5c0d40d05290e6a82e14e68af58 +size 308895 diff --git a/vlm/train/JiYq3eqTKY/16.png b/vlm/train/JiYq3eqTKY/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9270157da7be92b9678fc09cf157929c3c82b11e --- /dev/null +++ b/vlm/train/JiYq3eqTKY/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf347c2ef49aa9f067ed7cfc73243d97769f48f7fb4161bf926f71023e0c71d +size 240477 diff --git a/vlm/train/JiYq3eqTKY/17.png b/vlm/train/JiYq3eqTKY/17.png new file mode 100644 index 0000000000000000000000000000000000000000..458f1b28dc975bc1068de0060df004d25b3d2009 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d25d99cd630451ea75c013ed7a8053cf54bb40e9e5806acd5b30d738b31fb6a +size 294356 diff --git a/vlm/train/JiYq3eqTKY/18.png b/vlm/train/JiYq3eqTKY/18.png new file mode 100644 index 0000000000000000000000000000000000000000..d579776c753cb257b68f8540f813c0ec5f3e977d --- /dev/null +++ b/vlm/train/JiYq3eqTKY/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ca4085cb6f62bbecb6365381ded663bd324cdaf94c1b13782edd7850e6149f +size 425517 diff --git a/vlm/train/JiYq3eqTKY/19.png b/vlm/train/JiYq3eqTKY/19.png new file mode 100644 index 0000000000000000000000000000000000000000..465f4dc9322ac21caaa2d000c009315dad16f3a4 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6608826f85adfbc7d61d89c7e234449c862ba4971224b1015998677928045623 +size 388572 diff --git a/vlm/train/JiYq3eqTKY/2.png b/vlm/train/JiYq3eqTKY/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a0b0f4b190b4027d4ba7e8ed34d5f52a8b6f072b --- /dev/null +++ b/vlm/train/JiYq3eqTKY/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7c4e554e875ea2e948bcd499618516e3f94096c2a25b657c341ef5f19624dd +size 533368 diff --git a/vlm/train/JiYq3eqTKY/20.png b/vlm/train/JiYq3eqTKY/20.png new file mode 100644 index 0000000000000000000000000000000000000000..da470f328b9d7fd937566ee412c3b6ca158f62d9 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ea1dae511c91ebab8c15ee91c47e65280613b5cccbf149a5b3d870548352d1 +size 294697 diff --git a/vlm/train/JiYq3eqTKY/21.png b/vlm/train/JiYq3eqTKY/21.png new file mode 100644 index 0000000000000000000000000000000000000000..a0f15a24485d174e8a686157280c8037085eb122 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5065bd7ceb79468478fbcb67db9afb9f174a9a3d901864284819eb9d0e106078 +size 266015 diff --git a/vlm/train/JiYq3eqTKY/22.png b/vlm/train/JiYq3eqTKY/22.png new file mode 100644 index 0000000000000000000000000000000000000000..9f8aaaf8a54294bc85227cb7b726ee0af54aab06 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41546a8fe1b0eca4f0bd61346e7695d1a8d85edd2d3ccb60f6aee866a389d4c9 +size 324479 diff --git a/vlm/train/JiYq3eqTKY/23.png b/vlm/train/JiYq3eqTKY/23.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f2ef0c6ebbef0453784f33e33ac28d8055a127 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5059e0de1342b508c71c043b99b966d5860b74be8c501ae24e95c4b0501057a2 +size 190536 diff --git a/vlm/train/JiYq3eqTKY/24.png b/vlm/train/JiYq3eqTKY/24.png new file mode 100644 index 0000000000000000000000000000000000000000..464517b1a03e3570ac71c0a5a2b6c21a8584e196 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e26e935c61b7761504167f64f02c8571a8b43f7122437d927ffb05f0c041554 +size 161330 diff --git a/vlm/train/JiYq3eqTKY/25.png b/vlm/train/JiYq3eqTKY/25.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e8de4e3d612400b3dde9d4c2465f5ce4efb2c3 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0489d4643c4753848332638ff1c4a83c0a0841d83e8c85c7c1d964d24cca9ce9 +size 389150 diff --git a/vlm/train/JiYq3eqTKY/26.png b/vlm/train/JiYq3eqTKY/26.png new file mode 100644 index 0000000000000000000000000000000000000000..5a46a5f11e81ddc57e6946c44edd2bea1afcfde8 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8d12d0be8085ea023c6d55346dab4b61ce58c5103bee1976c7a2c48ae317b9 +size 304086 diff --git a/vlm/train/JiYq3eqTKY/27.png b/vlm/train/JiYq3eqTKY/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f843b27f128108e69704737ac9ac135da6ff2a --- /dev/null +++ b/vlm/train/JiYq3eqTKY/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8beb87c3b486c1e78d16dea97c52e99c59d541a8b31140cd5761f1d1aefd30a +size 524837 diff --git a/vlm/train/JiYq3eqTKY/28.png b/vlm/train/JiYq3eqTKY/28.png new file mode 100644 index 0000000000000000000000000000000000000000..1775ecee9ea2c2f910b8fcdc6d702afd411d5f97 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdb0358eee67fc19b15323cc4709be3010394d1c00e0c939db2ab7d3ebe1c89 +size 530563 diff --git a/vlm/train/JiYq3eqTKY/29.png b/vlm/train/JiYq3eqTKY/29.png new file mode 100644 index 0000000000000000000000000000000000000000..28caa84cf05a51bdac8194093a13dbebda2258a5 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0890f27cc339b522f51e119a35d3a0a9d06159234471e2d344d8246bd542ed6 +size 416392 diff --git a/vlm/train/JiYq3eqTKY/3.png b/vlm/train/JiYq3eqTKY/3.png new file mode 100644 index 0000000000000000000000000000000000000000..91188b1edc4967edfaf6ff863d935cfbfe721809 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8d57827dfd06ae62428a0d6d1afbee187088b2b7d820c19763e9e751ff2026 +size 515125 diff --git a/vlm/train/JiYq3eqTKY/4.png b/vlm/train/JiYq3eqTKY/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b016712043411214f57915438d8f145e4f0818ce --- /dev/null +++ b/vlm/train/JiYq3eqTKY/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f04050f1d7e8b1bd0c75c6d7e19191fb53b4891ceda77e18bbebf21ac50932d +size 551384 diff --git a/vlm/train/JiYq3eqTKY/5.png b/vlm/train/JiYq3eqTKY/5.png new file mode 100644 index 0000000000000000000000000000000000000000..031484d20d56d81a569c3d5921e5349c982bebc3 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb94c9e373269f32c402e1857c69da01ff2a25d447a0e37961d89d87c0e6ee6 +size 601079 diff --git a/vlm/train/JiYq3eqTKY/6.png b/vlm/train/JiYq3eqTKY/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f72a0707599171d275b81d37fdc587ddb532c56a --- /dev/null +++ b/vlm/train/JiYq3eqTKY/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90f3c3b349184dee78623e0a62a1db886e145ff7d641efbc0f857fae4bb6ae8 +size 632256 diff --git a/vlm/train/JiYq3eqTKY/7.png b/vlm/train/JiYq3eqTKY/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d88d7ef7c706590becd4b7c631704cd5fa322b17 --- /dev/null +++ b/vlm/train/JiYq3eqTKY/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ca024c8852e1cf1c4838a7407cbf3eeffbc33d71240ea90fbd6712fb191091 +size 620861 diff --git a/vlm/train/JiYq3eqTKY/8.png b/vlm/train/JiYq3eqTKY/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e7bca7e17bc856b3562e1417d05fb718e56efe1e --- /dev/null +++ b/vlm/train/JiYq3eqTKY/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7816046d2967fbfe3bdbb95536e885669bd0aa81554ef04f5f7b0d2be62815c0 +size 628273 diff --git a/vlm/train/JiYq3eqTKY/9.png b/vlm/train/JiYq3eqTKY/9.png new file mode 100644 index 0000000000000000000000000000000000000000..44585fc7e86e56b2da9f139adc277ca1246e206e --- /dev/null +++ b/vlm/train/JiYq3eqTKY/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb85a85c709045e2d5bbcc1c117b4a12fd3aba91fe7e6a3a95d9a139ffb0ddb +size 525871 diff --git a/vlm/train/KCd-3Pz8VjM/0.png b/vlm/train/KCd-3Pz8VjM/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9ac84dbbf27f56b1c408f5b00ade6f9cbe6413e4 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60fc2c994cb7d6398b904457a138653c0fd549d6ec9972554838aeefffc6676 +size 474259 diff --git a/vlm/train/KCd-3Pz8VjM/1.png b/vlm/train/KCd-3Pz8VjM/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3752c3102cda47347c3952f4879f488e08072559 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa0222f2088f1d882a29194cde57d52eafd7e5c4b0dbf312b979360d96eb265 +size 607300 diff --git a/vlm/train/KCd-3Pz8VjM/10.png b/vlm/train/KCd-3Pz8VjM/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f452dbd8e36cc54971511250bc61d273e6f603e5 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6b20a158e1040b0b703a18321aa67994164b8652367199c8b31e72d4c6fc93 +size 511305 diff --git a/vlm/train/KCd-3Pz8VjM/11.png b/vlm/train/KCd-3Pz8VjM/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fc256f0c32b7fbbe4c1e6af30cb44ecd5734f28a --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90a408e12fee503bed3562a957a72bd42dc88c762f29e26688ad6b7d21240d5 +size 547833 diff --git a/vlm/train/KCd-3Pz8VjM/12.png b/vlm/train/KCd-3Pz8VjM/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ee2064e9fa3b47f0ad7d0952e3deefd5a86972e1 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae4807e47f33d5878e777c920e2af3734de09094111d0d76fd3ce69efcf208a +size 526923 diff --git a/vlm/train/KCd-3Pz8VjM/13.png b/vlm/train/KCd-3Pz8VjM/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3c5f9459ac5486dd58d680b490808b849c49606b --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be6fde3ed05f881ffed57e673b4ae3a0abc1dd2874d52d5ee508b458899628f +size 164329 diff --git a/vlm/train/KCd-3Pz8VjM/2.png b/vlm/train/KCd-3Pz8VjM/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8ef9a4aae8993451a0f2bde183b85e34a4f3248f --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74a37b2670371c282f080ffb545d0ae52435049d296cafafee4998f714ed3be +size 603017 diff --git a/vlm/train/KCd-3Pz8VjM/3.png b/vlm/train/KCd-3Pz8VjM/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2f6b5d86f286190d6911c2ba952aaad2f3c6eecc --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24426be54335dc4387c66949b359f562f593e643bbc68843432b6ba3384863db +size 560097 diff --git a/vlm/train/KCd-3Pz8VjM/4.png b/vlm/train/KCd-3Pz8VjM/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ed787b27c9a0cd93c59fd4284867daa2eb6ccbd4 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904cdfc959656bed33a0e6d3ec65ee4ed6155bc62622d38ca795ed362b122ede +size 566390 diff --git a/vlm/train/KCd-3Pz8VjM/5.png b/vlm/train/KCd-3Pz8VjM/5.png new file mode 100644 index 0000000000000000000000000000000000000000..da6876c700936c54923a3b94d30ff6824fc29644 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a8921611bd4e8d770140d5c21e90867d6c643102aede1118cd11da404b58a6 +size 523788 diff --git a/vlm/train/KCd-3Pz8VjM/6.png b/vlm/train/KCd-3Pz8VjM/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ff4ee97748a9868c7616888c4f510da9cc82d591 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f560434553e71f2cfd2a94dc455970630e1f3132240054cf84207ecac7d820 +size 480208 diff --git a/vlm/train/KCd-3Pz8VjM/7.png b/vlm/train/KCd-3Pz8VjM/7.png new file mode 100644 index 0000000000000000000000000000000000000000..51a72dde9451b416605a82da01b8934624223a51 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11759ce4941e06e141f3ef2f280f96b731774f19e30268e71a635c01b1353b66 +size 587977 diff --git a/vlm/train/KCd-3Pz8VjM/8.png b/vlm/train/KCd-3Pz8VjM/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a3918db19640cfc2a56fb241841eb1fb52acbb2d --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c941783491a818a35069e9ef6f8e40bd2d87e2ca948a4c652694fad6dc2f0c +size 633474 diff --git a/vlm/train/KCd-3Pz8VjM/9.png b/vlm/train/KCd-3Pz8VjM/9.png new file mode 100644 index 0000000000000000000000000000000000000000..29f791bd7437da956625c7554cb257c58500f764 --- /dev/null +++ b/vlm/train/KCd-3Pz8VjM/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c3bab5deba2cd93da273af45ac6f90dfad90102b80068fc8b21c6b913d8a32 +size 506795 diff --git a/vlm/train/LXMSvPmsm0g/0.png b/vlm/train/LXMSvPmsm0g/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ef5ddfbe0d969821d42dd4c193146a1725b71961 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1717c4c871ec1aaaff4a409f55bf2193aae7bd4599c821572d5279bdb47f91 +size 512375 diff --git a/vlm/train/LXMSvPmsm0g/1.png b/vlm/train/LXMSvPmsm0g/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6758aa39494be4146ea1c20ac867428d05df100e --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b589020959a85cd60b30c0d4f19828598c5264f7faddfc84077cadf9e5dad5dd +size 607966 diff --git a/vlm/train/LXMSvPmsm0g/10.png b/vlm/train/LXMSvPmsm0g/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8891ce095b15925ce4896f746be081c3c52a02 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75006176bcdec1a8d12558af182dc449ce0c53d39b45108a0b01e30f6c2ff28e +size 548679 diff --git a/vlm/train/LXMSvPmsm0g/11.png b/vlm/train/LXMSvPmsm0g/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c850237c0828ccb48bf2cb7f8884bfd4dc4eee6c --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066c9397c3edbea535cb2471399e1505111c49d12ab30e88ea663a0e310c9995 +size 563685 diff --git a/vlm/train/LXMSvPmsm0g/12.png b/vlm/train/LXMSvPmsm0g/12.png new file mode 100644 index 0000000000000000000000000000000000000000..52ae0349d69957d04627afbbb13326bd0fbc29c0 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d83b9ec3a30260bdbd4ecb9bee8c3f194a16d2b99d535567a2369ebf086dd2f +size 114174 diff --git a/vlm/train/LXMSvPmsm0g/13.png b/vlm/train/LXMSvPmsm0g/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3564f15701e0f83b42d5b2844387062f13004134 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167942f5de3c3a0901ae3b023edb837e0156504ddc7ea9ec688b045e419c3f92 +size 517534 diff --git a/vlm/train/LXMSvPmsm0g/14.png b/vlm/train/LXMSvPmsm0g/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5f96e775e99bed12825334e046eb5b920866529 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14367f75e42969919183254f1cf91d5266f31bdec63befc7f14932e47462955 +size 528449 diff --git a/vlm/train/LXMSvPmsm0g/15.png b/vlm/train/LXMSvPmsm0g/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4a18d8c62e78e0524cf6d56a686dcac68f870085 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76c446dd36e336b69bdf892059cd6a5fd56b512fbba1b46c050127354b00e97 +size 505815 diff --git a/vlm/train/LXMSvPmsm0g/16.png b/vlm/train/LXMSvPmsm0g/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c39d3796f72b5b433467b44f145f7caa45941ec0 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2487b45a770a932e1ca7e609ce7c3e7845ebc0e4c3501d9108cb8ca11b1572b3 +size 596702 diff --git a/vlm/train/LXMSvPmsm0g/17.png b/vlm/train/LXMSvPmsm0g/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1c3174c7833415c96d02f3337b3c3e4d0aaef7ee --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17585c0df66d16bdadb96e012b1b929c6c78d51ecdf6175b3dfd5a901bdc7b93 +size 466102 diff --git a/vlm/train/LXMSvPmsm0g/18.png b/vlm/train/LXMSvPmsm0g/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8a6fe92ec51a8f2f98a00acee6c463921805daad --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2699e61df568771b0ece37c1b33485003ab7fe5772929fc0f081f37d69a0dbd8 +size 423333 diff --git a/vlm/train/LXMSvPmsm0g/2.png b/vlm/train/LXMSvPmsm0g/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ea3619da4f2ce65818318c626626bed9f411541 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819d7f25a6f61db90c934549a67d9729e01e5da3c91b235b5972911b2532a17 +size 631558 diff --git a/vlm/train/LXMSvPmsm0g/3.png b/vlm/train/LXMSvPmsm0g/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b534c61439df012572b7db3c9f4a95d56016417e --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d439b138244a9e60c7950f3ad9484b766c51fb71b51a923640143920a82ee30a +size 577967 diff --git a/vlm/train/LXMSvPmsm0g/4.png b/vlm/train/LXMSvPmsm0g/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c689c28ecf2caa83d48b241a44a8fc87d8c467de --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24b7fa89e736a1c2e778b4ef192ca842582779110066be1001185f65580e114 +size 676295 diff --git a/vlm/train/LXMSvPmsm0g/5.png b/vlm/train/LXMSvPmsm0g/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc2b5c01808f30a709dc54de5c897da26a3fc96 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7456f0d296da6b13a3e1c8baec29467a54833cae342814caefbfad2130b0286 +size 594283 diff --git a/vlm/train/LXMSvPmsm0g/6.png b/vlm/train/LXMSvPmsm0g/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7b6ce820e76e081a3b553892bd6079774d4251 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cff6b76614bc518d68dcaaf013bc1667545d47078bff8156d28d25ea3a733cf +size 682681 diff --git a/vlm/train/LXMSvPmsm0g/7.png b/vlm/train/LXMSvPmsm0g/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9a0c2a8bca9176e5a0eda2163d12b4196b96a0c7 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f381c128b8b0a4a009d171e82f7b9220598dd23dd44350ea7c5b3e67c897c4 +size 576580 diff --git a/vlm/train/LXMSvPmsm0g/8.png b/vlm/train/LXMSvPmsm0g/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a69ca6fd7c71d9b56e2ae214c362bdb763ffa37d --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b810bed99ab5360a6c7fc8f002548749cda804aab5ddf490890fb393fe3c4e7e +size 547424 diff --git a/vlm/train/LXMSvPmsm0g/9.png b/vlm/train/LXMSvPmsm0g/9.png new file mode 100644 index 0000000000000000000000000000000000000000..676ba3eb86c33d58120957df17c5294f44447ad8 --- /dev/null +++ b/vlm/train/LXMSvPmsm0g/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2e04d246ea2903cb9733d12a29f910286f0447d9b0b78e29733e4da560f899 +size 542700 diff --git a/vlm/train/RUQ1zwZR8_/0.png b/vlm/train/RUQ1zwZR8_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1f4d891e54b4b9adcfe6b86fc90dec23cb8b9f84 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdb95d3d3042dcfe49532c7a283a43bcdb6d0d97ea4baeedb801f2acff24ef6 +size 419285 diff --git a/vlm/train/RUQ1zwZR8_/1.png b/vlm/train/RUQ1zwZR8_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0738fff9c9be8d86aee4b40ef028f9d7bb0bb21d --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7848102515095c5d1d60a191a281e13f2739068059c1f21f7fa01ef7229c3684 +size 611950 diff --git a/vlm/train/RUQ1zwZR8_/10.png b/vlm/train/RUQ1zwZR8_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..22f3959ee9b54192b6b7ee221be87dce69416b76 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fe0c2d37e38a6392c8a31ca42d03b99ba1406bb69b0648365d36aefdcaccb0 +size 583261 diff --git a/vlm/train/RUQ1zwZR8_/11.png b/vlm/train/RUQ1zwZR8_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..60bbbe0d89393cdb98f52517ec8bfde47174d26d --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39fc35d419f97816587b30b343950f828bf9899ab8a673514c7740dbbb55966 +size 558370 diff --git a/vlm/train/RUQ1zwZR8_/2.png b/vlm/train/RUQ1zwZR8_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3238ec8114979bc49bd90f3b2f63fb045e1d0b63 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797381063f836fb7f1ad05c2348eced4f6632c81b819b8bf504b747cc0d26486 +size 442746 diff --git a/vlm/train/RUQ1zwZR8_/3.png b/vlm/train/RUQ1zwZR8_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5848508156e84254be065d224d9ac839e809cd58 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defe1df01ebdf1fa24b17776ff8fff1113dae499f0f19962236ec15570d9f3f1 +size 448192 diff --git a/vlm/train/RUQ1zwZR8_/4.png b/vlm/train/RUQ1zwZR8_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..da30dcc8f1e55fece1ffaf6af7d64fb9aa4e4b78 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb71c6c05358ff54ab8d1599509bee171198618f3b85057b79dd8cd3c1b5ebc +size 587138 diff --git a/vlm/train/RUQ1zwZR8_/5.png b/vlm/train/RUQ1zwZR8_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..41e659ce13557cc0e2cc9874fb3b7d04c33be845 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c0191feb11cce521273fac2581258736eafbccb5fe0e76cad11d68029fbcac +size 555553 diff --git a/vlm/train/RUQ1zwZR8_/6.png b/vlm/train/RUQ1zwZR8_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..54b0f456d3b666576fe3d97ca927a747af9843e3 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9fe16b34d1100408268ee073e2976ffe72d5fd47ee89cd66262aca79db27c5 +size 456479 diff --git a/vlm/train/RUQ1zwZR8_/7.png b/vlm/train/RUQ1zwZR8_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..550f6a510a979411661e8b4f9dcb406594805923 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13dcb5dfa0a868b1dca73854282a8f91746ddc03f1f55488cd1688586b7ed70 +size 628747 diff --git a/vlm/train/RUQ1zwZR8_/8.png b/vlm/train/RUQ1zwZR8_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dc955887d39f3446eb9b9b266779ba4b90a11fa0 --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf43f1aed33dbdaab47239926da14d296e7cfb32e6c47742a06c16d69ce70bda +size 368918 diff --git a/vlm/train/RUQ1zwZR8_/9.png b/vlm/train/RUQ1zwZR8_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe755304c8935442d8b6129b08a2dda3655fe19b --- /dev/null +++ b/vlm/train/RUQ1zwZR8_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b312fe3c6e9f85c996fcbf981ad0af4aa0991cc7f7db05913b6e057d0451775a +size 364812 diff --git a/vlm/train/S1e2agrFvS/0.png b/vlm/train/S1e2agrFvS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4de83e500e645bb1db1436b48975b138189ee322 --- /dev/null +++ b/vlm/train/S1e2agrFvS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13e89aa4cdba07d67929f468a60481bdf74448833811ccc9d9f29dc048204cb +size 471577 diff --git a/vlm/train/S1e2agrFvS/1.png b/vlm/train/S1e2agrFvS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..35d3620d4561206201b5d593d68c1cdd4b0845b0 --- /dev/null +++ b/vlm/train/S1e2agrFvS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790da89cf37bc3345aa9101d28235aff55fd765f3f944bdd9078eb17f8ce1f18 +size 629537 diff --git a/vlm/train/S1e2agrFvS/10.png b/vlm/train/S1e2agrFvS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..381f790ab2f136a10a7759b179e2701c9240baef --- /dev/null +++ b/vlm/train/S1e2agrFvS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556b4e939018407fb45d3fc627f4a834ea69fdced61193ce997745e85e5039ee +size 538658 diff --git a/vlm/train/S1e2agrFvS/11.png b/vlm/train/S1e2agrFvS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7485f9273f60d88318969e3d8c8f4d78960580c8 --- /dev/null +++ b/vlm/train/S1e2agrFvS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fbfad3a2beffb4819ea34b22d6f91d2c84ad9302c40d81c93fd3b3e1a411c3 +size 517141 diff --git a/vlm/train/S1e2agrFvS/2.png b/vlm/train/S1e2agrFvS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1eb21140d4ae0f26de5c29d01264ae40af98d8f0 --- /dev/null +++ b/vlm/train/S1e2agrFvS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efe819ab0547b00285af459e0c69b1f9e166ef7c32c5996ae72266afbcb71c5 +size 725366 diff --git a/vlm/train/S1e2agrFvS/3.png b/vlm/train/S1e2agrFvS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a490f0e5e414d30ab73ed0d1640312f4a9e40b --- /dev/null +++ b/vlm/train/S1e2agrFvS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d744b668a93390a2b383abac360faac4307f56020868216444481b42a8b2ec6 +size 576371 diff --git a/vlm/train/S1e2agrFvS/4.png b/vlm/train/S1e2agrFvS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..567b5a161ea07b5e58b6a58b91b47278cc9a1d76 --- /dev/null +++ b/vlm/train/S1e2agrFvS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f7ae28297f46013e7c92f24f6a810df84483bd5f98d9d04819ad3bf0ee26b0 +size 609047 diff --git a/vlm/train/S1e2agrFvS/5.png b/vlm/train/S1e2agrFvS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..02a5bfcb05773a737d8c55704ff0c952c02eda30 --- /dev/null +++ b/vlm/train/S1e2agrFvS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a0787c66c9db1db6bd666deb5200e26a0325a505a5c76b0ad57c0e3e06eebc +size 511977 diff --git a/vlm/train/S1e2agrFvS/6.png b/vlm/train/S1e2agrFvS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..704d2bb021447dc5c27df64357b5831253511d51 --- /dev/null +++ b/vlm/train/S1e2agrFvS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17876d153aa873c1db7e8cde95dd548f3ee3f8ee5826bcf4cdfb97618cf8fbe3 +size 478537 diff --git a/vlm/train/S1e2agrFvS/7.png b/vlm/train/S1e2agrFvS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..35f1b6b7e772b543348186a79370a0cf500bf503 --- /dev/null +++ b/vlm/train/S1e2agrFvS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02574079718729f354907e75653c8d578aa19574e76ea3233b60f47774e8e050 +size 567552 diff --git a/vlm/train/S1e2agrFvS/8.png b/vlm/train/S1e2agrFvS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2d53b020748c1b00e978b1338bd79e93289a201d --- /dev/null +++ b/vlm/train/S1e2agrFvS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:019605284fd993bd8880833126898f9f79892ff389bba610f808402723d3c553 +size 505617 diff --git a/vlm/train/S1e2agrFvS/9.png b/vlm/train/S1e2agrFvS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7484aaee2c178d99e4de55aab85c1ffd4331b4d8 --- /dev/null +++ b/vlm/train/S1e2agrFvS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b178ccc07726eaa5624ff301a04b5bb60c451b3b66d2388cc46d9caf57e17bb0 +size 628632 diff --git a/vlm/train/S1emOTNKvS/0.png b/vlm/train/S1emOTNKvS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..71f57b46b68a55bc49fc66e8848e299c391e76c2 --- /dev/null +++ b/vlm/train/S1emOTNKvS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdf4ae83c05ee77e3df83834fda748b0601019619dc6e762dc69fe5189e14fa +size 509288 diff --git a/vlm/train/S1emOTNKvS/1.png b/vlm/train/S1emOTNKvS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..478ee53022a11222aff93cd1480cad2767cc3ec2 --- /dev/null +++ b/vlm/train/S1emOTNKvS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585e6972b6471882085ef7b904dd5d31d76ea6da214f4fb92f21b51ccad8e1e3 +size 644028 diff --git a/vlm/train/S1emOTNKvS/10.png b/vlm/train/S1emOTNKvS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c53a8396d4bf2da02af8a36514e54d4cd84b2f67 --- /dev/null +++ b/vlm/train/S1emOTNKvS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fbcff7b371c4b85906eeb1f968220be7b01df72a6d2e897f373769334344f2 +size 480480 diff --git a/vlm/train/S1emOTNKvS/11.png b/vlm/train/S1emOTNKvS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a85524ae6393c05c8bbeeaf05a8ed3c5d313813c --- /dev/null +++ b/vlm/train/S1emOTNKvS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351f021bd974b056b1a80bfd80ab5e72675dd0f81a2a22ae378abc052af597e6 +size 514212 diff --git a/vlm/train/S1emOTNKvS/12.png b/vlm/train/S1emOTNKvS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e01713d5149f7ab74f652dd9b131f20411e2cac4 --- /dev/null +++ b/vlm/train/S1emOTNKvS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76910446226ec42becff1e4055137f83778c90ec753104b156c3b8fbfd86dd47 +size 493715 diff --git a/vlm/train/S1emOTNKvS/13.png b/vlm/train/S1emOTNKvS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ffe84f36d54de2af183eb1f588f622e0d9e30a8d --- /dev/null +++ b/vlm/train/S1emOTNKvS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175d5a9757c22845f53178956436488124cf0902df2af65718afa68ef9af2d02 +size 365246 diff --git a/vlm/train/S1emOTNKvS/14.png b/vlm/train/S1emOTNKvS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0b6e182ad31625780c650a38a9a5c5f97d385d --- /dev/null +++ b/vlm/train/S1emOTNKvS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41480f434236cff4fb1d7a9f512ce88d5c2e1797df62da6c575444d0abff2e95 +size 321454 diff --git a/vlm/train/S1emOTNKvS/15.png b/vlm/train/S1emOTNKvS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5af819ecabde4c847e4f8480a906cc406cb9c2be --- /dev/null +++ b/vlm/train/S1emOTNKvS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fff40b6e8545999a5b371ca98bc52171324cbbf9d393518e2aea083e80f2f43 +size 508549 diff --git a/vlm/train/S1emOTNKvS/16.png b/vlm/train/S1emOTNKvS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..0e3dac0b71fa6340902d8009edc3e2a21f415d28 --- /dev/null +++ b/vlm/train/S1emOTNKvS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d431f9fab819abc65bd66ff4ffe0c53249eff8e264a583a65b4372c6a1dd584f +size 252334 diff --git a/vlm/train/S1emOTNKvS/2.png b/vlm/train/S1emOTNKvS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..17a8d17aa05d1e7b2885117880ce0d72fe328e55 --- /dev/null +++ b/vlm/train/S1emOTNKvS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e43b4d90b24111e51dd0080ea13aa49615598b73c86cbd800c354eb8d8ebcb +size 558803 diff --git a/vlm/train/S1emOTNKvS/3.png b/vlm/train/S1emOTNKvS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0ad489389965e35a898298a89a33afd3f28186 --- /dev/null +++ b/vlm/train/S1emOTNKvS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d346b650811fed5ed49152fbb5b1e21d2d7b2686630628b763716e87239104ac +size 476002 diff --git a/vlm/train/S1emOTNKvS/4.png b/vlm/train/S1emOTNKvS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e3f246f31c59ad773084ec8946345d4c6c77a1 --- /dev/null +++ b/vlm/train/S1emOTNKvS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f0a782f18982ccbab10681305dc57d1ebee556e104671e4c121589b4997e3a +size 512337 diff --git a/vlm/train/S1emOTNKvS/5.png b/vlm/train/S1emOTNKvS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..61c201b858395b9db1b9f25def9d262f2e6386e4 --- /dev/null +++ b/vlm/train/S1emOTNKvS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196f04e962054c62697547e038f98bdf6261a63e7eca4761a6b686985145bce9 +size 470059 diff --git a/vlm/train/S1emOTNKvS/6.png b/vlm/train/S1emOTNKvS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2e05b9ccb814c63d17d715fdb19e12c8c87203b9 --- /dev/null +++ b/vlm/train/S1emOTNKvS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a7466f21324051c3c416f591799f782f5c8122c20c1322d7a68d8491bc7ba8 +size 530094 diff --git a/vlm/train/S1emOTNKvS/7.png b/vlm/train/S1emOTNKvS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..603f32da0867f1c07cc875955763593dddb5b261 --- /dev/null +++ b/vlm/train/S1emOTNKvS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04664bbf12552eb6e9f3f07ac1f460568fed84d8a502a51cb822558e1398f793 +size 551150 diff --git a/vlm/train/S1emOTNKvS/8.png b/vlm/train/S1emOTNKvS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..01a91f9dc1e274d0003745fac0670ce874a3ced7 --- /dev/null +++ b/vlm/train/S1emOTNKvS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f15b96eee1211de13adeed02ea873cb055b2a2717e415daaecb06aff02a1a6 +size 122227 diff --git a/vlm/train/S1emOTNKvS/9.png b/vlm/train/S1emOTNKvS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2737f7cc58b43dd820c71444af73f610479b7af1 --- /dev/null +++ b/vlm/train/S1emOTNKvS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff134044caa05d5bccb802bbbb95f4e4fc3844d8d0415eec1458d08c218cd441 +size 457219 diff --git a/vlm/train/S1lTg3RqYQ/0.png b/vlm/train/S1lTg3RqYQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b5cc9527afae5ea302526338e93c7fc6c19d4bf5 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3534930e20e486a69e95ad03cc89cad60f992339f4819d538cc39a5010061fb +size 692554 diff --git a/vlm/train/S1lTg3RqYQ/1.png b/vlm/train/S1lTg3RqYQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..740fa003a86d791843550fcace46ccb025df0472 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bfa2001590ad05ca97415cd10defd5293d683e6ad7346b9d0e5c340248c2f9 +size 628330 diff --git a/vlm/train/S1lTg3RqYQ/10.png b/vlm/train/S1lTg3RqYQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9378037fc59f171f0f80939aa0b3d9e540e11fad --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52129b90ffbc382f81e8202ffdf261c69f8ceefafcf392221e5c4253f1614141 +size 518132 diff --git a/vlm/train/S1lTg3RqYQ/11.png b/vlm/train/S1lTg3RqYQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..096f16406548870a5a81eb71db6c16c07c7493d9 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab188ec81ec15cd5896e6594b65cd8daad246dcfd0812b8589bff1a58cf396b +size 226873 diff --git a/vlm/train/S1lTg3RqYQ/12.png b/vlm/train/S1lTg3RqYQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..82f3c30c5cbdb2ed411e2e4f6187f29e8f0a8b0c --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690643fba5d0f930ef243eb453994befbc93bf84761a199c479b321b4815e037 +size 1751124 diff --git a/vlm/train/S1lTg3RqYQ/13.png b/vlm/train/S1lTg3RqYQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..299442d8269889de07c92508f4f36bd5a40f091a --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40040ea8a66d59ae9ac14b56a4ba03cdb456007e6a3c517ad5b8f1cd1c58184 +size 1363046 diff --git a/vlm/train/S1lTg3RqYQ/14.png b/vlm/train/S1lTg3RqYQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..cda6091cbc9ddf119575d0ff9cea77646ff90bf9 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e412d24f67e159d6c958a17dc188a046fc691faa5cbaff8fa6930e8af5c2965 +size 549943 diff --git a/vlm/train/S1lTg3RqYQ/15.png b/vlm/train/S1lTg3RqYQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9d98df3bdb270c54b6617372e0b229f87f2744ea --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df288019fc481cf48f672ed594e517498cc6222c81484421fc33dad52ac9e7a +size 1481374 diff --git a/vlm/train/S1lTg3RqYQ/16.png b/vlm/train/S1lTg3RqYQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f686e7b09abbb4a2bcd8df018e3129d2c62713d0 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd58c1e62ed58113c05b94dd939fb83278a7901fa0ac9b3c5347c2551d46d22 +size 1074601 diff --git a/vlm/train/S1lTg3RqYQ/2.png b/vlm/train/S1lTg3RqYQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..731f4b0c6abd1940cb9f7a0090bead54c5d60f1b --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716d1abeea9a01b504ef13786a2abe5a8f57b80e5f5a5dd0f6567595798386fa +size 618784 diff --git a/vlm/train/S1lTg3RqYQ/3.png b/vlm/train/S1lTg3RqYQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..348c3bf273fbba09b1b39f4958134e24c001f631 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86322db5c3ee4c0505914532dac7e6e25b664c118a341690609029de86ffa70 +size 534079 diff --git a/vlm/train/S1lTg3RqYQ/4.png b/vlm/train/S1lTg3RqYQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d73ce1a59446026baaad1baa859db4fdda0a6d5e --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7e3f9623ebd845449c591bbe010b161f6c30eb6572dc94da24dbb78e49f166 +size 547566 diff --git a/vlm/train/S1lTg3RqYQ/5.png b/vlm/train/S1lTg3RqYQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3122f05f52dce754555f5769579fc7d208febdbd --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eee3673ab1292e26c214f0b338f48adf86f1761c66628e7823e850681cc59c6 +size 562881 diff --git a/vlm/train/S1lTg3RqYQ/6.png b/vlm/train/S1lTg3RqYQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..70f1242dd82e434c59c2b23bc5ffe6f9894b6540 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1361f74cac1ff7acf188092406a1b7ebe6c3bc3a079094865ecb203e20624794 +size 760959 diff --git a/vlm/train/S1lTg3RqYQ/7.png b/vlm/train/S1lTg3RqYQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..18ce6de9bfd3c01f4f9c1d206dcc522385ca86ba --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4824764767be8dc9a8cb590a73022e81eaca6c8a1bdb2ffd9e9ddc39939f9489 +size 1228650 diff --git a/vlm/train/S1lTg3RqYQ/8.png b/vlm/train/S1lTg3RqYQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..174c07d71856274e51cd406226062fe48e99a14b --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43375777933765a6ec55fff05f5b9ee4dc619cb189a9fd1eb533bb81d704979e +size 455008 diff --git a/vlm/train/S1lTg3RqYQ/9.png b/vlm/train/S1lTg3RqYQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5349f88bd44dcb9193337b5dee40276329230177 --- /dev/null +++ b/vlm/train/S1lTg3RqYQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad855fbe9a0e45bf2b60eebc8c02c8967c9528dd5685835875dea60ef9aa57a +size 486319 diff --git a/vlm/train/S1q_Cz-Cb/0.png b/vlm/train/S1q_Cz-Cb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0f2e3ce5f1287cb7441fc2fb954bf9610b54d798 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132dbc2bb16af5305181b6598cede8b4d50a35cfd211df7ff272f5f74f976900 +size 526277 diff --git a/vlm/train/S1q_Cz-Cb/1.png b/vlm/train/S1q_Cz-Cb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..865301f12cfd5ac122945361e25becb63896dcec --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c578e1382a73048e5d9de99f34e4350564fc676a027590fb4c70d81c15251ff +size 494466 diff --git a/vlm/train/S1q_Cz-Cb/11.png b/vlm/train/S1q_Cz-Cb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8ced668628ba331574012b5a6d415c2b74741969 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0869ad942f7ce587980a5071625eaef39e66a34258651a7021c409d7b68729 +size 471697 diff --git a/vlm/train/S1q_Cz-Cb/12.png b/vlm/train/S1q_Cz-Cb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e18952464cc0b16ff6b5eaf14ae123800bac7543 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14be5c1c411015943c3377b8474489c1925face1e86e1d91cd8718e280252b99 +size 347687 diff --git a/vlm/train/S1q_Cz-Cb/13.png b/vlm/train/S1q_Cz-Cb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cdaf2f98b05869c75058a2c930b3f850bd39641d --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78452a15e5d3999e013b0d7b5788ee153ac930f784a16245f3728f7fe71c6f3a +size 356606 diff --git a/vlm/train/S1q_Cz-Cb/14.png b/vlm/train/S1q_Cz-Cb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..273b91223d8be63bc07a90a3110df30ff164223d --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21161f284591bf73139607f9b577ff46a7913cc82187ea7774265ebc552a593a +size 384908 diff --git a/vlm/train/S1q_Cz-Cb/15.png b/vlm/train/S1q_Cz-Cb/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5cdc5e84848dd46bd3b788b32523aaa9644cb242 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634673800fb7f8fbe939ed2ee95b63e58ec0f420c624fe3f631dc0a86e39814f +size 352914 diff --git a/vlm/train/S1q_Cz-Cb/17.png b/vlm/train/S1q_Cz-Cb/17.png new file mode 100644 index 0000000000000000000000000000000000000000..fbd8092f31b2db4e49e67efcba5591d9895d4d2a --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28746534a5d4ca1150684f2fbf115b76343ba28773f250a3bd9c24c7ec76c125 +size 319155 diff --git a/vlm/train/S1q_Cz-Cb/18.png b/vlm/train/S1q_Cz-Cb/18.png new file mode 100644 index 0000000000000000000000000000000000000000..56ace934a111efde315c2e8c2cbf25b5b145b7ad --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b12a1e03145a8bf15ac6b61ddb1fa4da7e5e2146ab16897d4d069f561fd806 +size 382777 diff --git a/vlm/train/S1q_Cz-Cb/19.png b/vlm/train/S1q_Cz-Cb/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4eb2bfc88d4c40ec6c277df6ff0256c3c1396eb5 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79945546744116b9bd45cf9927411233f7e804baf2713672736fdc34124813d7 +size 183852 diff --git a/vlm/train/S1q_Cz-Cb/2.png b/vlm/train/S1q_Cz-Cb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..64e90f4a77dcbfe7d0b9b92f4b717ee59aa688a8 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605c218edcc081c819f39ade44eae840db003e75b4d2baf2196210f7fd6d1c0f +size 422377 diff --git a/vlm/train/S1q_Cz-Cb/20.png b/vlm/train/S1q_Cz-Cb/20.png new file mode 100644 index 0000000000000000000000000000000000000000..def2be48dafcaa27e3f4cfc1a96beccb9bbdbda8 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ee32e9ed65f363afdb03dbcd6e02c294f3d6d972e8d6b4567fef1a63bb0e9e +size 151729 diff --git a/vlm/train/S1q_Cz-Cb/4.png b/vlm/train/S1q_Cz-Cb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4623b47ad562e333c71b4e25140d8ddc748eeb59 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0fe0148f723818f626abdbc256bb72256f4aee6ce78393af8cd5543600b46f +size 499592 diff --git a/vlm/train/S1q_Cz-Cb/5.png b/vlm/train/S1q_Cz-Cb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..389c0fb972b3633c2736f296885c433585c72ca5 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c84e1b9ebcefdba6dfaa7620c5e0a17db16f8f336490f40d5071f5606b095a +size 464658 diff --git a/vlm/train/S1q_Cz-Cb/7.png b/vlm/train/S1q_Cz-Cb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..af37b8254517c9c8aea8c96b56ca7c1bec92b346 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf9e2b757a51c5b0501c186618be7d283cccfd11d450bc5bbe8c5c45613ab85 +size 439914 diff --git a/vlm/train/S1q_Cz-Cb/8.png b/vlm/train/S1q_Cz-Cb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1b3884badefea41b8b26de0585d0071ff89bcc07 --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c6e45566f75d8b488c094008576c4c13584df535b60682786679014fbee819 +size 553528 diff --git a/vlm/train/S1q_Cz-Cb/9.png b/vlm/train/S1q_Cz-Cb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..be59b18a2b7140666c17c55a2e48db839fc5d1af --- /dev/null +++ b/vlm/train/S1q_Cz-Cb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24b3693dc3ae9f33a8ca60d47c7d315346a06bcdcb35532353b582e1798eba5 +size 315449 diff --git a/vlm/train/SJeHwJSYvH/0.png b/vlm/train/SJeHwJSYvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cb0e3fd7aad2be06895ec6d433a4cf77a07bb911 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7ad85a3e3556b1a562f96f16ce289a1ae630f3aa1325b718a109674cbd81c2 +size 495884 diff --git a/vlm/train/SJeHwJSYvH/1.png b/vlm/train/SJeHwJSYvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d20d26064be5d4811e3e8ec3914c1b83d58aa672 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ce1a27995ed1296a753d2f689f45a52aed50e8c47c2d1acd983873b82caae9 +size 552732 diff --git a/vlm/train/SJeHwJSYvH/10.png b/vlm/train/SJeHwJSYvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..86bf6a178c66de3b6cb861fd0525ecb7206eb0ae --- /dev/null +++ b/vlm/train/SJeHwJSYvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0819ad1cca61bfa17b310f32ecd5d32b3daf53463b123da09691bb7aa5397842 +size 548947 diff --git a/vlm/train/SJeHwJSYvH/11.png b/vlm/train/SJeHwJSYvH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..966c5c7c81b88f75a91a941c2855f4be924f63a0 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775d644cd7a24c5eab96917b1abb3371b7c0002d7b8550185157c95303f6a1b0 +size 281605 diff --git a/vlm/train/SJeHwJSYvH/12.png b/vlm/train/SJeHwJSYvH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b27442e573d3266e616c04865c4e934a35358fef --- /dev/null +++ b/vlm/train/SJeHwJSYvH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013a2428e449e5b32cd4777f4facb5ec0cf1f15432d4127757506b33d08a42cc +size 424054 diff --git a/vlm/train/SJeHwJSYvH/13.png b/vlm/train/SJeHwJSYvH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..37efa063da7cb6b5b88df6e30ddc10f820f0240f --- /dev/null +++ b/vlm/train/SJeHwJSYvH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed9dbaa1ca0e427e38fc22588082efb3b6f0fab9c9d44aa0f12350a423337ac +size 515945 diff --git a/vlm/train/SJeHwJSYvH/14.png b/vlm/train/SJeHwJSYvH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b2e25d43e4baa019c56998f6e0899fd2832ec5f9 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd10347a87fdd2656b393d00067f801631636e3a80952d0c5270af6535b3d3 +size 1085977 diff --git a/vlm/train/SJeHwJSYvH/15.png b/vlm/train/SJeHwJSYvH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c48759b2253bd619169d82ae5476e739ddb4b966 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b70f19ced695f10531f553818dde9467def75a9b901a3daad0fc0fae0f41d6b +size 725466 diff --git a/vlm/train/SJeHwJSYvH/16.png b/vlm/train/SJeHwJSYvH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..5d753012d1ba27ed4d2bfc1a5e33befd3b656c78 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c08ba51c82565a67db9c8df1588140348ad4319b5b61bd665147a4561a2b4b +size 300815 diff --git a/vlm/train/SJeHwJSYvH/2.png b/vlm/train/SJeHwJSYvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..02d601d18b01f18501131fe23f5d566d4a631833 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714cb3adbf16f58c014ff27b38def881895c16981fa9ad1eaea601198eebdfd3 +size 636428 diff --git a/vlm/train/SJeHwJSYvH/3.png b/vlm/train/SJeHwJSYvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b90451f650e250d06284a9bac9ad5ed2393d9ab0 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06548db69362d8d7b945c1a4643fb06b9c7765d0d3d7c30046dc85f3e50e4c98 +size 559755 diff --git a/vlm/train/SJeHwJSYvH/4.png b/vlm/train/SJeHwJSYvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2585e292fe0fdd73f85197cdd99bf30e9d60bf --- /dev/null +++ b/vlm/train/SJeHwJSYvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c23f23e4c3c1817c36a585efa5bf7f68e77c7bcf01dabd1a42a671d3edcac29 +size 564139 diff --git a/vlm/train/SJeHwJSYvH/5.png b/vlm/train/SJeHwJSYvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3e54ea259308feaa1361e03a4364245500ea483f --- /dev/null +++ b/vlm/train/SJeHwJSYvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472e152a1702c6e07b01103ea3bb6124a1645bac3a355267de2ddfd0158f5152 +size 542701 diff --git a/vlm/train/SJeHwJSYvH/7.png b/vlm/train/SJeHwJSYvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1ac8e105b041625365b8c3233764c1bc9e1025 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fcc1d83240fdfd9796d7a53da0794715b23eaa3e0eacaab27be0ea1266cfad +size 585344 diff --git a/vlm/train/SJeHwJSYvH/8.png b/vlm/train/SJeHwJSYvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..65b0344ac46798f456cd82e4f57c4462220520ef --- /dev/null +++ b/vlm/train/SJeHwJSYvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38944131610715be99e276b6f4bf8587c2e35259492a80a1a0877cc80c5297c +size 530807 diff --git a/vlm/train/SJeHwJSYvH/9.png b/vlm/train/SJeHwJSYvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8a115394e05d8ada5203ebcc0dfe304551031b95 --- /dev/null +++ b/vlm/train/SJeHwJSYvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5cae1ed0a0268550a4184f554249e3e8499e58f63f3029f40876ac0ba69f48 +size 839511 diff --git a/vlm/train/SJfWKsC5K7/0.png b/vlm/train/SJfWKsC5K7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..168a19593ec38dbbc8d0a5b999675051b949621e --- /dev/null +++ b/vlm/train/SJfWKsC5K7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b83370a4e21b774187f413c934ea796e7102518d59f0c75fee7ed47fcfe108 +size 460233 diff --git a/vlm/train/SJfWKsC5K7/1.png b/vlm/train/SJfWKsC5K7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5598eb466cae97ea78bc0ebd0642cf4ed1a8dd --- /dev/null +++ b/vlm/train/SJfWKsC5K7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a473f32960ad4c657af7fe1592a52b2b1ffda4caa8c3f6fea14697e91db8229 +size 566361 diff --git a/vlm/train/SJfWKsC5K7/10.png b/vlm/train/SJfWKsC5K7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9070c2e92e531942c13d54d2fcda5a19c57a17 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d189a03a604d30a32f5fb65c19d5cfa5a8b9de72aa99adfd906915c3d3f6c5ba +size 476962 diff --git a/vlm/train/SJfWKsC5K7/11.png b/vlm/train/SJfWKsC5K7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e8d3ae3bce7dd01cc7627370fceea727f098a52f --- /dev/null +++ b/vlm/train/SJfWKsC5K7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db85d01159186913ec1e4e49d147adcfb3afc4026ef2aa7a77575100065f323a +size 705168 diff --git a/vlm/train/SJfWKsC5K7/12.png b/vlm/train/SJfWKsC5K7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0cafe1b628cc140b0034f769fd968fe040102431 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8981b1337a957bbb5fadb15e943fb269cb9dcc762f1b008b348039ea6038b4 +size 752861 diff --git a/vlm/train/SJfWKsC5K7/13.png b/vlm/train/SJfWKsC5K7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6952aec6328d3da5dc90037652ed9e820ed2f3d9 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba0e30ad4440234c0a0fce5bab5d0c7ea3312edf54d69a296c1484174510d83 +size 628906 diff --git a/vlm/train/SJfWKsC5K7/14.png b/vlm/train/SJfWKsC5K7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..45eed99fddf1209e091d5d4cc1a8a4af7d32deaa --- /dev/null +++ b/vlm/train/SJfWKsC5K7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627dc83db0266be3755ad115f38171a9d13d788c49e0cc1b9321513dc1197926 +size 666856 diff --git a/vlm/train/SJfWKsC5K7/15.png b/vlm/train/SJfWKsC5K7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a58092e3564fde7815e83e1527a01f1093888b64 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735b80f678fabbe35f7e3f40ef17a38f84420bc4cd465b216f9a08bd300c4a01 +size 684769 diff --git a/vlm/train/SJfWKsC5K7/16.png b/vlm/train/SJfWKsC5K7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4b956023bb25053fe6ec23b1ad2d99734f6482e9 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc519b8162c82ac1d9e6327b8ac8d8d06f990016f3e5305452d0d52d517092c +size 845237 diff --git a/vlm/train/SJfWKsC5K7/17.png b/vlm/train/SJfWKsC5K7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7129d43de839eee8df418bea6bdcde974a6d63ba --- /dev/null +++ b/vlm/train/SJfWKsC5K7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0fcce898b094891202d1d856d01079a213e018152f99bf34148068a51062b9 +size 1997718 diff --git a/vlm/train/SJfWKsC5K7/18.png b/vlm/train/SJfWKsC5K7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fe8500e984b8bf4120486237506bde4c6ed033ae --- /dev/null +++ b/vlm/train/SJfWKsC5K7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478520914a1f00f40a2dce880e9f1f9112eaa12e03e5efe900c6fff1e4e30d7b +size 200502 diff --git a/vlm/train/SJfWKsC5K7/2.png b/vlm/train/SJfWKsC5K7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f7910f6270f0282d7d618ac147a93f6cc9fbb8 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e394112285eafd751455320c46e094902a221314c04929d87d6a017421f650f4 +size 604553 diff --git a/vlm/train/SJfWKsC5K7/3.png b/vlm/train/SJfWKsC5K7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..045b85b7d208b0a25409f04bae78cf36e2018a82 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4be6ed067e59daadbb68f4d1a88dd8bf65673b264b77c3fb0732ae9dbc1728 +size 521863 diff --git a/vlm/train/SJfWKsC5K7/4.png b/vlm/train/SJfWKsC5K7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b0f201a401ff41a8e0ceb269d2c9b2ef202b4d --- /dev/null +++ b/vlm/train/SJfWKsC5K7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb7ee6910c720a7ac5cba7082b99f48325213e5ec342e307ebca8df4398b5a10 +size 488414 diff --git a/vlm/train/SJfWKsC5K7/5.png b/vlm/train/SJfWKsC5K7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b305b3d471a7e9898efb83b3557a70f5ab88f8d2 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424dbbf480ce42ff81c9a8653216ccda4f5f346c571bf17cb1d42a50fabe5ee5 +size 568529 diff --git a/vlm/train/SJfWKsC5K7/6.png b/vlm/train/SJfWKsC5K7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..810c28378066733605d275cca8dfd19c877659ae --- /dev/null +++ b/vlm/train/SJfWKsC5K7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7256e1c00a50cd4140229f41e65b0c611f7354edf25d630e191745f5b88d23c9 +size 565693 diff --git a/vlm/train/SJfWKsC5K7/7.png b/vlm/train/SJfWKsC5K7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d973173904c357e7b9f983d2140e4aaa59cb11f6 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c11ba828c3f763e41076dd69bdb8ddf09cba4723a57549d014978e82c30bc99 +size 660630 diff --git a/vlm/train/SJfWKsC5K7/8.png b/vlm/train/SJfWKsC5K7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0f92b7a38cd30f611c75a3a92bebd56f7b8dc6 --- /dev/null +++ b/vlm/train/SJfWKsC5K7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a855901770f331aa43cfb09cc034dc91412508a5ea26e86171a99ced26b7f53 +size 462607 diff --git a/vlm/train/SJfWKsC5K7/9.png b/vlm/train/SJfWKsC5K7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e308de8b50ad165497f1c016b1e1d8f0c1ab54ee --- /dev/null +++ b/vlm/train/SJfWKsC5K7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ca97bd5229852307abc6b3edb76db511edbf77b9aee7e977dfa2be5edaefa9 +size 399434 diff --git a/vlm/train/SkEYojRqtm/0.png b/vlm/train/SkEYojRqtm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a0a886e004b3014a72431ed0e3bd5702afb92d39 --- /dev/null +++ b/vlm/train/SkEYojRqtm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a38ddaa523f8d8fe3dc1c297bd1bb18344cc479115dca64cc6040364011aaac +size 456522 diff --git a/vlm/train/SkEYojRqtm/1.png b/vlm/train/SkEYojRqtm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8112d21e084b56ccf59a82283d6c4c39b9b67fcc --- /dev/null +++ b/vlm/train/SkEYojRqtm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d76566315fb3d483d34c5354c93ea42686c206bd4276649443af312b263f135 +size 687712 diff --git a/vlm/train/SkEYojRqtm/10.png b/vlm/train/SkEYojRqtm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..80a2c29293d6625b40283131de558d49ee4125d2 --- /dev/null +++ b/vlm/train/SkEYojRqtm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdca08a709a82219683659c402897733b5a1027b419981433196244b0afd919 +size 403648 diff --git a/vlm/train/SkEYojRqtm/11.png b/vlm/train/SkEYojRqtm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8e15a5bf17e575dab0b8c96b088385bc1e8c98d7 --- /dev/null +++ b/vlm/train/SkEYojRqtm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8c48f36fdc931b01f20eeb0aaac285b1dca1a245d54b5eae3d1c228e144127 +size 436074 diff --git a/vlm/train/SkEYojRqtm/12.png b/vlm/train/SkEYojRqtm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a9580d02f9850b207a05bed4b3ff5cbd06dde805 --- /dev/null +++ b/vlm/train/SkEYojRqtm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:885fb9057d3a623a9e4cc8439cc36eb874e1da7d5ab65b90f716d9c88226adbc +size 303250 diff --git a/vlm/train/SkEYojRqtm/13.png b/vlm/train/SkEYojRqtm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ee3d0715054d171e68088779aa9a9a872e587f48 --- /dev/null +++ b/vlm/train/SkEYojRqtm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b08c76ac8b171b9e762550fed8803331efe5951dd219a75baa438c2d29eb0d +size 266932 diff --git a/vlm/train/SkEYojRqtm/2.png b/vlm/train/SkEYojRqtm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6e25909d9297bc4c3774a2947beae102557427 --- /dev/null +++ b/vlm/train/SkEYojRqtm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57729a386a9998c10914473dd905aaed0945c7ce7fcf86e3a45db5630df1ce14 +size 523023 diff --git a/vlm/train/SkEYojRqtm/3.png b/vlm/train/SkEYojRqtm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd8bbca12d5e6deb23e5a7100d21439faecabb9 --- /dev/null +++ b/vlm/train/SkEYojRqtm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efd2b799cb84e628c1cecb3f4d686905f18f2fea00d84fab769f72505d0bd87 +size 544765 diff --git a/vlm/train/SkEYojRqtm/4.png b/vlm/train/SkEYojRqtm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9433cfd6c4b5ef2d26cbba5f5f8df06b1d31f4ca --- /dev/null +++ b/vlm/train/SkEYojRqtm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965017869697f519a2799b4730c6dbbb02a561bb33e8ef0a00001496cc8d10c9 +size 500109 diff --git a/vlm/train/SkEYojRqtm/5.png b/vlm/train/SkEYojRqtm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4480b34943e649e8f80adc93d2143f1a7cd7d376 --- /dev/null +++ b/vlm/train/SkEYojRqtm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af53f967e8a8671b0e8f0250d4200610926ebc0352f5ee5fc0873d2d3b23315 +size 503830 diff --git a/vlm/train/SkEYojRqtm/6.png b/vlm/train/SkEYojRqtm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..88d63ea352e583fd19041e1edf00986e38ce9b5e --- /dev/null +++ b/vlm/train/SkEYojRqtm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacab1c8c9076d17ac40605f50dce0f22eac10358ce47d00518f2a413991b779 +size 435847 diff --git a/vlm/train/SkEYojRqtm/7.png b/vlm/train/SkEYojRqtm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4f6abf0fc28cd7103e8e8f7bd483ea6665ac5e13 --- /dev/null +++ b/vlm/train/SkEYojRqtm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254b9255e834c4acc15c70b4375a35e6c40900589239adea01492d93f4c9e0b0 +size 620208 diff --git a/vlm/train/SkEYojRqtm/8.png b/vlm/train/SkEYojRqtm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..08c971259d3faf426113d37734df832246459f57 --- /dev/null +++ b/vlm/train/SkEYojRqtm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e997e080e5f6192aa93f9c05f0f9e874bb665bc4f723f490eba8a6bf026411e6 +size 484400 diff --git a/vlm/train/SkEYojRqtm/9.png b/vlm/train/SkEYojRqtm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7fcf6b234c5af974e421bb299758fb53517d03bd --- /dev/null +++ b/vlm/train/SkEYojRqtm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04065b9765846891b9b08fb2ce9cd7ec66997a0519eaa00b84b8ede4eb7b176 +size 545250 diff --git a/vlm/train/Tsp2PL7-GQ/0.png b/vlm/train/Tsp2PL7-GQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ce412d720a2172c1e25a9c7b04be3acf0d9364da --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc536e4fc96efa628fef3523630c66ff2037c7dfae43077e5b94f86f9e22c30 +size 403105 diff --git a/vlm/train/Tsp2PL7-GQ/1.png b/vlm/train/Tsp2PL7-GQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..914211ed0e02bc47fd31f0eea19f07b8b5bd4b0c --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978a58661a122ce20ee16436e53dcec6cfc494d8ee00c9cf01b9afa36f5d9714 +size 596865 diff --git a/vlm/train/Tsp2PL7-GQ/10.png b/vlm/train/Tsp2PL7-GQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc95136701990e85470427c46ecd34a6819306e --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883fdff43868b5bd73c89b23bb524e035791ad81b39b765590d58d7804d8e233 +size 500436 diff --git a/vlm/train/Tsp2PL7-GQ/11.png b/vlm/train/Tsp2PL7-GQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..55544ae0e163bb3fed452305474a658a4559e6ec --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc03d9159d6ac55458b7a55aec46a1e00392dd2323ce18bb17ece5476abb518 +size 166967 diff --git a/vlm/train/Tsp2PL7-GQ/2.png b/vlm/train/Tsp2PL7-GQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bafcbe49cc284b1b4027e8867847f1b4f854067e --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f061ccc347ea55d8be5cd16d067df1389c82700601d2711f1e4f56c74a5e3a +size 456975 diff --git a/vlm/train/Tsp2PL7-GQ/3.png b/vlm/train/Tsp2PL7-GQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4e37b1edd61113de331f29cafc0df1c16ffe642c --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571d253f959535af84f72f9dc2aee4d2c77311b0827e8150b85835007d3c1b23 +size 553175 diff --git a/vlm/train/Tsp2PL7-GQ/4.png b/vlm/train/Tsp2PL7-GQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e05254df5d6bd6f383c2555b14bbb6000a137089 --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a668bfca0ab56db66f908f95efd6de3332cb827c7cf255dee9d52bf3dfedad +size 423942 diff --git a/vlm/train/Tsp2PL7-GQ/5.png b/vlm/train/Tsp2PL7-GQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d362e6eb9c24f841365471ca2720d98d0cccea37 --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdab02790d06828c4d02484d657460a1731563926d3690416edb794d775e036 +size 384191 diff --git a/vlm/train/Tsp2PL7-GQ/6.png b/vlm/train/Tsp2PL7-GQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..372ffd39d166e2dac115e2ede2e114c98483b1be --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8798b222c1b307b4e31539b0e99e8a82bb2efcad30208c58b46c2cee09fcf4 +size 365278 diff --git a/vlm/train/Tsp2PL7-GQ/7.png b/vlm/train/Tsp2PL7-GQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ca16768bb2b0e66d4b5aa0fc23ebe4c8358b7c81 --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7734f37c345e28689a76bc54e6ded4d07302dc9d36c3a753333749ec9c496f +size 375868 diff --git a/vlm/train/Tsp2PL7-GQ/8.png b/vlm/train/Tsp2PL7-GQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b78e744a60a7c9d19ae1e7b77d1a974da14ebb04 --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5c7eadefb149b4c367221365194c9ebe4b44801740f874c235ff2a02e0309f +size 454055 diff --git a/vlm/train/Tsp2PL7-GQ/9.png b/vlm/train/Tsp2PL7-GQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..29371ee5d4e30278f39278c700432a6b676657ef --- /dev/null +++ b/vlm/train/Tsp2PL7-GQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9920f1a6db132d36e39f13d07d74da6f581ac800bcabc9c325626cf27bd57727 +size 505763 diff --git a/vlm/train/Y4RJQO2jivm/0.png b/vlm/train/Y4RJQO2jivm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7779bb19c4fde3e480f227fd1a1978534b71b654 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ab665b643aab270913803489adac02b9e9a37833c5ac0f86e65bbbcfa2cc49 +size 419953 diff --git a/vlm/train/Y4RJQO2jivm/1.png b/vlm/train/Y4RJQO2jivm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..62099d514364189b8125aa8533eee293d40b9b6f --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c412be41756d4043d70b00cae66749735642fe6b08cc4dfd5ca6f119cf5db5 +size 580334 diff --git a/vlm/train/Y4RJQO2jivm/10.png b/vlm/train/Y4RJQO2jivm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..11650e6166b863c75dc6f2516e7ba01848727780 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32d6305013ce69a155a3a468092a02599589264768b2674729d829de3a9d214 +size 597427 diff --git a/vlm/train/Y4RJQO2jivm/11.png b/vlm/train/Y4RJQO2jivm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..52c02519f8d181a473ff775ed21bb6912564fb97 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9383eb59cb1c7a5aaf10675fd99bb460d00e6b238b0c22a87f326f4ae85b50f6 +size 429838 diff --git a/vlm/train/Y4RJQO2jivm/2.png b/vlm/train/Y4RJQO2jivm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf7c293df4ba9c393697b85c48fb54ede13445a --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf216b38826541a5711b81b31c77f9df1ff2966f93bbba813eacb314a50a97a2 +size 544924 diff --git a/vlm/train/Y4RJQO2jivm/3.png b/vlm/train/Y4RJQO2jivm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..447b19e9a50e669dc3c8de113f6a2b361ad2d5ff --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a8f4f298c85f7ebb3a2378600d82827ed4f2136bdf03a61f03ef6926bc9d91 +size 542087 diff --git a/vlm/train/Y4RJQO2jivm/4.png b/vlm/train/Y4RJQO2jivm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8188f3f6202f9fcf0f2dda56489fa478aeed58e8 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be1da37204fad9208be17fef0ff3787b0a12dfb2caa3563804f33f718e50a68 +size 549372 diff --git a/vlm/train/Y4RJQO2jivm/5.png b/vlm/train/Y4RJQO2jivm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b280c47ff4bdaf08eda8a5234013a6e85ec2b528 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade46aea49fc4b3b099b94b0aeee0f77a3dfd9a94d4da8f2615ca1dbee5d879e +size 426807 diff --git a/vlm/train/Y4RJQO2jivm/6.png b/vlm/train/Y4RJQO2jivm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfe33277e79990814b9ca6bab6fd4f1a3ed8c8c --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe7137ffc38fbb4363068fb4fd74c9dff61027091117d8c93c835d871317851 +size 403312 diff --git a/vlm/train/Y4RJQO2jivm/7.png b/vlm/train/Y4RJQO2jivm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dfcf737ef2110b3394135dde04ed485c25421794 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b650e2a4456c0e99174bf35a592d8eaca301b50b07cca26998fe9e23a30f927 +size 182628 diff --git a/vlm/train/Y4RJQO2jivm/8.png b/vlm/train/Y4RJQO2jivm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d8fffd208d7f1e75dbbff6d3934eacbdd7f65b --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc19e152a0154532a53b46a6ea724a3e5a80df6c5fe0b7c602be6bdd5c4f57c8 +size 552004 diff --git a/vlm/train/Y4RJQO2jivm/9.png b/vlm/train/Y4RJQO2jivm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..db0827df6bc48a449f92514bd2745dd6cdcde1b7 --- /dev/null +++ b/vlm/train/Y4RJQO2jivm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:028ae2ffb5a5fda0fc57f34717096500b7b27a0823dac91e09ee518b64a14a14 +size 391934 diff --git a/vlm/train/c5QbJ1zob73/0.png b/vlm/train/c5QbJ1zob73/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f431d4d6a26daf8c17cd50536c713708b2d4a039 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9a57606381709bd3675d400ca75d066660b77673b673fdbfdc7d6f2c2087b5 +size 591077 diff --git a/vlm/train/c5QbJ1zob73/1.png b/vlm/train/c5QbJ1zob73/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8131c9ec969adc2b046d52e20819cfb46cdd9d33 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c26b07d6328b59ba5c1a60d99900bd0776b8e211d7941f3064cb3f17312e7ff +size 707015 diff --git a/vlm/train/c5QbJ1zob73/10.png b/vlm/train/c5QbJ1zob73/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e5fdbf0edb409a02fd80074e847a7b4deb35fd41 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264b10843ea98217a870976f334b4facf36fefeaa9baaaef8aa4cac97b9709ce +size 593118 diff --git a/vlm/train/c5QbJ1zob73/11.png b/vlm/train/c5QbJ1zob73/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4cad1f58d58b6c3b0e4d2cb70f4b7b3703e08080 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642a9640cd358ebed5bdf2c4ef048a9aa9d96af01fb9747044f86a0567cb6a3a +size 426083 diff --git a/vlm/train/c5QbJ1zob73/12.png b/vlm/train/c5QbJ1zob73/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4544668606e1ce16690cfca016cf1b8171a7399c --- /dev/null +++ b/vlm/train/c5QbJ1zob73/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baafd482d2f6958ce7ab754833d0e4aa009f78431a202ac86a6c8edec2467620 +size 443593 diff --git a/vlm/train/c5QbJ1zob73/13.png b/vlm/train/c5QbJ1zob73/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7ff07af0edb0fe61c5390a2f3f6e7767b5995cbc --- /dev/null +++ b/vlm/train/c5QbJ1zob73/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d039cbd2f428e64f9500318eabbc6024b9d2d78a1dfbdc0c63ec658a3a5e8ffc +size 322080 diff --git a/vlm/train/c5QbJ1zob73/14.png b/vlm/train/c5QbJ1zob73/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c7fa97f3aaf99ea3ef6fa56c2204cb63f7829142 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8dd7056f27f0221fc51420889c25cce9f4b85678a460813eda254019efcef3 +size 392809 diff --git a/vlm/train/c5QbJ1zob73/15.png b/vlm/train/c5QbJ1zob73/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6012db97496bead5760fa8605c70e151acd53251 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a3430c8cd41757e7f8021ecd0580dd44baa1800f72e4db3fc0a8ebd31fd8844 +size 383494 diff --git a/vlm/train/c5QbJ1zob73/17.png b/vlm/train/c5QbJ1zob73/17.png new file mode 100644 index 0000000000000000000000000000000000000000..09eaadc7e86265818d6408de71e3c94779a8fae3 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b44064fe2403f23bc2732b203856c50302ad53665fb055fc6de5bdbfb54728 +size 323183 diff --git a/vlm/train/c5QbJ1zob73/18.png b/vlm/train/c5QbJ1zob73/18.png new file mode 100644 index 0000000000000000000000000000000000000000..d467024a82fde02f5205f77cbbb56d3bba5bf20e --- /dev/null +++ b/vlm/train/c5QbJ1zob73/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dce91f4ef7f41a9680c650f88004e7e6e1f50c5b40178bf68ec1923c51c6a5b +size 299096 diff --git a/vlm/train/c5QbJ1zob73/2.png b/vlm/train/c5QbJ1zob73/2.png new file mode 100644 index 0000000000000000000000000000000000000000..76ea3774eea4f72cd56b1415ccad72b86e0840fa --- /dev/null +++ b/vlm/train/c5QbJ1zob73/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4301c4d480507a90600febfa14ed17844dafdc708409ca17ef2d75bae2f50305 +size 629909 diff --git a/vlm/train/c5QbJ1zob73/20.png b/vlm/train/c5QbJ1zob73/20.png new file mode 100644 index 0000000000000000000000000000000000000000..81c33936fb0fdbedc821df6271bdc122cc466fb2 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f536252cefc8a15af1ba371aafb8c72526f8d4f8dc581aabdc06edf0768f0990 +size 379390 diff --git a/vlm/train/c5QbJ1zob73/21.png b/vlm/train/c5QbJ1zob73/21.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e03d41ba81322207591b25da6acfe8d8b11302 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdf4ce056ae85df721c1e587851d2867a286451ec07037658c9715bdf2fca52 +size 323523 diff --git a/vlm/train/c5QbJ1zob73/22.png b/vlm/train/c5QbJ1zob73/22.png new file mode 100644 index 0000000000000000000000000000000000000000..31567715d83094062072ef4952315a7bc7a3b42c --- /dev/null +++ b/vlm/train/c5QbJ1zob73/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ffcc7f64a84b6b3adc2d41aae05fa81eb2b445438bee2633e8445013033b63 +size 372272 diff --git a/vlm/train/c5QbJ1zob73/23.png b/vlm/train/c5QbJ1zob73/23.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd156a08faee2cad9f9bbe7fb5b708c9f9b942c --- /dev/null +++ b/vlm/train/c5QbJ1zob73/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f634e824f757e660876706098f9acdb512d3dd1cbe9b60f47db2a196fe2c65 +size 350983 diff --git a/vlm/train/c5QbJ1zob73/24.png b/vlm/train/c5QbJ1zob73/24.png new file mode 100644 index 0000000000000000000000000000000000000000..dc26d4c7378dc546c1216fa5b9730064c573ed63 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbf3adf47304d5df92da1f870de0d0f0657004c7285861942d5821000912cbf +size 362341 diff --git a/vlm/train/c5QbJ1zob73/25.png b/vlm/train/c5QbJ1zob73/25.png new file mode 100644 index 0000000000000000000000000000000000000000..03b800e40ca161b389384878c30e83cc6ffceae8 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea8e58596a5fddabd6d0a6b432c1102c7b76cdcb8f692256ede8642e07b8e91 +size 400568 diff --git a/vlm/train/c5QbJ1zob73/26.png b/vlm/train/c5QbJ1zob73/26.png new file mode 100644 index 0000000000000000000000000000000000000000..45eb3f116d6c9ce289e2759febf0d8bef97a706b --- /dev/null +++ b/vlm/train/c5QbJ1zob73/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c488c0e51e93385438b156c7850bb613fa296c2353aa557d3650288c4e40f5 +size 371829 diff --git a/vlm/train/c5QbJ1zob73/27.png b/vlm/train/c5QbJ1zob73/27.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdd2df22793f8266ea19d9f704767d6e3922993 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da1499b1a198a94972272f0412ed754aa49c2d36b10d3227335e72e190e5453 +size 354297 diff --git a/vlm/train/c5QbJ1zob73/28.png b/vlm/train/c5QbJ1zob73/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ad0cfa8d18fd5abcc031da9912c3d77fe0758f7d --- /dev/null +++ b/vlm/train/c5QbJ1zob73/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89019ce6331f64c942e41121710245c2a22d025bf27c898b0858d62cc3c8815 +size 499522 diff --git a/vlm/train/c5QbJ1zob73/29.png b/vlm/train/c5QbJ1zob73/29.png new file mode 100644 index 0000000000000000000000000000000000000000..77f8215b22e80d6ff75d879274a2f1eabf7c219e --- /dev/null +++ b/vlm/train/c5QbJ1zob73/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8c48278b575c9c677ecaf6ac67d2e222ee60feb5447f5f561d4beb50eba12b +size 612970 diff --git a/vlm/train/c5QbJ1zob73/3.png b/vlm/train/c5QbJ1zob73/3.png new file mode 100644 index 0000000000000000000000000000000000000000..513674e7542925acc066c7e06ee235ae96712575 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d2e05a659eafc93744cf90414bdc7e9395e0df9605e943d75d1980eea9db6a +size 696078 diff --git a/vlm/train/c5QbJ1zob73/30.png b/vlm/train/c5QbJ1zob73/30.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8de93152dc03e9d73a7e7eca49c8c7b41f484a --- /dev/null +++ b/vlm/train/c5QbJ1zob73/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92afc6c754da577bb710cc278673e94e54b08fbe6072efc8f69298577ffd0617 +size 547431 diff --git a/vlm/train/c5QbJ1zob73/31.png b/vlm/train/c5QbJ1zob73/31.png new file mode 100644 index 0000000000000000000000000000000000000000..614919c44705c73493bb20cd1d78302598dfaa7a --- /dev/null +++ b/vlm/train/c5QbJ1zob73/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad47db7037ecf7640541f3e71aae90c41e673fab0c0e306e82414642114e713 +size 657272 diff --git a/vlm/train/c5QbJ1zob73/33.png b/vlm/train/c5QbJ1zob73/33.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1613dea8445b868bf0fcf04a9efbcd190c876f --- /dev/null +++ b/vlm/train/c5QbJ1zob73/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3b3f80ff9904b1b0161396eb9dd5805b79e59cdb689ca12de2f73866554299 +size 368888 diff --git a/vlm/train/c5QbJ1zob73/34.png b/vlm/train/c5QbJ1zob73/34.png new file mode 100644 index 0000000000000000000000000000000000000000..388d528731209c5b02a113f5aff6b66efdbbd5b4 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661fa303d8bae40b719d039f03504e22b02be8786706516794ed7e46fd5785f3 +size 466822 diff --git a/vlm/train/c5QbJ1zob73/35.png b/vlm/train/c5QbJ1zob73/35.png new file mode 100644 index 0000000000000000000000000000000000000000..5b0d4c6efc37d38d7ea22344f3789bfbf0b0997a --- /dev/null +++ b/vlm/train/c5QbJ1zob73/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307081a9d3a8aa6b841881e3d2f4b94e1bc6f6ad8860bdaded4391df496fdbe3 +size 386854 diff --git a/vlm/train/c5QbJ1zob73/36.png b/vlm/train/c5QbJ1zob73/36.png new file mode 100644 index 0000000000000000000000000000000000000000..a61859f17841961830c15611456b41f3edaec02c --- /dev/null +++ b/vlm/train/c5QbJ1zob73/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23b8f57fe5a29c2d890aa1070ab57af394a7d2e7e0db075f6f6d60f2e47e78d +size 150771 diff --git a/vlm/train/c5QbJ1zob73/4.png b/vlm/train/c5QbJ1zob73/4.png new file mode 100644 index 0000000000000000000000000000000000000000..77f0300a87423d9b4511644e47947a5540480f6f --- /dev/null +++ b/vlm/train/c5QbJ1zob73/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1eaf7b785f9aaa0cd2003433eec84cdec8548cbc887e02c31f29f12be1c2e64 +size 634259 diff --git a/vlm/train/c5QbJ1zob73/5.png b/vlm/train/c5QbJ1zob73/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d7eb5a0a9d02968953d465b7b97b3fe4a3283a --- /dev/null +++ b/vlm/train/c5QbJ1zob73/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a706c8b5fb0c98bd3791c983aaa67b61a8d786b8d155da876acac622db8a48 +size 661416 diff --git a/vlm/train/c5QbJ1zob73/6.png b/vlm/train/c5QbJ1zob73/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e819958ec737b9355791e8a080215662f3034ac6 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6766ff5f7b96d8945faa220002a628ada319c48ef4502059176eeb14c3824cfe +size 619042 diff --git a/vlm/train/c5QbJ1zob73/7.png b/vlm/train/c5QbJ1zob73/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bedba7d6e72a3d62ba13f768ab2eb999a4ae4627 --- /dev/null +++ b/vlm/train/c5QbJ1zob73/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022e0ce033bd9abc3a8939b97c69da6e34b5b14b4612ddf8d3225adcce715c1c +size 597955 diff --git a/vlm/train/c5QbJ1zob73/8.png b/vlm/train/c5QbJ1zob73/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0117b386bbb81c2276ea2cab7113256c4ac36d --- /dev/null +++ b/vlm/train/c5QbJ1zob73/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c38350b2ac882ab4e9869b4b25f33d7f0ce64dddc58b8c2d91b69d883417fc2 +size 609696 diff --git a/vlm/train/c5QbJ1zob73/9.png b/vlm/train/c5QbJ1zob73/9.png new file mode 100644 index 0000000000000000000000000000000000000000..675fc9875ebe8a09d1aa4f0303138a95a4d7587f --- /dev/null +++ b/vlm/train/c5QbJ1zob73/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584c9dc6793fa9aea7661fe80bce3c5f94e14a368d285a05cfc60668938f07d3 +size 540617 diff --git a/vlm/train/foNTMJHXHXC/0.png b/vlm/train/foNTMJHXHXC/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f4922d6640d387b555705e15a40be4cc8ea1ca29 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4147bd0e2955bee86361302fe8b1e25ca433b50cc886e5c7c36b9a69d92e05 +size 487443 diff --git a/vlm/train/foNTMJHXHXC/1.png b/vlm/train/foNTMJHXHXC/1.png new file mode 100644 index 0000000000000000000000000000000000000000..93c6d178e82e566adc38ab033a1542267edc66ec --- /dev/null +++ b/vlm/train/foNTMJHXHXC/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ef09a971d5dffa7e79c0bea1203dbf5eb122183947531674a019197763e170 +size 490954 diff --git a/vlm/train/foNTMJHXHXC/10.png b/vlm/train/foNTMJHXHXC/10.png new file mode 100644 index 0000000000000000000000000000000000000000..09a7fbd516cb0fac56e0ddd97ca19a0465dc2d81 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47f7e1e4a2e96a85683cf57cec3b63088866614814a813831908fc4e2db73f8 +size 537830 diff --git a/vlm/train/foNTMJHXHXC/11.png b/vlm/train/foNTMJHXHXC/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e49d932a0d3fa552e9c05b0260b093ed78e2e8 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8742b8f0b91969a4da27dd86dec58992cea993c368a5e5337aa22b5f0627c5 +size 296295 diff --git a/vlm/train/foNTMJHXHXC/12.png b/vlm/train/foNTMJHXHXC/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a3838287159bc8623ad5cb912e2f5341150470a2 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020618f307b8b18838aaade3800ca39196e99f6a3547c0a7b98134cd68dffc4d +size 397235 diff --git a/vlm/train/foNTMJHXHXC/13.png b/vlm/train/foNTMJHXHXC/13.png new file mode 100644 index 0000000000000000000000000000000000000000..878611051fb27ac2e482282b74f6fbcf7d297976 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c15d099ce387f7c7174f9dcbce7f54e7ac977f9bbf609a64c95398e2a0fa913 +size 465996 diff --git a/vlm/train/foNTMJHXHXC/14.png b/vlm/train/foNTMJHXHXC/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d77d05c1a174e449c8a198ca3c3015051a73fdb6 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642acabbe9cbe2634f3de3e3b534abbba5c50f7406ad6c16e7dc55e23378f0a6 +size 473813 diff --git a/vlm/train/foNTMJHXHXC/15.png b/vlm/train/foNTMJHXHXC/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6fb4c3b4ec40af2a6357f905673a561bd711aada --- /dev/null +++ b/vlm/train/foNTMJHXHXC/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c0aec77125dd6b9ed119451f60644d1a9a097147052496013937f1fd774ca4 +size 496600 diff --git a/vlm/train/foNTMJHXHXC/16.png b/vlm/train/foNTMJHXHXC/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a251a4f7e2161c7d439d98a235eb8df27e872869 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bb6b4fa699b42e6fa3cb46d5166baf15ad14638c621394849c87916dfcdc3f +size 442038 diff --git a/vlm/train/foNTMJHXHXC/17.png b/vlm/train/foNTMJHXHXC/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f6a4ad7fc989a6cdff6d0ac19c77878b116b0d91 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f70f6fc7f6e67174212363dc27099c9a9ef96ed0ae840d159f42e78bd7cc36 +size 528239 diff --git a/vlm/train/foNTMJHXHXC/18.png b/vlm/train/foNTMJHXHXC/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4261cded009aa646d4ecb2377d9939f5c42dc299 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6ac46e69ec79529fe589c3a3c748340db0e7523094534268659769f39da83d +size 464547 diff --git a/vlm/train/foNTMJHXHXC/19.png b/vlm/train/foNTMJHXHXC/19.png new file mode 100644 index 0000000000000000000000000000000000000000..760241ff45db0be273198c02d320a59c1a25fbff --- /dev/null +++ b/vlm/train/foNTMJHXHXC/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ca7caf18a1f2503c5195a79ea03dde32ceffb3a1fa64509149a54f4ced3b39 +size 408601 diff --git a/vlm/train/foNTMJHXHXC/2.png b/vlm/train/foNTMJHXHXC/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9de40dd3047db850b37a731a76e52d2d78d727 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ddc0607fd27a8e675178e85299a29121ff12afcc040483fd80b526f55f6ea8 +size 454904 diff --git a/vlm/train/foNTMJHXHXC/20.png b/vlm/train/foNTMJHXHXC/20.png new file mode 100644 index 0000000000000000000000000000000000000000..78570f4d7c1fef95b7f48553e73dcb30e70f2941 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ab2b0f071bef9f5e5c25e67ce4230b81155eb508e42d38057b95e4cca88c5a +size 304520 diff --git a/vlm/train/foNTMJHXHXC/21.png b/vlm/train/foNTMJHXHXC/21.png new file mode 100644 index 0000000000000000000000000000000000000000..0990f689b2e5836a5437664e37118fe3cf080412 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d85ebc11c3ed6d5fee2b8ba058db114c0b1a7119c0dcd3f661e04201f400dd +size 454425 diff --git a/vlm/train/foNTMJHXHXC/22.png b/vlm/train/foNTMJHXHXC/22.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ace16a18dae2393eea4b81b307b973456b87cf --- /dev/null +++ b/vlm/train/foNTMJHXHXC/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68a3c679c11ec986d7c8112c864f2143c240fb2d1292e57059f3f146aaed8c1 +size 444177 diff --git a/vlm/train/foNTMJHXHXC/23.png b/vlm/train/foNTMJHXHXC/23.png new file mode 100644 index 0000000000000000000000000000000000000000..032b6fa4265f38fc07c62d53c33d13502417091b --- /dev/null +++ b/vlm/train/foNTMJHXHXC/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b389145ebf5f6ada959858e9bd154246a1d70ab572a623dd84632ff406e53c +size 390709 diff --git a/vlm/train/foNTMJHXHXC/24.png b/vlm/train/foNTMJHXHXC/24.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1ed5bd0491814021082af38a0f82eeb4f655ba --- /dev/null +++ b/vlm/train/foNTMJHXHXC/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417528321e9205cc2b5357bf47f2de2a35d17463acf9ca223f091bcaa7937f4b +size 492700 diff --git a/vlm/train/foNTMJHXHXC/25.png b/vlm/train/foNTMJHXHXC/25.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd80401f41ef8208231d2e07871828ea2daa483 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf113acbadb534e6619d5e03cfe917b568d792b224e938b4a4a79e178a2e827 +size 507597 diff --git a/vlm/train/foNTMJHXHXC/26.png b/vlm/train/foNTMJHXHXC/26.png new file mode 100644 index 0000000000000000000000000000000000000000..6e4e208b9a210fec4d4d79e47b6809dcd49e5330 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5053b2c96cea621cc5031dd546b0f4be62990a371bf62aaa108aa1beef4bdf25 +size 376813 diff --git a/vlm/train/foNTMJHXHXC/27.png b/vlm/train/foNTMJHXHXC/27.png new file mode 100644 index 0000000000000000000000000000000000000000..6956c1667333a29aa377b27f55a479eff671d3e2 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e6be67bcecfa93924d10866a0dacb19cf23b735b7d6d67a4721b6cb8bd780f +size 142478 diff --git a/vlm/train/foNTMJHXHXC/28.png b/vlm/train/foNTMJHXHXC/28.png new file mode 100644 index 0000000000000000000000000000000000000000..f14d5cd6521c3233daf95c214d6950e65bbaaee5 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add4680b0402f624b50611e1b6d9db1e84974f0df7b15c3c4f32faac5caf21bb +size 499581 diff --git a/vlm/train/foNTMJHXHXC/29.png b/vlm/train/foNTMJHXHXC/29.png new file mode 100644 index 0000000000000000000000000000000000000000..df168af6c975833530023d356a489539bf8a7d0c --- /dev/null +++ b/vlm/train/foNTMJHXHXC/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe317e462959e6686cefe0311cd9d5eb81fa4e022c5253ce41e4726211784eb +size 469630 diff --git a/vlm/train/foNTMJHXHXC/3.png b/vlm/train/foNTMJHXHXC/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ffe18282d4b7d2a7441a6896c53b5eecd920ba3 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6e01b5265e8a21456d2a1c071278bbb18ed5c16d0de5f30a445f09bd7008e0 +size 571870 diff --git a/vlm/train/foNTMJHXHXC/4.png b/vlm/train/foNTMJHXHXC/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6d811264812949d44b0af21483c94fb1eef22c32 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cad87e8ea75a2064e4afbcd6a658ea8eabeff3463beddec1e9c3205dc3cf69 +size 511550 diff --git a/vlm/train/foNTMJHXHXC/5.png b/vlm/train/foNTMJHXHXC/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3adaa5e503a1c9f3b0c3ced538cd5f0cbdbc49e --- /dev/null +++ b/vlm/train/foNTMJHXHXC/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e16ad71637a3b372fd280863b68753bba566a88883a53d33a3f3dae6a08bbc3 +size 500741 diff --git a/vlm/train/foNTMJHXHXC/6.png b/vlm/train/foNTMJHXHXC/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b4a52a8e7c5308133535f414f7676ccf5fa234a1 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715bb88ecbee139c31eaa88ae5fa777d303f74be2cc0cc532a435efb64e25568 +size 573063 diff --git a/vlm/train/foNTMJHXHXC/7.png b/vlm/train/foNTMJHXHXC/7.png new file mode 100644 index 0000000000000000000000000000000000000000..de6862682a4bb23e7678262a8df08d9483e6b613 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a6e2689d45a20748e68f4e08b684891b2fd760f7271ab4c170b732e6a96f68 +size 498149 diff --git a/vlm/train/foNTMJHXHXC/8.png b/vlm/train/foNTMJHXHXC/8.png new file mode 100644 index 0000000000000000000000000000000000000000..63983798e767e8a68e0802fc0ace0d70f3b042f6 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358370aa44c5a02e39fb61899cd45b7c7a4faca8856c96b83db845f8867a28ba +size 490127 diff --git a/vlm/train/foNTMJHXHXC/9.png b/vlm/train/foNTMJHXHXC/9.png new file mode 100644 index 0000000000000000000000000000000000000000..45a9ec3e717c6e54b8365ae2d649a89f7a2255c8 --- /dev/null +++ b/vlm/train/foNTMJHXHXC/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed404118df76d2e917e31889147ea90e7559ef5c51f46542db61836c746da9db +size 493831 diff --git a/vlm/train/gV3wdEOGy_V/0.png b/vlm/train/gV3wdEOGy_V/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cd59d1c3454451bd004509844bb3325a508af731 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993faf44b83fda8ff207f34a20a0aa1cb536543a41f25c513b67417c70810f0a +size 514322 diff --git a/vlm/train/gV3wdEOGy_V/1.png b/vlm/train/gV3wdEOGy_V/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6c276dd485baac7895020fdd77f0f21c9d731481 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df625b08dec707391c17c1027d2ca0193d79d5ac4a2f502c75b35211656fd88 +size 621127 diff --git a/vlm/train/gV3wdEOGy_V/10.png b/vlm/train/gV3wdEOGy_V/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c468acbf5068c0501bbe9d9b08692a6926318773 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc868c989d3d45be31ef7dd3aef4dbb290bdab565b35b94ddb1f3e84770d142 +size 542052 diff --git a/vlm/train/gV3wdEOGy_V/11.png b/vlm/train/gV3wdEOGy_V/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c13361dbbac5eed32beb7c263e51f6c377cbd7ec --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1255a08b471521b938f61267c573d962cce498ad14d47f3494e3bfb8a1a56e98 +size 552880 diff --git a/vlm/train/gV3wdEOGy_V/12.png b/vlm/train/gV3wdEOGy_V/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b7494e05166de737ab8d00be4374aa27d1c9e334 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d65ca6ebca52f601aa9e2f574b1d056c26258dac6e533bbd957b13d10942674 +size 495235 diff --git a/vlm/train/gV3wdEOGy_V/13.png b/vlm/train/gV3wdEOGy_V/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b1243058c03f176bc10b76d54d0a87fac51f6202 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589572f3bd9f94c874eb7e44b55b08f5d9ec961ee1a2a3ea9c651d2eca6c0ad7 +size 311827 diff --git a/vlm/train/gV3wdEOGy_V/14.png b/vlm/train/gV3wdEOGy_V/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8fb93c56eabe35632bb7ac3cf22d8c5284b01b74 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183a0ac334848ea6f47ff8d66d3601bbac8ea4cec354a47a9b647fb21f630698 +size 185824 diff --git a/vlm/train/gV3wdEOGy_V/15.png b/vlm/train/gV3wdEOGy_V/15.png new file mode 100644 index 0000000000000000000000000000000000000000..990f16b518b2fd91fe0f53c56767816710c5ef1c --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad7a41828dacabf299ccb2475ef561b37eaae2ea8e783c7fd840ea107d1b438 +size 435517 diff --git a/vlm/train/gV3wdEOGy_V/16.png b/vlm/train/gV3wdEOGy_V/16.png new file mode 100644 index 0000000000000000000000000000000000000000..40678158374ea9071e3ba143fe2c167296f2d82b --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d441896ed50f1ef2ea613b882bf6964a3384e8de6a38e6490cfe23ad8efebc0 +size 356993 diff --git a/vlm/train/gV3wdEOGy_V/17.png b/vlm/train/gV3wdEOGy_V/17.png new file mode 100644 index 0000000000000000000000000000000000000000..513f1821d65248626779975da34fece71ca15a56 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d2978ec403289cabea425ab1884e40cab02684909f5c2c758b60b992215130 +size 366629 diff --git a/vlm/train/gV3wdEOGy_V/18.png b/vlm/train/gV3wdEOGy_V/18.png new file mode 100644 index 0000000000000000000000000000000000000000..372c2bf3dff9ae0879da993a1b6eca9d1850c15f --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03493e6c4b88a16c5ad1a76148ff48a6d27d3893b096dda961e198014cb33026 +size 335450 diff --git a/vlm/train/gV3wdEOGy_V/19.png b/vlm/train/gV3wdEOGy_V/19.png new file mode 100644 index 0000000000000000000000000000000000000000..d9efd79172d3c0e8fd872c561f2b752d69ee48ab --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158df267555d224b2ab514c8bc01d820b1f47a243c836587aa93a08e6b167d69 +size 336742 diff --git a/vlm/train/gV3wdEOGy_V/2.png b/vlm/train/gV3wdEOGy_V/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6de5c8594a81032717be85e6ba0e5c6469397a80 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f21e1bf8aebe7a60d238cb5d555d3a937b5cf98e5c0a80bd99d60ba0004f2a +size 506442 diff --git a/vlm/train/gV3wdEOGy_V/20.png b/vlm/train/gV3wdEOGy_V/20.png new file mode 100644 index 0000000000000000000000000000000000000000..cb5af5ce404238cfce7cd1d46ac25135bce5009f --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad26cfd6a91d6e6d2892d8c81c41adec53ad7641e477d09d6c5cd7b7719f1d8 +size 635865 diff --git a/vlm/train/gV3wdEOGy_V/21.png b/vlm/train/gV3wdEOGy_V/21.png new file mode 100644 index 0000000000000000000000000000000000000000..a702c3764cd91510a42cb5fa14e2160a909edeb4 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccbf0fae5029f6ca2d7ad8108aca11ce9dbb564c1292c31ab7326b52f0405b1 +size 525890 diff --git a/vlm/train/gV3wdEOGy_V/22.png b/vlm/train/gV3wdEOGy_V/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bb29401c0cdeffcaec0aaccb633499288568bfae --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014b35dd3d328f00f7874f4bc771a63c5ce9153e11b701ad5a1ef06f6fd04e1c +size 1419491 diff --git a/vlm/train/gV3wdEOGy_V/23.png b/vlm/train/gV3wdEOGy_V/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ed86bdf7065044e8ffd93515e47006a6654711 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:186e7079bdf68b04ebd3720337d2f2291fa9436745a0488c35eefe71a067e47c +size 569236 diff --git a/vlm/train/gV3wdEOGy_V/24.png b/vlm/train/gV3wdEOGy_V/24.png new file mode 100644 index 0000000000000000000000000000000000000000..4e186afba425910dc8baf44b734f3bbb1cf7ec62 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c6ecb4b741e5c6643e8993931574aebcdbdb46a542f3a716030a4d05f18b89 +size 136429 diff --git a/vlm/train/gV3wdEOGy_V/3.png b/vlm/train/gV3wdEOGy_V/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2f54bb5537b4e1fe853eed215269d4e6c6e30dc4 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba82bd40fdf3dd1d9d442993b1b2136f344c0182d7074b9e360f72b6aa0d2133 +size 425933 diff --git a/vlm/train/gV3wdEOGy_V/4.png b/vlm/train/gV3wdEOGy_V/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f0505ccb62f8ae095b29e4833ea8999a40135451 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063b771e1af7cd1ace5ebac5f33685315ceb16ac483943a05d326d319dbc47d9 +size 530238 diff --git a/vlm/train/gV3wdEOGy_V/5.png b/vlm/train/gV3wdEOGy_V/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e5824c3ea42fe8831c6898c825add584787d03fa --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edcd5d412e9d635f1de020479902febfad836f1335c34c9a6f48a75e52b3d72 +size 501640 diff --git a/vlm/train/gV3wdEOGy_V/6.png b/vlm/train/gV3wdEOGy_V/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c5ae33a0662d7fc5577541cabf18aa02f2bfde --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d7fceecaa03ad556d5d545f5e722d40d55a57f28a0c0dbe2e075a480d6e621 +size 602645 diff --git a/vlm/train/gV3wdEOGy_V/7.png b/vlm/train/gV3wdEOGy_V/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2235570c3c8de6931c3a4581663349ef45de76cc --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d54e4942380e5c376c773d089b2dba6f723186d594a254db043776e2bc6063c +size 734481 diff --git a/vlm/train/gV3wdEOGy_V/8.png b/vlm/train/gV3wdEOGy_V/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04ad2fef88ba5f6efb35e148befd0d0c8d3c37 --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f25bdc811b18c7d04febe54ed17549d7da9fa9cab0be7e41637fe4d8cc3c48 +size 529360 diff --git a/vlm/train/gV3wdEOGy_V/9.png b/vlm/train/gV3wdEOGy_V/9.png new file mode 100644 index 0000000000000000000000000000000000000000..379d8f8cca223f7dc7f7f9c39d16d85b95a452ca --- /dev/null +++ b/vlm/train/gV3wdEOGy_V/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f718dfde392d03a9bc7fd367ad4c4af38a94f48ade883d3ea1137018ec4ea32 +size 560051 diff --git a/vlm/train/gjBz22V93a/0.png b/vlm/train/gjBz22V93a/0.png new file mode 100644 index 0000000000000000000000000000000000000000..05ad923ff57f408a3092d8c7afafafe58f12a1ca --- /dev/null +++ b/vlm/train/gjBz22V93a/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a95711db831446c34cc618288f382bd146e401e16d6efa9a296deaf45e1267b +size 442962 diff --git a/vlm/train/gjBz22V93a/1.png b/vlm/train/gjBz22V93a/1.png new file mode 100644 index 0000000000000000000000000000000000000000..59b6e309f28854a9d81bbb986d48ac721b8dc8ba --- /dev/null +++ b/vlm/train/gjBz22V93a/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbd9119175bcb2df392ea361bda2d06d360fa78f6d68a842a7534b0c5690ab8 +size 623156 diff --git a/vlm/train/gjBz22V93a/10.png b/vlm/train/gjBz22V93a/10.png new file mode 100644 index 0000000000000000000000000000000000000000..90301f09ed26eda1bb07ce30e12214851697b105 --- /dev/null +++ b/vlm/train/gjBz22V93a/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d50972265e666dd0d5733f09c4e7f4d1ac044c5964c5d7927e65faa4448b11f +size 539672 diff --git a/vlm/train/gjBz22V93a/11.png b/vlm/train/gjBz22V93a/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2bed4ed4dc72ea12f67a48f3a69b2df9fecf7639 --- /dev/null +++ b/vlm/train/gjBz22V93a/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49c9774d679d900407eac5a1cc8e1f656603947352db7bea1e4277dda887053 +size 572821 diff --git a/vlm/train/gjBz22V93a/12.png b/vlm/train/gjBz22V93a/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2ec7f1b15a7b821c790aa614c42c05a61dd3de --- /dev/null +++ b/vlm/train/gjBz22V93a/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b362d496a0278b748085b37dd6dab674929362d8c78109d21525981e294d4cb +size 592776 diff --git a/vlm/train/gjBz22V93a/13.png b/vlm/train/gjBz22V93a/13.png new file mode 100644 index 0000000000000000000000000000000000000000..db7805cea8e5189af7206355774764bfb8699460 --- /dev/null +++ b/vlm/train/gjBz22V93a/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c9fa3cbde7529cc06036fe2ebc2090014eec28961495fae6758fcdbed00b28 +size 69568 diff --git a/vlm/train/gjBz22V93a/2.png b/vlm/train/gjBz22V93a/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ce3128b16933f3d5951a72052afe00325950ccb6 --- /dev/null +++ b/vlm/train/gjBz22V93a/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3095b6b73b3cc929f3d2db34bbb64473e6f80228f0b47eaedb4acddc329e98f +size 581328 diff --git a/vlm/train/gjBz22V93a/3.png b/vlm/train/gjBz22V93a/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3856b11aa6c830d28311c45073cbbca06bfcd04c --- /dev/null +++ b/vlm/train/gjBz22V93a/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3bd9c7e3682fb1ad0ffef28357172dedde76acd95e1826b4fc81cb657e3b4d +size 514936 diff --git a/vlm/train/gjBz22V93a/4.png b/vlm/train/gjBz22V93a/4.png new file mode 100644 index 0000000000000000000000000000000000000000..10e1e7a7e23b1079050632b55f57169a003293df --- /dev/null +++ b/vlm/train/gjBz22V93a/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a5110688cd0daf39791846a6e14bb4b3cad656029238a7a12bfb6bce2d9b68 +size 503375 diff --git a/vlm/train/gjBz22V93a/5.png b/vlm/train/gjBz22V93a/5.png new file mode 100644 index 0000000000000000000000000000000000000000..08fcd60022a85958aa4bea02ae9981a6c67d5a91 --- /dev/null +++ b/vlm/train/gjBz22V93a/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21634ec4a497ff9aa4c2c8d399759f7361722c01ebdf991a4b35743341e3648 +size 367748 diff --git a/vlm/train/gjBz22V93a/6.png b/vlm/train/gjBz22V93a/6.png new file mode 100644 index 0000000000000000000000000000000000000000..58be934aa23a51d73b80a0e64fd05f7e7b1105e8 --- /dev/null +++ b/vlm/train/gjBz22V93a/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a217737d0bb636e1f21ac6a9c951c68ec2b0dcb8c023f0abd43ba3f2028b99a9 +size 533901 diff --git a/vlm/train/gjBz22V93a/7.png b/vlm/train/gjBz22V93a/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3ab00303b35a689d766a0046d8e4b20028e4481f --- /dev/null +++ b/vlm/train/gjBz22V93a/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a7828c8682f9d6b9a12f360ae78b5d9196db5a7f0faa1ecb83e7cc554c5895 +size 521125 diff --git a/vlm/train/gjBz22V93a/8.png b/vlm/train/gjBz22V93a/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d922ae64e527c4541c98e0da958ac0bb52a51787 --- /dev/null +++ b/vlm/train/gjBz22V93a/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5d4edddcad69bf0a317cc4a600684f57e97444cb27d0af6985080404d61861 +size 533779 diff --git a/vlm/train/gjBz22V93a/9.png b/vlm/train/gjBz22V93a/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2e0b9dff6ba00658256ebe0cc61492ba901fbb50 --- /dev/null +++ b/vlm/train/gjBz22V93a/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f77c833d3a3bcf639cf4ccb0b53944e0830035f7c688aa3fcd3e96a70b3fcf0 +size 449149 diff --git a/vlm/train/r1l4eQW0Z/0.png b/vlm/train/r1l4eQW0Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f762c7274163ce3126918dab2cb85e2f7d9d2a43 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cadf27dc395561766fb964c21774060085bd4a6029b5c8e462d2900decfb02a4 +size 516250 diff --git a/vlm/train/r1l4eQW0Z/1.png b/vlm/train/r1l4eQW0Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..58f0acaa662f5b12d450b11768cf66edc740c552 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c991968402725d562a18b86a6c444721071594c541fd5f4f21b3ec8633525ac +size 621081 diff --git a/vlm/train/r1l4eQW0Z/10.png b/vlm/train/r1l4eQW0Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..89c07c83dfcbdcff714880627702fe9d978df6b8 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0519d4d3b44b58cc117ea1ea659d6e599bcc2eb021b0d6a532b6e4eec7cdd3 +size 527086 diff --git a/vlm/train/r1l4eQW0Z/11.png b/vlm/train/r1l4eQW0Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec036b679360edbd4b060c7fbca79f2ce02172a --- /dev/null +++ b/vlm/train/r1l4eQW0Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c501c553863995a19e2eab5b28b533e23bde0f2b67c1663d26ea35a484c96ccb +size 543274 diff --git a/vlm/train/r1l4eQW0Z/12.png b/vlm/train/r1l4eQW0Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c67d6212fa59d0e529305c17957ae9928dcc24 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d192da7bb269bc693b6f98b9badf98e4edd3d358f6d1acaf1ca8853cf27822e4 +size 177491 diff --git a/vlm/train/r1l4eQW0Z/13.png b/vlm/train/r1l4eQW0Z/13.png new file mode 100644 index 0000000000000000000000000000000000000000..aa753159905917879aba0c05ba4aa88b6c797473 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043e135e14562539112bb4b605b9e500c987a3dd9fc0145cc1a4cefbcfdbad23 +size 317158 diff --git a/vlm/train/r1l4eQW0Z/14.png b/vlm/train/r1l4eQW0Z/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2616f11b556b7fe07328d1e2f88d6f3c9a6b10d3 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521abece6676a6b50797e943e35c6831dfce7ad57def9c144a3643143c2336b6 +size 411172 diff --git a/vlm/train/r1l4eQW0Z/15.png b/vlm/train/r1l4eQW0Z/15.png new file mode 100644 index 0000000000000000000000000000000000000000..97ec568f876d2842813d9c005d1598bbc16e0fdd --- /dev/null +++ b/vlm/train/r1l4eQW0Z/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f354725371a54c3be25a0c6b98228e1b2570941d534febf5235452fd01486b +size 504750 diff --git a/vlm/train/r1l4eQW0Z/16.png b/vlm/train/r1l4eQW0Z/16.png new file mode 100644 index 0000000000000000000000000000000000000000..0eadb5fa02cbf11093578f39bbbd729f814782f8 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca05781b7d5e38b8481ea5da2982b272263f4645942c75213f540be9a310f7b +size 515074 diff --git a/vlm/train/r1l4eQW0Z/17.png b/vlm/train/r1l4eQW0Z/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb4d13207b8a8e46a2de4f1bb21cdf88d6291ab --- /dev/null +++ b/vlm/train/r1l4eQW0Z/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05b76b82c7518eff4f74878e37f3ad743521a75734f51099f780fbff1d6f423 +size 565289 diff --git a/vlm/train/r1l4eQW0Z/18.png b/vlm/train/r1l4eQW0Z/18.png new file mode 100644 index 0000000000000000000000000000000000000000..587cd353c3cac4563b40a1611d92d040c4a974ba --- /dev/null +++ b/vlm/train/r1l4eQW0Z/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6dc458ac7a8b4e58bb76b990921a971e99812a61ea73dd650af9bcba832a3a4 +size 503467 diff --git a/vlm/train/r1l4eQW0Z/19.png b/vlm/train/r1l4eQW0Z/19.png new file mode 100644 index 0000000000000000000000000000000000000000..a3044be73652fdbf3962022ef9c4ffd4768bca10 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ad1f1b4a6f09979165a82e5114aee3363cb631613aaae12897024df5b1fe98 +size 1280700 diff --git a/vlm/train/r1l4eQW0Z/2.png b/vlm/train/r1l4eQW0Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..81fa722fe95b3eeff45e5bc0760e2b40749abfbd --- /dev/null +++ b/vlm/train/r1l4eQW0Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2904855b0284c22d9088cf98fa218908e53da43ae8a218dccefec2c3d8b5ce45 +size 456659 diff --git a/vlm/train/r1l4eQW0Z/20.png b/vlm/train/r1l4eQW0Z/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4188e02264d415014f2a84c232c1cb4812fcab08 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a2dfe5febd57f7b612630e879c11bbbe01107d509c10ab006fe5ca9f9415cf +size 1646391 diff --git a/vlm/train/r1l4eQW0Z/21.png b/vlm/train/r1l4eQW0Z/21.png new file mode 100644 index 0000000000000000000000000000000000000000..82c0ae5f6124c45d30034a5c6d3a1c97ce9afee7 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bebbe3c3b20c0d12e3fbdeb1f4c951462c910c8ad7a13300e312d7c492ae2bd +size 858117 diff --git a/vlm/train/r1l4eQW0Z/22.png b/vlm/train/r1l4eQW0Z/22.png new file mode 100644 index 0000000000000000000000000000000000000000..d0505642996578ae79fd4299e845b465b7433dbe --- /dev/null +++ b/vlm/train/r1l4eQW0Z/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2122d168f05acb119a715e1b8b4baab7d64838777ea6fd7316d40af61ab1a094 +size 288547 diff --git a/vlm/train/r1l4eQW0Z/3.png b/vlm/train/r1l4eQW0Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5b7551c99320c2f2a04efd23b180e4271ec79bed --- /dev/null +++ b/vlm/train/r1l4eQW0Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89379cb5659334d29562a3955d152e854f41746952924ac7d5131499e8f1ce33 +size 550022 diff --git a/vlm/train/r1l4eQW0Z/4.png b/vlm/train/r1l4eQW0Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..142495f63840fa59451353215d2169f3a122f45f --- /dev/null +++ b/vlm/train/r1l4eQW0Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a4ffcc735419c449b9e5c01b1144186f95e2db32f07567e7f96c9d5001fb7a +size 583132 diff --git a/vlm/train/r1l4eQW0Z/5.png b/vlm/train/r1l4eQW0Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1dac6be2d6b65a6c2fb4e4d54178df908b92f9ef --- /dev/null +++ b/vlm/train/r1l4eQW0Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe04d80f58d545e26b7a53590c1ea4a12dd0758e7b327f358f92f6236acb623 +size 594283 diff --git a/vlm/train/r1l4eQW0Z/6.png b/vlm/train/r1l4eQW0Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c582f4bccf1ec86e0530643221a841c0b51e60fb --- /dev/null +++ b/vlm/train/r1l4eQW0Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df867dce47dd80cb6a22a4fccea4563ddfa1e69f0a9edad0c9bc76dee43bb66 +size 547752 diff --git a/vlm/train/r1l4eQW0Z/7.png b/vlm/train/r1l4eQW0Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5297d8760b8a1538a2b714626ce1158ce939e6c2 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bf2f58e580078ee3c3c2f3099062d02ed240e6cef2adf2f881f4fde8b9fd8f +size 575263 diff --git a/vlm/train/r1l4eQW0Z/8.png b/vlm/train/r1l4eQW0Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..32c8b1ac5ae365089c27ce733e50a2b584a0ac31 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d30014ce4c4e7627d5621a418cd4b8e160460c0d913bb09c5ada9534c88aded +size 569636 diff --git a/vlm/train/r1l4eQW0Z/9.png b/vlm/train/r1l4eQW0Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1317732c3e3ae9b2f34c816292489abe7d1705e6 --- /dev/null +++ b/vlm/train/r1l4eQW0Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f72167f3453a18a196c0c2ae3c22ae2a86f872c3b94c330a43710349ae93f9a +size 983891 diff --git a/vlm/train/r1rhWnZkg/0.png b/vlm/train/r1rhWnZkg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3f27d3747fe2bd22c7e34643ffb9a1dc8c6784d7 --- /dev/null +++ b/vlm/train/r1rhWnZkg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd702438a94078f8264ae7478adbadfd802f28e572f6c8fa0c79477d962d752 +size 448971 diff --git a/vlm/train/r1rhWnZkg/1.png b/vlm/train/r1rhWnZkg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c4d5dc400123572d54b071482d2fa40489ef0c43 --- /dev/null +++ b/vlm/train/r1rhWnZkg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0575048ccc6e79d6941da24d9a19e62ebca5bf85c241a336a3451984a5b1e7ca +size 527258 diff --git a/vlm/train/r1rhWnZkg/10.png b/vlm/train/r1rhWnZkg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..017ac525b542652ec6e3540ed991116e0a79bb33 --- /dev/null +++ b/vlm/train/r1rhWnZkg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1fab553aed896614fa0d1e7b572ecb2968ddea9fc7974d777f6b6f76f31fcc +size 374750 diff --git a/vlm/train/r1rhWnZkg/11.png b/vlm/train/r1rhWnZkg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c58bd593d969e08e1c14ac8d7faf4b81cfeaebad --- /dev/null +++ b/vlm/train/r1rhWnZkg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d941e57451106c02b160ef24b12ca09d4ff49041fb645d181683093d15c73f2 +size 221513 diff --git a/vlm/train/r1rhWnZkg/12.png b/vlm/train/r1rhWnZkg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..64a5acf44a06d03dc255628853d6006f54b3df54 --- /dev/null +++ b/vlm/train/r1rhWnZkg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f1644be1996640df2fdb416fac59530b9f01332aed203fe689903a49a135b3 +size 456655 diff --git a/vlm/train/r1rhWnZkg/13.png b/vlm/train/r1rhWnZkg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bf3315b1819c64bb23426723f1bb2eba4b6d3801 --- /dev/null +++ b/vlm/train/r1rhWnZkg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d747a0a992d56919c2416a201f0dbdee0bb58304287f761e8fd4e0c44f92187c +size 362125 diff --git a/vlm/train/r1rhWnZkg/2.png b/vlm/train/r1rhWnZkg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7c78c2ce32b528420f314fdd3661d781cd3f30e6 --- /dev/null +++ b/vlm/train/r1rhWnZkg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69f96d139add08a6666ea8dded327215115ae706258ce8ac63b87de52be19ca +size 445862 diff --git a/vlm/train/r1rhWnZkg/3.png b/vlm/train/r1rhWnZkg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd8e4a64dda4d46b5b82ec2b83b9628e406a8a7 --- /dev/null +++ b/vlm/train/r1rhWnZkg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927a725c1a7dc35ab2dad14394c12d19d6de89de38627bcc9bd91cbb8eb76ea8 +size 479740 diff --git a/vlm/train/r1rhWnZkg/4.png b/vlm/train/r1rhWnZkg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..30a0825b688e75d94689213713038bed49b44e2a --- /dev/null +++ b/vlm/train/r1rhWnZkg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be377f59d67d94fc984bccd731b743bfe08d2a04f810c57377afacc8f37ada7e +size 464418 diff --git a/vlm/train/r1rhWnZkg/5.png b/vlm/train/r1rhWnZkg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d303955a3f7b6bf020715e073b6c5387bceb3f3 --- /dev/null +++ b/vlm/train/r1rhWnZkg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45b8b5a542d00607bd388c19cfd0327da215195cfcbed7b4f84c4c5926630f5 +size 493867 diff --git a/vlm/train/r1rhWnZkg/6.png b/vlm/train/r1rhWnZkg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..98ffdfe006c26dfa87c540feca38604004e0fae0 --- /dev/null +++ b/vlm/train/r1rhWnZkg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27a34dc263c682eae1e2a35281fbf7a896830093fdaca273d815ecc25e10b30 +size 468638 diff --git a/vlm/train/r1rhWnZkg/7.png b/vlm/train/r1rhWnZkg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3c30b2ff4fec2b939e20d74f881d77c05235b295 --- /dev/null +++ b/vlm/train/r1rhWnZkg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99ca5f5aeab69f5eb8051e46c27230b8c0c140763cd8a9bf2e3750c1b017d3b +size 537400 diff --git a/vlm/train/r1rhWnZkg/8.png b/vlm/train/r1rhWnZkg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a19eaf42d88cd52e676064b69f0cdecd1d10d41a --- /dev/null +++ b/vlm/train/r1rhWnZkg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffedb6313de50cb6073d21b68448f7def90b5ac1652da2e25e9124c5561763ba +size 562867 diff --git a/vlm/train/r1rhWnZkg/9.png b/vlm/train/r1rhWnZkg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..29f4e93796c1a5e24be51cb3c088a2ea6ba949db --- /dev/null +++ b/vlm/train/r1rhWnZkg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f021a1bf118b085a2fce10ecd22bb3f289ca378cf8b5be3c1a34a51dbe35ec55 +size 448088 diff --git a/vlm/train/rJevYoA9Fm/0.png b/vlm/train/rJevYoA9Fm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..599e5b9cb5893c83640fd7d6130d8c10557c5a7b --- /dev/null +++ b/vlm/train/rJevYoA9Fm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb84d776962027f0fa0eecb0f2c680257c1d7ce4b19c88e0b333d1d599882c5 +size 486642 diff --git a/vlm/train/rJevYoA9Fm/1.png b/vlm/train/rJevYoA9Fm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..df68cf7209bbf1fe368c2fef740573eb5889bda9 --- /dev/null +++ b/vlm/train/rJevYoA9Fm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7504677f874d38f0915fe116abf1fb8b28cc81ad88eb7dd718bba788dc9e114b +size 585183 diff --git a/vlm/train/rJevYoA9Fm/11.png b/vlm/train/rJevYoA9Fm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9560a5f745672f164759879a36eaac483c07ea --- /dev/null +++ b/vlm/train/rJevYoA9Fm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6851acb420e9546173f3bfea6203e79018c978d55a75dcd5e9f1ff5239f6df +size 397004 diff --git a/vlm/train/rJevYoA9Fm/2.png b/vlm/train/rJevYoA9Fm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4180c8e370bb1d002669fd0146fdddd7bf671cdc --- /dev/null +++ b/vlm/train/rJevYoA9Fm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b430956276c0adfa212b727974093c86215ecf4d43d0f0ffb4ee008f4eda5577 +size 546815 diff --git a/vlm/train/rJevYoA9Fm/4.png b/vlm/train/rJevYoA9Fm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..596aae0b6ae142c42f6a32676745f7db40832867 --- /dev/null +++ b/vlm/train/rJevYoA9Fm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5ee609bb79f6adcc949d583d292fc032c395cd9d4315ca7f4b81948b5145bb +size 354483 diff --git a/vlm/train/rJevYoA9Fm/5.png b/vlm/train/rJevYoA9Fm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..478595c2c43eb68502da036ea44135f4f06bfb8a --- /dev/null +++ b/vlm/train/rJevYoA9Fm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d48fd0dfbc34257d8afcaf9373700bca78d907da1c7f1743e848678be3ace32c +size 387260 diff --git a/vlm/train/rJevYoA9Fm/7.png b/vlm/train/rJevYoA9Fm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ea344631c4bef1d09f1c6e5996b16c2207f67f --- /dev/null +++ b/vlm/train/rJevYoA9Fm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89479c22f8d44b27b337e06a80fa653751b100309a0165570e33d891e93b3276 +size 377657 diff --git a/vlm/train/rJevYoA9Fm/8.png b/vlm/train/rJevYoA9Fm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f019bdd866f43c67d8811979193541e4027b08fa --- /dev/null +++ b/vlm/train/rJevYoA9Fm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1385625a8ec7d7563eee9ae0bb1bdf2a7461f1cd6a7e12882972592d01098e1f +size 418768 diff --git a/vlm/train/rJg4YGWRb/0.png b/vlm/train/rJg4YGWRb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ec685f0d3e4495dbfcce1600d19b97ee404f17c9 --- /dev/null +++ b/vlm/train/rJg4YGWRb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89bdebc31ccb3d8ca46a580ed1b7d93dddabafa16fe3111f84ca7d2281017516 +size 488423 diff --git a/vlm/train/rJg4YGWRb/1.png b/vlm/train/rJg4YGWRb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..25f921fac45fcde8882d801bf60fbd0209c4f9f3 --- /dev/null +++ b/vlm/train/rJg4YGWRb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82da9ba1412e586d690f92b622c07c0252301455ab02fcaa7f337f43e6a2647 +size 611482 diff --git a/vlm/train/rJg4YGWRb/10.png b/vlm/train/rJg4YGWRb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8db26673b2156e745fcba109dd84eae830018b70 --- /dev/null +++ b/vlm/train/rJg4YGWRb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbefb6399d7ad315ebe61869bc0abf43cc7c02df6c7983f8a6e3e513a210a81 +size 539595 diff --git a/vlm/train/rJg4YGWRb/11.png b/vlm/train/rJg4YGWRb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..21dacfbe4d3c164c90325441167a0244c34fcb53 --- /dev/null +++ b/vlm/train/rJg4YGWRb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf45a17c0ad3ce03ce804aa9f64efd9c979e2839019e9f1dc8feea80f9568cce +size 550469 diff --git a/vlm/train/rJg4YGWRb/12.png b/vlm/train/rJg4YGWRb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f8db79107f96c3a2899d73ee3aed7dcf271bc211 --- /dev/null +++ b/vlm/train/rJg4YGWRb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7847625a809ce8a8c672fd1ed7e84b43ae81d4894303a5caf0c010ef2ebfe975 +size 77349 diff --git a/vlm/train/rJg4YGWRb/13.png b/vlm/train/rJg4YGWRb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2d138e8a8e7637303f80473cdf8664702af598ee --- /dev/null +++ b/vlm/train/rJg4YGWRb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1aaec9e83cdddb1bf904493fa902230370b833a3fdd2998aaf1c125ded022f +size 318768 diff --git a/vlm/train/rJg4YGWRb/14.png b/vlm/train/rJg4YGWRb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2d73c2d327e4568101a9d797f1a058b10065d747 --- /dev/null +++ b/vlm/train/rJg4YGWRb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11dbdd75db726888159a85f7a1469519bab3df30b37f0561b46c3d08fe8215c3 +size 398443 diff --git a/vlm/train/rJg4YGWRb/15.png b/vlm/train/rJg4YGWRb/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7c5932ef0432216fae39908eaa901a3ae198c6e6 --- /dev/null +++ b/vlm/train/rJg4YGWRb/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1ec0bbcdc2019890e3ac28c1bbaed55b24a672d6f54ce0712c6c47c8215942 +size 409067 diff --git a/vlm/train/rJg4YGWRb/16.png b/vlm/train/rJg4YGWRb/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d922b8689e7056b95fabfcd0f12d31dfa8aab8ea --- /dev/null +++ b/vlm/train/rJg4YGWRb/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a36b093b16707c882354a3c7675115cbdd610c48e55756a16e3dcdffb865332 +size 72002 diff --git a/vlm/train/rJg4YGWRb/2.png b/vlm/train/rJg4YGWRb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a106163b9511cd9f23a9bee6749a93e1e10da802 --- /dev/null +++ b/vlm/train/rJg4YGWRb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249f18a910ce8d0adaef2c5d59a0f0d8992b80809383160e7dc1e8699ad7a448 +size 581752 diff --git a/vlm/train/rJg4YGWRb/3.png b/vlm/train/rJg4YGWRb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c94d56339fcff9016f68fa2e7a4d6c781b2ddf0 --- /dev/null +++ b/vlm/train/rJg4YGWRb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b1de8397b4dab12eba03340b7ac012635c8d0712f3b1f908293dfb6f94c75d +size 550780 diff --git a/vlm/train/rJg4YGWRb/4.png b/vlm/train/rJg4YGWRb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..52787353be45885a900b1fa681ac134e6a71aeb2 --- /dev/null +++ b/vlm/train/rJg4YGWRb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a5c336436f1735f5ba25a524357f7eac0a015d898817bff70c6e1c2915f6cd +size 453326 diff --git a/vlm/train/rJg4YGWRb/5.png b/vlm/train/rJg4YGWRb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e87375ac32a8e7bf6d8bbd7ce0f84982a2408cb --- /dev/null +++ b/vlm/train/rJg4YGWRb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee088ee6f2c564bd30da07b208a5ece582fdfedfacd54a74aa5be044cbebc0a +size 527636 diff --git a/vlm/train/rJg4YGWRb/6.png b/vlm/train/rJg4YGWRb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..faabb835e908e30e8623a4c741756493843818a4 --- /dev/null +++ b/vlm/train/rJg4YGWRb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd132b7ecd8c14e00821679b48a64eb23c488004029abfd7fc6c1e2b5e7c463 +size 534481 diff --git a/vlm/train/rJg4YGWRb/7.png b/vlm/train/rJg4YGWRb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ab75d7d95b7b32ba49b6bcfa023fd0b8e990aeef --- /dev/null +++ b/vlm/train/rJg4YGWRb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c3a43c1ec33f3abc6631c895c00acf0dbf3c03ba63b5754aa9ea7d73427d16 +size 523273 diff --git a/vlm/train/rJg4YGWRb/8.png b/vlm/train/rJg4YGWRb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bae50151e6761c61ceb8567d1647637c3fb974ee --- /dev/null +++ b/vlm/train/rJg4YGWRb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf8fc498cb29ecf9c90785d7da5d9b0ed4a0147da3d46c729a6d0b05319c0b5 +size 515661 diff --git a/vlm/train/rJg4YGWRb/9.png b/vlm/train/rJg4YGWRb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..07cec145439b3d062dfcbee7a210ef9763d2b09c --- /dev/null +++ b/vlm/train/rJg4YGWRb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b930dbfe4d64b8d1b49f5413b3bf38ecdad8e4c5fb76801db7331edcc91e9a +size 518614 diff --git a/vlm/train/rkgNKkHtvB/0.png b/vlm/train/rkgNKkHtvB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..828925ac6b90d5abdb36a2f6051ff6edbd327d00 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f0f3f90af5d72def68cd3022b02f1cf305c667bd494b79e8c32f6b9935aa11 +size 481365 diff --git a/vlm/train/rkgNKkHtvB/1.png b/vlm/train/rkgNKkHtvB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b465abe93718657c2e4e1089258180cacf25699a --- /dev/null +++ b/vlm/train/rkgNKkHtvB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf97b2bb5fc78c04e1bc4b0bd1b7789a558a4090a49c042aa6cc2f2bb6ee21d3 +size 546403 diff --git a/vlm/train/rkgNKkHtvB/10.png b/vlm/train/rkgNKkHtvB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..496622c501f282c7d3cbe14aaabd7c7656e836f5 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609e318348f8bb81ebbe05914f27eb654f4ed096bb007d88f90b620f6fd35bed +size 447813 diff --git a/vlm/train/rkgNKkHtvB/11.png b/vlm/train/rkgNKkHtvB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4a68dfbca6256a27120d5caa8663a198aab02c --- /dev/null +++ b/vlm/train/rkgNKkHtvB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379ba14877ae63b31b11338a18733c6e2aebe6158ab056805f5c57e7ec447752 +size 302733 diff --git a/vlm/train/rkgNKkHtvB/2.png b/vlm/train/rkgNKkHtvB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3c731041aff028ffa97f45038aeaf7fc98673cb9 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c82f0e90f9dc7a976b49adf4d1d588ccfecd90f15f4b44d44a5e36b644690e +size 555950 diff --git a/vlm/train/rkgNKkHtvB/3.png b/vlm/train/rkgNKkHtvB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2c9f3331ebfc4100523542b6c9dc0c41c23f4adb --- /dev/null +++ b/vlm/train/rkgNKkHtvB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07aecbf8c05d74ed96f8536909a1205dc3f4eb088fe1b68a824788f537932d8 +size 500492 diff --git a/vlm/train/rkgNKkHtvB/4.png b/vlm/train/rkgNKkHtvB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8fcee414f409e2810a47020eb148837bf8e587ab --- /dev/null +++ b/vlm/train/rkgNKkHtvB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a5e0f8d64c24df5aeacb507aabe02a18809e035358d589d98f8858c0644889 +size 439491 diff --git a/vlm/train/rkgNKkHtvB/5.png b/vlm/train/rkgNKkHtvB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..65a9183bcb514d5b8e148431301f4c7db03c8622 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849459b0653e086de2143a9c9a7b701389cb53c5a0a87264e57b8d21b82a7f1e +size 528210 diff --git a/vlm/train/rkgNKkHtvB/6.png b/vlm/train/rkgNKkHtvB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4ea3037455327a5e5fe67aef06615a68bf4e97f7 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcaf4bd8e4ac45d4ee3411a4e4e614b115b39632097c8063eaacdcb90ade3b3 +size 545339 diff --git a/vlm/train/rkgNKkHtvB/7.png b/vlm/train/rkgNKkHtvB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b08188c1aa83dc7f15d9ef01ad4ae66565744b --- /dev/null +++ b/vlm/train/rkgNKkHtvB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a102873a7a72f4be63e27650f37cde0c93c712947b4ddb83501ad8e4081b5b5 +size 469942 diff --git a/vlm/train/rkgNKkHtvB/8.png b/vlm/train/rkgNKkHtvB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..76772d7ae234232fd6b82fe050dc2d0efbdb180a --- /dev/null +++ b/vlm/train/rkgNKkHtvB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ce1291129f2ae903b09a13e37d550d5bb8c5d1cd5c0d0fbc0ef3328feec3f2 +size 516811 diff --git a/vlm/train/rkgNKkHtvB/9.png b/vlm/train/rkgNKkHtvB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..46204530d4196b4bdfcec47c6877fea8eed51eb1 --- /dev/null +++ b/vlm/train/rkgNKkHtvB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43b19ae471328d1c89e977339d22f21b9de4f62f759fd01c4d54821d013287d +size 535456 diff --git a/vlm/train/zspml_qcldq/0.png b/vlm/train/zspml_qcldq/0.png new file mode 100644 index 0000000000000000000000000000000000000000..96cdfdc3d5a2b2ec0fbf90a4f6df17702b0503ad --- /dev/null +++ b/vlm/train/zspml_qcldq/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d18876e60dbfe516e9be63cf6370345049aea0f2399add7ee775e477d2d81c +size 499111 diff --git a/vlm/train/zspml_qcldq/1.png b/vlm/train/zspml_qcldq/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cfbd1084e11f070a0b63e7628b7c7a913696a7b8 --- /dev/null +++ b/vlm/train/zspml_qcldq/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a70f372698fb142d5fea5648bf315bff7dfe4f65c87a05101c257cb5bc3b80 +size 639952 diff --git a/vlm/train/zspml_qcldq/10.png b/vlm/train/zspml_qcldq/10.png new file mode 100644 index 0000000000000000000000000000000000000000..611d39a3210e90081d331dc6e48f60b610af4921 --- /dev/null +++ b/vlm/train/zspml_qcldq/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ea5d0de44efd427e5554f4d48751ef05759499f254e64a0836f646ae658dd4 +size 580453 diff --git a/vlm/train/zspml_qcldq/11.png b/vlm/train/zspml_qcldq/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f571488663d5a9d0e8ef6792d573ac64154f089f --- /dev/null +++ b/vlm/train/zspml_qcldq/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c431dcbf838e0c1ff3107ccd1d6bd7e569295693213e0679c8f8663a0c2777 +size 306442 diff --git a/vlm/train/zspml_qcldq/12.png b/vlm/train/zspml_qcldq/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5bc4634d001fe81fdd8bedbd286b3536f7a4cce4 --- /dev/null +++ b/vlm/train/zspml_qcldq/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7afaa26b5a44abd31fb58b657d3b27571a5417018a1ee924d7dccc963e6d99 +size 371419 diff --git a/vlm/train/zspml_qcldq/2.png b/vlm/train/zspml_qcldq/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bf60f10ab0acb4068de4fc6d83e736b9b7a09b7c --- /dev/null +++ b/vlm/train/zspml_qcldq/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa29b0dca8ece6ac178eda752e9a5c627e4e39b84c2a2b14ff6a682a1147c1c +size 521660 diff --git a/vlm/train/zspml_qcldq/3.png b/vlm/train/zspml_qcldq/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ec17821317a930ea3e2dcf6c0c455b5630252717 --- /dev/null +++ b/vlm/train/zspml_qcldq/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae52c35a887e8d8c6e7828d44862ef6ea181e18aa1e4878c574d7b694095b72 +size 475829 diff --git a/vlm/train/zspml_qcldq/5.png b/vlm/train/zspml_qcldq/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1a8b28c737295ac3c93dfeaf092c62f4c4b784f0 --- /dev/null +++ b/vlm/train/zspml_qcldq/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fea101b72310006185a19efb96ec94d58e9589bc9caa966ac19712c53638ff +size 441966 diff --git a/vlm/train/zspml_qcldq/6.png b/vlm/train/zspml_qcldq/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d671f48dbd09a218c4d479a9b47bcc06d889928e --- /dev/null +++ b/vlm/train/zspml_qcldq/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966b9c68ec2528560b740c0d75e116b4f1a02f94de098d187518ebb18ed955dd +size 622618 diff --git a/vlm/train/zspml_qcldq/7.png b/vlm/train/zspml_qcldq/7.png new file mode 100644 index 0000000000000000000000000000000000000000..964a92e6369eadf80650e7c9bcf3fc9badffcf95 --- /dev/null +++ b/vlm/train/zspml_qcldq/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b583ddfc8a3766f78f68d33f2c619c066303118fce4c0097b8e112be9a7c878 +size 595258 diff --git a/vlm/train/zspml_qcldq/8.png b/vlm/train/zspml_qcldq/8.png new file mode 100644 index 0000000000000000000000000000000000000000..de18e931e4f1a146e47f0847830189398b8dbcc9 --- /dev/null +++ b/vlm/train/zspml_qcldq/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ed439265b99e39cc1ed5564c828754d252bc7cb67e374a0c5a5b1fa96c5556 +size 543101 diff --git a/vlm/train/zspml_qcldq/9.png b/vlm/train/zspml_qcldq/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e1e9cee629828000bba8a769114a1248279c9b --- /dev/null +++ b/vlm/train/zspml_qcldq/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e936fb9c1946d951dc8244775a5121a52bbf3133e06cca0883378287fae061d +size 531278